Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 87 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20600551 | 154 days ago | IN | 0 ETH | 0.00014132 | ||||
Approve | 20475720 | 171 days ago | IN | 0 ETH | 0.00067525 | ||||
Approve | 20321567 | 193 days ago | IN | 0 ETH | 0.00037083 | ||||
Approve | 20310061 | 194 days ago | IN | 0 ETH | 0.00011642 | ||||
Approve | 20224327 | 206 days ago | IN | 0 ETH | 0.00015145 | ||||
Approve | 20051076 | 230 days ago | IN | 0 ETH | 0.00024857 | ||||
Approve | 20047015 | 231 days ago | IN | 0 ETH | 0.00039608 | ||||
Approve | 20008651 | 236 days ago | IN | 0 ETH | 0.00059795 | ||||
Transfer | 19925984 | 248 days ago | IN | 0 ETH | 0.0005871 | ||||
Approve | 19925959 | 248 days ago | IN | 0 ETH | 0.00071983 | ||||
Approve | 19894360 | 252 days ago | IN | 0 ETH | 0.0002045 | ||||
Approve | 19759815 | 271 days ago | IN | 0 ETH | 0.00042121 | ||||
Approve | 19759800 | 271 days ago | IN | 0 ETH | 0.00038755 | ||||
Approve | 19759414 | 271 days ago | IN | 0 ETH | 0.0004822 | ||||
Approve | 19756143 | 272 days ago | IN | 0 ETH | 0.0003296 | ||||
Approve | 19740257 | 274 days ago | IN | 0 ETH | 0.00061957 | ||||
Approve | 19651377 | 286 days ago | IN | 0 ETH | 0.00062006 | ||||
Approve | 19551364 | 300 days ago | IN | 0 ETH | 0.00086048 | ||||
Approve | 19546525 | 301 days ago | IN | 0 ETH | 0.00105034 | ||||
Approve | 19546520 | 301 days ago | IN | 0 ETH | 0.00114345 | ||||
Approve | 19508317 | 306 days ago | IN | 0 ETH | 0.00072276 | ||||
Approve | 19456731 | 314 days ago | IN | 0 ETH | 0.00136178 | ||||
Transfer | 19456709 | 314 days ago | IN | 0 ETH | 0.00157818 | ||||
Approve | 19455359 | 314 days ago | IN | 0 ETH | 0.00190297 | ||||
Transfer | 19452683 | 314 days ago | IN | 0 ETH | 0.00114088 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ERC20Mintable
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-26 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @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); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @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. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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 Context, IERC20, 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 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 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); } } } } // File: contracts/PBT.sol pragma solidity ^0.8.20; contract ERC20Mintable is ERC20, Ownable { uint256 private _nonCirculatingSupply; constructor() ERC20("PolyBet", "PBT") Ownable(msg.sender) { _mint(msg.sender, 600000000 * 10**18); _nonCirculatingSupply = 400000000 * 10**18; } function mint(address account, uint256 amount) external onlyOwner { require(_nonCirculatingSupply > 0, "Non-circulating supply fully minted"); require(amount <= _nonCirculatingSupply, "Mint amount exceeds non-circulating supply"); _mint(account, amount); _nonCirculatingSupply -= amount; } function getNonCirculatingSupply() external view returns (uint256) { return _nonCirculatingSupply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"getNonCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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
608060405234801562000010575f80fd5b50336040518060400160405280600781526020017f506f6c79426574000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f504254000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000735565b508060049081620000a1919062000735565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e91906200085c565b60405180910390fd5b62000128816200016060201b60201c565b5062000147336b01f04ef12cb04cf1580000006200022360201b60201c565b6b014adf4b7320334b9000000060068190555062000945565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000296575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200028d91906200085c565b60405180910390fd5b620002a95f8383620002ad60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000301578060025f828254620002f49190620008a4565b92505081905550620003d2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200038d578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200038493929190620008ef565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200041b578060025f828254039250508190555062000465565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004c491906200092a565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200054d57607f821691505b60208210810362000563576200056262000508565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200058a565b620005d386836200058a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200061d620006176200061184620005eb565b620005f4565b620005eb565b9050919050565b5f819050919050565b6200063883620005fd565b62000650620006478262000624565b84845462000596565b825550505050565b5f90565b6200066662000658565b620006738184846200062d565b505050565b5b818110156200069a576200068e5f826200065c565b60018101905062000679565b5050565b601f821115620006e957620006b38162000569565b620006be846200057b565b81016020851015620006ce578190505b620006e6620006dd856200057b565b83018262000678565b50505b505050565b5f82821c905092915050565b5f6200070b5f1984600802620006ee565b1980831691505092915050565b5f620007258383620006fa565b9150826002028217905092915050565b6200074082620004d1565b67ffffffffffffffff8111156200075c576200075b620004db565b5b62000768825462000535565b620007758282856200069e565b5f60209050601f831160018114620007ab575f841562000796578287015190505b620007a2858262000718565b86555062000811565b601f198416620007bb8662000569565b5f5b82811015620007e457848901518255600182019150602085019450602081019050620007bd565b8683101562000804578489015162000800601f891682620006fa565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008448262000819565b9050919050565b620008568162000838565b82525050565b5f602082019050620008715f8301846200084b565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620008b082620005eb565b9150620008bd83620005eb565b9250828201905080821115620008d857620008d762000877565b5b92915050565b620008e981620005eb565b82525050565b5f606082019050620009045f8301866200084b565b620009136020830185620008de565b620009226040830184620008de565b949350505050565b5f6020820190506200093f5f830184620008de565b92915050565b61136780620009535f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a9059cbb11610064578063a9059cbb14610238578063b72340d214610268578063dd62ed3e14610286578063f2fde38b146102b6576100e8565b8063715018a6146101f25780638da5cb5b146101fc57806395d89b411461021a576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806340c10f19146101a657806370a08231146101c2576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102d2565b6040516101019190610e91565b60405180910390f35b610124600480360381019061011f9190610f42565b610362565b6040516101319190610f9a565b60405180910390f35b610142610384565b60405161014f9190610fc2565b60405180910390f35b610172600480360381019061016d9190610fdb565b61038d565b60405161017f9190610f9a565b60405180910390f35b6101906103bb565b60405161019d9190611046565b60405180910390f35b6101c060048036038101906101bb9190610f42565b6103c3565b005b6101dc60048036038101906101d7919061105f565b61047a565b6040516101e99190610fc2565b60405180910390f35b6101fa6104bf565b005b6102046104d2565b6040516102119190611099565b60405180910390f35b6102226104fa565b60405161022f9190610e91565b60405180910390f35b610252600480360381019061024d9190610f42565b61058a565b60405161025f9190610f9a565b60405180910390f35b6102706105ac565b60405161027d9190610fc2565b60405180910390f35b6102a0600480360381019061029b91906110b2565b6105b5565b6040516102ad9190610fc2565b60405180910390f35b6102d060048036038101906102cb919061105f565b610637565b005b6060600380546102e19061111d565b80601f016020809104026020016040519081016040528092919081815260200182805461030d9061111d565b80156103585780601f1061032f57610100808354040283529160200191610358565b820191905f5260205f20905b81548152906001019060200180831161033b57829003601f168201915b5050505050905090565b5f8061036c6106bb565b90506103798185856106c2565b600191505092915050565b5f600254905090565b5f806103976106bb565b90506103a48582856106d4565b6103af858585610766565b60019150509392505050565b5f6012905090565b6103cb610856565b5f6006541161040f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610406906111bd565b60405180910390fd5b600654811115610454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044b9061124b565b60405180910390fd5b61045e82826108dd565b8060065f82825461046f9190611296565b925050819055505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104c7610856565b6104d05f61095c565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105099061111d565b80601f01602080910402602001604051908101604052809291908181526020018280546105359061111d565b80156105805780601f1061055757610100808354040283529160200191610580565b820191905f5260205f20905b81548152906001019060200180831161056357829003601f168201915b5050505050905090565b5f806105946106bb565b90506105a1818585610766565b600191505092915050565b5f600654905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61063f610856565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106af575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106a69190611099565b60405180910390fd5b6106b88161095c565b50565b5f33905090565b6106cf8383836001610a1f565b505050565b5f6106df84846105b5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107605781811015610751578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610748939291906112c9565b60405180910390fd5b61075f84848484035f610a1f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d6575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107cd9190611099565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610846575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161083d9190611099565b60405180910390fd5b610851838383610bee565b505050565b61085e6106bb565b73ffffffffffffffffffffffffffffffffffffffff1661087c6104d2565b73ffffffffffffffffffffffffffffffffffffffff16146108db5761089f6106bb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108d29190611099565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094d575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109449190611099565b60405180910390fd5b6109585f8383610bee565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a8f575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a869190611099565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aff575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610af69190611099565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610be8578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bdf9190610fc2565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3e578060025f828254610c3291906112fe565b92505081905550610d0c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610cbe939291906112c9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d53578060025f8282540392505081905550610d9d565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dfa9190610fc2565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e3e578082015181840152602081019050610e23565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e6382610e07565b610e6d8185610e11565b9350610e7d818560208601610e21565b610e8681610e49565b840191505092915050565b5f6020820190508181035f830152610ea98184610e59565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610ede82610eb5565b9050919050565b610eee81610ed4565b8114610ef8575f80fd5b50565b5f81359050610f0981610ee5565b92915050565b5f819050919050565b610f2181610f0f565b8114610f2b575f80fd5b50565b5f81359050610f3c81610f18565b92915050565b5f8060408385031215610f5857610f57610eb1565b5b5f610f6585828601610efb565b9250506020610f7685828601610f2e565b9150509250929050565b5f8115159050919050565b610f9481610f80565b82525050565b5f602082019050610fad5f830184610f8b565b92915050565b610fbc81610f0f565b82525050565b5f602082019050610fd55f830184610fb3565b92915050565b5f805f60608486031215610ff257610ff1610eb1565b5b5f610fff86828701610efb565b935050602061101086828701610efb565b925050604061102186828701610f2e565b9150509250925092565b5f60ff82169050919050565b6110408161102b565b82525050565b5f6020820190506110595f830184611037565b92915050565b5f6020828403121561107457611073610eb1565b5b5f61108184828501610efb565b91505092915050565b61109381610ed4565b82525050565b5f6020820190506110ac5f83018461108a565b92915050565b5f80604083850312156110c8576110c7610eb1565b5b5f6110d585828601610efb565b92505060206110e685828601610efb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061113457607f821691505b602082108103611147576111466110f0565b5b50919050565b7f4e6f6e2d63697263756c6174696e6720737570706c792066756c6c79206d696e5f8201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b5f6111a7602383610e11565b91506111b28261114d565b604082019050919050565b5f6020820190508181035f8301526111d48161119b565b9050919050565b7f4d696e7420616d6f756e742065786365656473206e6f6e2d63697263756c61745f8201527f696e6720737570706c7900000000000000000000000000000000000000000000602082015250565b5f611235602a83610e11565b9150611240826111db565b604082019050919050565b5f6020820190508181035f83015261126281611229565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112a082610f0f565b91506112ab83610f0f565b92508282039050818111156112c3576112c2611269565b5b92915050565b5f6060820190506112dc5f83018661108a565b6112e96020830185610fb3565b6112f66040830184610fb3565b949350505050565b5f61130882610f0f565b915061131383610f0f565b925082820190508082111561132b5761132a611269565b5b9291505056fea26469706673582212200ca1a8d6ee5f2e95f99fd98402fb01d9d5016d44b80e402dab54c37908e9348564736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a9059cbb11610064578063a9059cbb14610238578063b72340d214610268578063dd62ed3e14610286578063f2fde38b146102b6576100e8565b8063715018a6146101f25780638da5cb5b146101fc57806395d89b411461021a576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806340c10f19146101a657806370a08231146101c2576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102d2565b6040516101019190610e91565b60405180910390f35b610124600480360381019061011f9190610f42565b610362565b6040516101319190610f9a565b60405180910390f35b610142610384565b60405161014f9190610fc2565b60405180910390f35b610172600480360381019061016d9190610fdb565b61038d565b60405161017f9190610f9a565b60405180910390f35b6101906103bb565b60405161019d9190611046565b60405180910390f35b6101c060048036038101906101bb9190610f42565b6103c3565b005b6101dc60048036038101906101d7919061105f565b61047a565b6040516101e99190610fc2565b60405180910390f35b6101fa6104bf565b005b6102046104d2565b6040516102119190611099565b60405180910390f35b6102226104fa565b60405161022f9190610e91565b60405180910390f35b610252600480360381019061024d9190610f42565b61058a565b60405161025f9190610f9a565b60405180910390f35b6102706105ac565b60405161027d9190610fc2565b60405180910390f35b6102a0600480360381019061029b91906110b2565b6105b5565b6040516102ad9190610fc2565b60405180910390f35b6102d060048036038101906102cb919061105f565b610637565b005b6060600380546102e19061111d565b80601f016020809104026020016040519081016040528092919081815260200182805461030d9061111d565b80156103585780601f1061032f57610100808354040283529160200191610358565b820191905f5260205f20905b81548152906001019060200180831161033b57829003601f168201915b5050505050905090565b5f8061036c6106bb565b90506103798185856106c2565b600191505092915050565b5f600254905090565b5f806103976106bb565b90506103a48582856106d4565b6103af858585610766565b60019150509392505050565b5f6012905090565b6103cb610856565b5f6006541161040f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610406906111bd565b60405180910390fd5b600654811115610454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044b9061124b565b60405180910390fd5b61045e82826108dd565b8060065f82825461046f9190611296565b925050819055505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104c7610856565b6104d05f61095c565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105099061111d565b80601f01602080910402602001604051908101604052809291908181526020018280546105359061111d565b80156105805780601f1061055757610100808354040283529160200191610580565b820191905f5260205f20905b81548152906001019060200180831161056357829003601f168201915b5050505050905090565b5f806105946106bb565b90506105a1818585610766565b600191505092915050565b5f600654905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61063f610856565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106af575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106a69190611099565b60405180910390fd5b6106b88161095c565b50565b5f33905090565b6106cf8383836001610a1f565b505050565b5f6106df84846105b5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107605781811015610751578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610748939291906112c9565b60405180910390fd5b61075f84848484035f610a1f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d6575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107cd9190611099565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610846575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161083d9190611099565b60405180910390fd5b610851838383610bee565b505050565b61085e6106bb565b73ffffffffffffffffffffffffffffffffffffffff1661087c6104d2565b73ffffffffffffffffffffffffffffffffffffffff16146108db5761089f6106bb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108d29190611099565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094d575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109449190611099565b60405180910390fd5b6109585f8383610bee565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a8f575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a869190611099565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aff575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610af69190611099565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610be8578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bdf9190610fc2565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3e578060025f828254610c3291906112fe565b92505081905550610d0c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610cbe939291906112c9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d53578060025f8282540392505081905550610d9d565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dfa9190610fc2565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e3e578082015181840152602081019050610e23565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e6382610e07565b610e6d8185610e11565b9350610e7d818560208601610e21565b610e8681610e49565b840191505092915050565b5f6020820190508181035f830152610ea98184610e59565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610ede82610eb5565b9050919050565b610eee81610ed4565b8114610ef8575f80fd5b50565b5f81359050610f0981610ee5565b92915050565b5f819050919050565b610f2181610f0f565b8114610f2b575f80fd5b50565b5f81359050610f3c81610f18565b92915050565b5f8060408385031215610f5857610f57610eb1565b5b5f610f6585828601610efb565b9250506020610f7685828601610f2e565b9150509250929050565b5f8115159050919050565b610f9481610f80565b82525050565b5f602082019050610fad5f830184610f8b565b92915050565b610fbc81610f0f565b82525050565b5f602082019050610fd55f830184610fb3565b92915050565b5f805f60608486031215610ff257610ff1610eb1565b5b5f610fff86828701610efb565b935050602061101086828701610efb565b925050604061102186828701610f2e565b9150509250925092565b5f60ff82169050919050565b6110408161102b565b82525050565b5f6020820190506110595f830184611037565b92915050565b5f6020828403121561107457611073610eb1565b5b5f61108184828501610efb565b91505092915050565b61109381610ed4565b82525050565b5f6020820190506110ac5f83018461108a565b92915050565b5f80604083850312156110c8576110c7610eb1565b5b5f6110d585828601610efb565b92505060206110e685828601610efb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061113457607f821691505b602082108103611147576111466110f0565b5b50919050565b7f4e6f6e2d63697263756c6174696e6720737570706c792066756c6c79206d696e5f8201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b5f6111a7602383610e11565b91506111b28261114d565b604082019050919050565b5f6020820190508181035f8301526111d48161119b565b9050919050565b7f4d696e7420616d6f756e742065786365656473206e6f6e2d63697263756c61745f8201527f696e6720737570706c7900000000000000000000000000000000000000000000602082015250565b5f611235602a83610e11565b9150611240826111db565b604082019050919050565b5f6020820190508181035f83015261126281611229565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112a082610f0f565b91506112ab83610f0f565b92508282039050818111156112c3576112c2611269565b5b92915050565b5f6060820190506112dc5f83018661108a565b6112e96020830185610fb3565b6112f66040830184610fb3565b949350505050565b5f61130882610f0f565b915061131383610f0f565b925082820190508082111561132b5761132a611269565b5b9291505056fea26469706673582212200ca1a8d6ee5f2e95f99fd98402fb01d9d5016d44b80e402dab54c37908e9348564736f6c63430008140033
Deployed Bytecode Sourcemap
25872:736:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18771:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17580:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19539:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17431:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26143:340;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17742:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:103;;;:::i;:::-;;9416:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16688:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18065:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26491:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18310:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10349:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16478:91;16523:13;16556:5;16549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;:::o;18771:190::-;18844:4;18861:13;18877:12;:10;:12::i;:::-;18861:28;;18900:31;18909:5;18916:7;18925:5;18900:8;:31::i;:::-;18949:4;18942:11;;;18771:190;;;;:::o;17580:99::-;17632:7;17659:12;;17652:19;;17580:99;:::o;19539:249::-;19626:4;19643:15;19661:12;:10;:12::i;:::-;19643:30;;19684:37;19700:4;19706:7;19715:5;19684:15;:37::i;:::-;19732:26;19742:4;19748:2;19752:5;19732:9;:26::i;:::-;19776:4;19769:11;;;19539:249;;;;;:::o;17431:84::-;17480:5;17505:2;17498:9;;17431:84;:::o;26143:340::-;9302:13;:11;:13::i;:::-;26252:1:::1;26228:21;;:25;26220:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26322:21;;26312:6;:31;;26304:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;26411:22;26417:7;26426:6;26411:5;:22::i;:::-;26469:6;26444:21;;:31;;;;;;;:::i;:::-;;;;;;;;26143:340:::0;;:::o;17742:118::-;17807:7;17834:9;:18;17844:7;17834:18;;;;;;;;;;;;;;;;17827:25;;17742:118;;;:::o;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;9416:87::-;9462:7;9489:6;;;;;;;;;;;9482:13;;9416:87;:::o;16688:95::-;16735:13;16768:7;16761:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16688:95;:::o;18065:182::-;18134:4;18151:13;18167:12;:10;:12::i;:::-;18151:28;;18190:27;18200:5;18207:2;18211:5;18190:9;:27::i;:::-;18235:4;18228:11;;;18065:182;;;;:::o;26491:114::-;26549:7;26576:21;;26569:28;;26491:114;:::o;18310:142::-;18390:7;18417:11;:18;18429:5;18417:18;;;;;;;;;;;;;;;:27;18436:7;18417:27;;;;;;;;;;;;;;;;18410:34;;18310:142;;;;:::o;10349:220::-;9302:13;:11;:13::i;:::-;10454:1:::1;10434:22;;:8;:22;;::::0;10430:93:::1;;10508:1;10480:31;;;;;;;;;;;:::i;:::-;;;;;;;;10430:93;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;23598:130::-;23683:37;23692:5;23699:7;23708:5;23715:4;23683:8;:37::i;:::-;23598:130;;;:::o;25314:487::-;25414:24;25441:25;25451:5;25458:7;25441:9;:25::i;:::-;25414:52;;25501:17;25481:16;:37;25477:317;;25558:5;25539:16;:24;25535:132;;;25618:7;25627:16;25645:5;25591:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25535:132;25710:57;25719:5;25726:7;25754:5;25735:16;:24;25761:5;25710:8;:57::i;:::-;25477:317;25403:398;25314:487;;;:::o;20173:308::-;20273:1;20257:18;;:4;:18;;;20253:88;;20326:1;20299:30;;;;;;;;;;;:::i;:::-;;;;;;;;20253:88;20369:1;20355:16;;:2;:16;;;20351:88;;20424:1;20395:32;;;;;;;;;;;:::i;:::-;;;;;;;;20351:88;20449:24;20457:4;20463:2;20467:5;20449:7;:24::i;:::-;20173:308;;;:::o;9581:166::-;9652:12;:10;:12::i;:::-;9641:23;;:7;:5;:7::i;:::-;:23;;;9637:103;;9715:12;:10;:12::i;:::-;9688:40;;;;;;;;;;;:::i;:::-;;;;;;;;9637:103;9581:166::o;22293:213::-;22383:1;22364:21;;:7;:21;;;22360:93;;22438:1;22409:32;;;;;;;;;;;:::i;:::-;;;;;;;;22360:93;22463:35;22479:1;22483:7;22492:5;22463:7;:35::i;:::-;22293:213;;:::o;10729:191::-;10803:16;10822:6;;;;;;;;;;;10803:25;;10848:8;10839:6;;:17;;;;;;;;;;;;;;;;;;10903:8;10872:40;;10893:8;10872:40;;;;;;;;;;;;10792:128;10729:191;:::o;24579:443::-;24709:1;24692:19;;:5;:19;;;24688:91;;24764:1;24735:32;;;;;;;;;;;:::i;:::-;;;;;;;;24688:91;24812:1;24793:21;;:7;:21;;;24789:92;;24866:1;24838:31;;;;;;;;;;;:::i;:::-;;;;;;;;24789:92;24921:5;24891:11;:18;24903:5;24891:18;;;;;;;;;;;;;;;:27;24910:7;24891:27;;;;;;;;;;;;;;;:35;;;;24941:9;24937:78;;;24988:7;24972:31;;24981:5;24972:31;;;24997:5;24972:31;;;;;;:::i;:::-;;;;;;;;24937:78;24579:443;;;;:::o;20805:1135::-;20911:1;20895:18;;:4;:18;;;20891:552;;21049:5;21033:12;;:21;;;;;;;:::i;:::-;;;;;;;;20891:552;;;21087:19;21109:9;:15;21119:4;21109:15;;;;;;;;;;;;;;;;21087:37;;21157:5;21143:11;:19;21139:117;;;21215:4;21221:11;21234:5;21190:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21139:117;21411:5;21397:11;:19;21379:9;:15;21389:4;21379:15;;;;;;;;;;;;;;;:37;;;;21072:371;20891:552;21473:1;21459:16;;:2;:16;;;21455:435;;21641:5;21625:12;;:21;;;;;;;;;;;21455:435;;;21858:5;21841:9;:13;21851:2;21841:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21455:435;21922:2;21907:25;;21916:4;21907:25;;;21926:5;21907:25;;;;;;:::i;:::-;;;;;;;;20805: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:222::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:5;6736:2;6728:6;6724:15;6717:30;6532:222;:::o;6760:366::-;6902:3;6923:67;6987:2;6982:3;6923:67;:::i;:::-;6916:74;;6999:93;7088:3;6999:93;:::i;:::-;7117:2;7112:3;7108:12;7101:19;;6760:366;;;:::o;7132:419::-;7298:4;7336:2;7325:9;7321:18;7313:26;;7385:9;7379:4;7375:20;7371:1;7360:9;7356:17;7349:47;7413:131;7539:4;7413:131;:::i;:::-;7405:139;;7132:419;;;:::o;7557:229::-;7697:34;7693:1;7685:6;7681:14;7674:58;7766:12;7761:2;7753:6;7749:15;7742:37;7557:229;:::o;7792:366::-;7934:3;7955:67;8019:2;8014:3;7955:67;:::i;:::-;7948:74;;8031:93;8120:3;8031:93;:::i;:::-;8149:2;8144:3;8140:12;8133:19;;7792:366;;;:::o;8164:419::-;8330:4;8368:2;8357:9;8353:18;8345:26;;8417:9;8411:4;8407:20;8403:1;8392:9;8388:17;8381:47;8445:131;8571:4;8445:131;:::i;:::-;8437:139;;8164:419;;;:::o;8589:180::-;8637:77;8634:1;8627:88;8734:4;8731:1;8724:15;8758:4;8755:1;8748:15;8775:194;8815:4;8835:20;8853:1;8835:20;:::i;:::-;8830:25;;8869:20;8887:1;8869:20;:::i;:::-;8864:25;;8913:1;8910;8906:9;8898:17;;8937:1;8931:4;8928:11;8925:37;;;8942:18;;:::i;:::-;8925:37;8775:194;;;;:::o;8975:442::-;9124:4;9162:2;9151:9;9147:18;9139:26;;9175:71;9243:1;9232:9;9228:17;9219:6;9175:71;:::i;:::-;9256:72;9324:2;9313:9;9309:18;9300:6;9256:72;:::i;:::-;9338;9406:2;9395:9;9391:18;9382:6;9338:72;:::i;:::-;8975:442;;;;;;:::o;9423:191::-;9463:3;9482:20;9500:1;9482:20;:::i;:::-;9477:25;;9516:20;9534:1;9516:20;:::i;:::-;9511:25;;9559:1;9556;9552:9;9545:16;;9580:3;9577:1;9574:10;9571:36;;;9587:18;;:::i;:::-;9571:36;9423:191;;;;:::o
Swarm Source
ipfs://0ca1a8d6ee5f2e95f99fd98402fb01d9d5016d44b80e402dab54c37908e93485
Loading...
Loading
Loading...
Loading
OVERVIEW
PolyBet is a prediction market platform that lets users bet on the outcome of events.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.