This is the native USDC token launched on Polkadot. Read more here.
Latest 25 from a total of 43,448 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 14209379 | 31 mins ago | IN | 0 GLMR | 0.00244 | ||||
| Transfer | 14209290 | 40 mins ago | IN | 0 GLMR | 0.00244 | ||||
| Mint Into | 14206571 | 5 hrs ago | IN | 0 GLMR | 0 | ||||
| Mint Into | 14206571 | 5 hrs ago | IN | 0 GLMR | 0 | ||||
| Mint Into | 14206550 | 5 hrs ago | IN | 0 GLMR | 0 | ||||
| Mint Into | 14206550 | 5 hrs ago | IN | 0 GLMR | 0 | ||||
| Approve | 14205043 | 8 hrs ago | IN | 0 GLMR | 0.002419 | ||||
| Transfer | 14205015 | 8 hrs ago | IN | 0 GLMR | 0.00244 | ||||
| Mint Into | 14205006 | 8 hrs ago | IN | 0 GLMR | 0 | ||||
| Mint Into | 14205006 | 8 hrs ago | IN | 0 GLMR | 0 | ||||
| Transfer | 14202618 | 13 hrs ago | IN | 0 GLMR | 0.00244 | ||||
| Approve | 14201376 | 15 hrs ago | IN | 0 GLMR | 0.007257 | ||||
| Mint Into | 14201366 | 15 hrs ago | IN | 0 GLMR | 0 | ||||
| Mint Into | 14201366 | 15 hrs ago | IN | 0 GLMR | 0 | ||||
| Burn From | 14201320 | 15 hrs ago | IN | 0 GLMR | 0 | ||||
| Transfer | 14200778 | 16 hrs ago | IN | 0 GLMR | 0.00244 | ||||
| Transfer | 14200753 | 16 hrs ago | IN | 0 GLMR | 0.00244 | ||||
| Approve | 14199656 | 18 hrs ago | IN | 0 GLMR | 0.0011322 | ||||
| Approve | 14199656 | 18 hrs ago | IN | 0 GLMR | 0.00295337 | ||||
| Approve | 14198604 | 20 hrs ago | IN | 0 GLMR | 0.00153565 | ||||
| Approve | 14197470 | 22 hrs ago | IN | 0 GLMR | 0.002419 | ||||
| Approve | 14197342 | 23 hrs ago | IN | 0 GLMR | 0.002419 | ||||
| Approve | 14197152 | 23 hrs ago | IN | 0 GLMR | 0.002419 | ||||
| Transfer | 14197135 | 23 hrs ago | IN | 0 GLMR | 0.00244 | ||||
| Transfer | 14197086 | 23 hrs ago | IN | 0 GLMR | 0.00244 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
XC20
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at moonbeam.moonscan.io on 2025-06-04 */ // File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } } // File: @openzeppelin/[email protected]/utils/Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.20; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_update}. * * Requirements: * * - the contract must not be paused. */ function _update(address from, address to, uint256 value) internal virtual override whenNotPaused { super._update(from, to, value); } } // File: @openzeppelin/[email protected]/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/[email protected]/token/ERC20/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } } // File: @openzeppelin/[email protected]/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/[email protected]/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/[email protected]/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/[email protected]/utils/cryptography/MessageHashUtils.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } } // File: @openzeppelin/[email protected]/utils/StorageSlot.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } } // File: @openzeppelin/[email protected]/utils/ShortStrings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol) pragma solidity ^0.8.20; // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | // | length | 0x BB | type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); /// @solidity memory-safe-assembly assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using * {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } } // File: @openzeppelin/[email protected]/interfaces/IERC5267.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.20; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); } // File: @openzeppelin/[email protected]/utils/cryptography/EIP712.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.20; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * @custom:oz-upgrades-unsafe-allow state-variable-immutable */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {IERC-5267}. */ function eip712Domain() public view virtual returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } /** * @dev The name parameter for the EIP712 domain. * * NOTE: By default this function reads _name which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Name() internal view returns (string memory) { return _name.toStringWithFallback(_nameFallback); } /** * @dev The version parameter for the EIP712 domain. * * NOTE: By default this function reads _version which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Version() internal view returns (string memory) { return _version.toStringWithFallback(_versionFallback); } } // File: @openzeppelin/[email protected]/utils/Nonces.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol) pragma solidity ^0.8.20; /** * @dev Provides tracking nonces for addresses. Nonces will only increment. */ abstract contract Nonces { /** * @dev The nonce used for an `account` is not the expected current nonce. */ error InvalidAccountNonce(address account, uint256 currentNonce); mapping(address account => uint256) private _nonces; /** * @dev Returns the next unused nonce for an address. */ function nonces(address owner) public view virtual returns (uint256) { return _nonces[owner]; } /** * @dev Consumes a nonce. * * Returns the current value and increments nonce. */ function _useNonce(address owner) internal virtual returns (uint256) { // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be // decremented or reset. This guarantees that the nonce never overflows. unchecked { // It is important to do x++ and not ++x here. return _nonces[owner]++; } } /** * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`. */ function _useCheckedNonce(address owner, uint256 nonce) internal virtual { uint256 current = _useNonce(owner); if (nonce != current) { revert InvalidAccountNonce(owner, current); } } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces { bytes32 private constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Permit deadline has expired. */ error ERC2612ExpiredSignature(uint256 deadline); /** * @dev Mismatched signature. */ error ERC2612InvalidSigner(address signer, address owner); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @inheritdoc IERC20Permit */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { if (block.timestamp > deadline) { revert ERC2612ExpiredSignature(deadline); } bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); if (signer != owner) { revert ERC2612InvalidSigner(signer, owner); } _approve(owner, spender, value); } /** * @inheritdoc IERC20Permit */ function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) { return super.nonces(owner); } /** * @inheritdoc IERC20Permit */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view virtual returns (bytes32) { return _domainSeparatorV4(); } } // File: ERC20.sol // Compatible with OpenZeppelin Contracts ^5.0.0 pragma solidity ^0.8.20; contract XC20 is ERC20, ERC20Pausable, Ownable, ERC20Permit { constructor( address initialOwner, uint8 tokenDecimals, string memory symbol, string memory tokenName ) ERC20(tokenName, symbol) Ownable(initialOwner) ERC20Permit(tokenName) { _decimals = tokenDecimals; } uint8 private _decimals; function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mintInto(address to, uint256 amount) public onlyOwner { _mint(to, amount); } function burnFrom(address from, uint256 amount) public onlyOwner { _burn(from, amount); } function burnAllFrom(address account) public onlyOwner { _burn(account, balanceOf(account)); } function decimals() public view override returns (uint8) { return _decimals; } // override ERC20 methods that should be disabled when the asset is "paused" function approve( address spender, uint256 value ) public override(ERC20) whenNotPaused returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } function transfer( address to, uint256 value ) public override(ERC20) whenNotPaused returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } function transferFrom( address from, address to, uint256 value ) public override(ERC20) whenNotPaused returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } // The following functions are overrides required by Solidity. function _update( address from, address to, uint256 value ) internal override(ERC20, ERC20Pausable) { super._update(from, to, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"uint8","name":"tokenDecimals","type":"uint8"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"tokenName","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"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":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","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":[],"name":"EIP712DomainChanged","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"burnAllFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintInto","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
610160604052348015610010575f80fd5b50604051612cbf380380612cbf833981810160405281019061003291906105ad565b80806040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250868486816003908161007c9190610856565b50806004908161008c9190610856565b5050505f60055f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610118575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161010f9190610934565b60405180910390fd5b610127816101f660201b60201c565b5061013c6006836102bb60201b90919060201c565b61012081815250506101586007826102bb60201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a0818152505061019561030860201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250505050508260095f6101000a81548160ff021916908360ff16021790555050505050610ac0565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6020835110156102dc576102d58361036260201b60201c565b9050610302565b826102ec836103c760201b60201c565b5f0190816102fa9190610856565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e051610100514630604051602001610347959493929190610974565b60405160208183030381529060405280519060200120905090565b5f80829050601f815111156103ae57826040517f305a27a90000000000000000000000000000000000000000000000000000000081526004016103a59190610a0d565b60405180910390fd5b8051816103ba90610a5a565b5f1c175f1b915050919050565b5f819050919050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61040a826103e1565b9050919050565b61041a81610400565b8114610424575f80fd5b50565b5f8151905061043581610411565b92915050565b5f60ff82169050919050565b6104508161043b565b811461045a575f80fd5b50565b5f8151905061046b81610447565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6104bf82610479565b810181811067ffffffffffffffff821117156104de576104dd610489565b5b80604052505050565b5f6104f06103d0565b90506104fc82826104b6565b919050565b5f67ffffffffffffffff82111561051b5761051a610489565b5b61052482610479565b9050602081019050919050565b8281835e5f83830152505050565b5f61055161054c84610501565b6104e7565b90508281526020810184848401111561056d5761056c610475565b5b610578848285610531565b509392505050565b5f82601f83011261059457610593610471565b5b81516105a484826020860161053f565b91505092915050565b5f805f80608085870312156105c5576105c46103d9565b5b5f6105d287828801610427565b94505060206105e38782880161045d565b935050604085015167ffffffffffffffff811115610604576106036103dd565b5b61061087828801610580565b925050606085015167ffffffffffffffff811115610631576106306103dd565b5b61063d87828801610580565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061069757607f821691505b6020821081036106aa576106a9610653565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261070c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826106d1565b61071686836106d1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61075a6107556107508461072e565b610737565b61072e565b9050919050565b5f819050919050565b61077383610740565b61078761077f82610761565b8484546106dd565b825550505050565b5f90565b61079b61078f565b6107a681848461076a565b505050565b5b818110156107c9576107be5f82610793565b6001810190506107ac565b5050565b601f82111561080e576107df816106b0565b6107e8846106c2565b810160208510156107f7578190505b61080b610803856106c2565b8301826107ab565b50505b505050565b5f82821c905092915050565b5f61082e5f1984600802610813565b1980831691505092915050565b5f610846838361081f565b9150826002028217905092915050565b61085f82610649565b67ffffffffffffffff81111561087857610877610489565b5b6108828254610680565b61088d8282856107cd565b5f60209050601f8311600181146108be575f84156108ac578287015190505b6108b6858261083b565b86555061091d565b601f1984166108cc866106b0565b5f5b828110156108f3578489015182556001820191506020850194506020810190506108ce565b86831015610910578489015161090c601f89168261081f565b8355505b6001600288020188555050505b505050505050565b61092e81610400565b82525050565b5f6020820190506109475f830184610925565b92915050565b5f819050919050565b61095f8161094d565b82525050565b61096e8161072e565b82525050565b5f60a0820190506109875f830188610956565b6109946020830187610956565b6109a16040830186610956565b6109ae6060830185610965565b6109bb6080830184610925565b9695505050505050565b5f82825260208201905092915050565b5f6109df82610649565b6109e981856109c5565b93506109f9818560208601610531565b610a0281610479565b840191505092915050565b5f6020820190508181035f830152610a2581846109d5565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f610a51825161094d565b80915050919050565b5f610a6482610a2d565b82610a6e84610a37565b9050610a7981610a46565b92506020821015610ab957610ab47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff836020036008026106d1565b831692505b5050919050565b60805160a05160c05160e0516101005161012051610140516121ae610b115f395f610f8801525f610f4d01525f6112f701525f6112d601525f610cc301525f610d1901525f610d4201526121ae5ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c806379cc6790116100b657806395d89b411161007a57806395d89b4114610332578063a9059cbb14610350578063aab3859214610380578063d505accf1461039c578063dd62ed3e146103b8578063f2fde38b146103e857610140565b806379cc67901461029a5780637ecebe00146102b65780638456cb59146102e657806384b0196e146102f05780638da5cb5b1461031457610140565b8063313ce56711610108578063313ce567146101fc5780633644e5151461021a5780633f4ba83a146102385780635c975abb1461024257806370a0823114610260578063715018a61461029057610140565b806306fdde0314610144578063095ea7b314610162578063167db3791461019257806318160ddd146101ae57806323b872dd146101cc575b5f80fd5b61014c610404565b6040516101599190611a1e565b60405180910390f35b61017c60048036038101906101779190611acf565b610494565b6040516101899190611b27565b60405180910390f35b6101ac60048036038101906101a79190611b40565b6104be565b005b6101b66104db565b6040516101c39190611b7a565b60405180910390f35b6101e660048036038101906101e19190611b93565b6104e4565b6040516101f39190611b27565b60405180910390f35b61020461051a565b6040516102119190611bfe565b60405180910390f35b61022261052f565b60405161022f9190611c2f565b60405180910390f35b61024061053d565b005b61024a61054f565b6040516102579190611b27565b60405180910390f35b61027a60048036038101906102759190611b40565b610564565b6040516102879190611b7a565b60405180910390f35b6102986105a9565b005b6102b460048036038101906102af9190611acf565b6105bc565b005b6102d060048036038101906102cb9190611b40565b6105d2565b6040516102dd9190611b7a565b60405180910390f35b6102ee6105e3565b005b6102f86105f5565b60405161030b9796959493929190611d48565b60405180910390f35b61031c61069a565b6040516103299190611dca565b60405180910390f35b61033a6106c3565b6040516103479190611a1e565b60405180910390f35b61036a60048036038101906103659190611acf565b610753565b6040516103779190611b27565b60405180910390f35b61039a60048036038101906103959190611acf565b61077d565b005b6103b660048036038101906103b19190611e37565b610793565b005b6103d260048036038101906103cd9190611ed4565b6108d8565b6040516103df9190611b7a565b60405180910390f35b61040260048036038101906103fd9190611b40565b61095a565b005b60606003805461041390611f3f565b80601f016020809104026020016040519081016040528092919081815260200182805461043f90611f3f565b801561048a5780601f106104615761010080835404028352916020019161048a565b820191905f5260205f20905b81548152906001019060200180831161046d57829003601f168201915b5050505050905090565b5f61049d6109de565b5f6104a6610a1f565b90506104b3818585610a26565b600191505092915050565b6104c6610a38565b6104d8816104d383610564565b610abf565b50565b5f600254905090565b5f6104ed6109de565b5f6104f6610a1f565b9050610503858285610b3e565b61050e858585610bd0565b60019150509392505050565b5f60095f9054906101000a900460ff16905090565b5f610538610cc0565b905090565b610545610a38565b61054d610d76565b565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105b1610a38565b6105ba5f610dd7565b565b6105c4610a38565b6105ce8282610abf565b5050565b5f6105dc82610e9c565b9050919050565b6105eb610a38565b6105f3610ee2565b565b5f6060805f805f6060610606610f44565b61060e610f7f565b46305f801b5f67ffffffffffffffff81111561062d5761062c611f6f565b5b60405190808252806020026020018201604052801561065b5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106d290611f3f565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe90611f3f565b80156107495780601f1061072057610100808354040283529160200191610749565b820191905f5260205f20905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b5f61075c6109de565b5f610765610a1f565b9050610772818585610bd0565b600191505092915050565b610785610a38565b61078f8282610fba565b5050565b834211156107d857836040517f627913020000000000000000000000000000000000000000000000000000000081526004016107cf9190611b7a565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108068c611039565b8960405160200161081c96959493929190611f9c565b6040516020818303038152906040528051906020012090505f61083e8261108c565b90505f61084d828787876110a5565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108c157808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016108b8929190611ffb565b60405180910390fd5b6108cc8a8a8a610a26565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610962610a38565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109d2575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109c99190611dca565b60405180910390fd5b6109db81610dd7565b50565b6109e661054f565b15610a1d576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f33905090565b610a3383838360016110d3565b505050565b610a40610a1f565b73ffffffffffffffffffffffffffffffffffffffff16610a5e61069a565b73ffffffffffffffffffffffffffffffffffffffff1614610abd57610a81610a1f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ab49190611dca565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2f575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b269190611dca565b60405180910390fd5b610b3a825f836112a2565b5050565b5f610b4984846108d8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bca5781811015610bbb578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610bb293929190612022565b60405180910390fd5b610bc984848484035f6110d3565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c40575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c379190611dca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb0575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ca79190611dca565b60405180910390fd5b610cbb8383836112a2565b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610d3b57507f000000000000000000000000000000000000000000000000000000000000000046145b15610d68577f00000000000000000000000000000000000000000000000000000000000000009050610d73565b610d706112b2565b90505b90565b610d7e611347565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dc0610a1f565b604051610dcd9190611dca565b60405180910390a1565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610eea6109de565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f2d610a1f565b604051610f3a9190611dca565b60405180910390a1565b6060610f7a60067f000000000000000000000000000000000000000000000000000000000000000061138790919063ffffffff16565b905090565b6060610fb560077f000000000000000000000000000000000000000000000000000000000000000061138790919063ffffffff16565b905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102a575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110219190611dca565b60405180910390fd5b6110355f83836112a2565b5050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f61109e611098610cc0565b83611434565b9050919050565b5f805f806110b588888888611474565b9250925092506110c5828261155b565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611143575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161113a9190611dca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111b3575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111aa9190611dca565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561129c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112939190611b7a565b60405180910390a35b50505050565b6112ad8383836116bd565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000463060405160200161132c959493929190612057565b60405160208183030381529060405280519060200120905090565b61134f61054f565b611385576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b606060ff5f1b83146113a35761139c836116d5565b905061142e565b8180546113af90611f3f565b80601f01602080910402602001604051908101604052809291908181526020018280546113db90611f3f565b80156114265780601f106113fd57610100808354040283529160200191611426565b820191905f5260205f20905b81548152906001019060200180831161140957829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c11156114b0575f600385925092509250611551565b5f6001888888886040515f81526020016040526040516114d394939291906120a8565b6020604051602081039080840390855afa1580156114f3573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611544575f60015f801b93509350935050611551565b805f805f1b935093509350505b9450945094915050565b5f600381111561156e5761156d6120eb565b5b826003811115611581576115806120eb565b5b03156116b9576001600381111561159b5761159a6120eb565b5b8260038111156115ae576115ad6120eb565b5b036115e5576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260038111156115f9576115f86120eb565b5b82600381111561160c5761160b6120eb565b5b0361165057805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016116479190611b7a565b60405180910390fd5b600380811115611663576116626120eb565b5b826003811115611676576116756120eb565b5b036116b857806040517fd78bce0c0000000000000000000000000000000000000000000000000000000081526004016116af9190611c2f565b60405180910390fd5b5b5050565b6116c56109de565b6116d0838383611747565b505050565b60605f6116e183611960565b90505f602067ffffffffffffffff8111156116ff576116fe611f6f565b5b6040519080825280601f01601f1916602001820160405280156117315781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611797578060025f82825461178b9190612145565b92505081905550611865565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611820578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161181793929190612022565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ac578060025f82825403925050819055506118f6565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119539190611b7a565b60405180910390a3505050565b5f8060ff835f1c169050601f8111156119a5576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6119f0826119ae565b6119fa81856119b8565b9350611a0a8185602086016119c8565b611a13816119d6565b840191505092915050565b5f6020820190508181035f830152611a3681846119e6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a6b82611a42565b9050919050565b611a7b81611a61565b8114611a85575f80fd5b50565b5f81359050611a9681611a72565b92915050565b5f819050919050565b611aae81611a9c565b8114611ab8575f80fd5b50565b5f81359050611ac981611aa5565b92915050565b5f8060408385031215611ae557611ae4611a3e565b5b5f611af285828601611a88565b9250506020611b0385828601611abb565b9150509250929050565b5f8115159050919050565b611b2181611b0d565b82525050565b5f602082019050611b3a5f830184611b18565b92915050565b5f60208284031215611b5557611b54611a3e565b5b5f611b6284828501611a88565b91505092915050565b611b7481611a9c565b82525050565b5f602082019050611b8d5f830184611b6b565b92915050565b5f805f60608486031215611baa57611ba9611a3e565b5b5f611bb786828701611a88565b9350506020611bc886828701611a88565b9250506040611bd986828701611abb565b9150509250925092565b5f60ff82169050919050565b611bf881611be3565b82525050565b5f602082019050611c115f830184611bef565b92915050565b5f819050919050565b611c2981611c17565b82525050565b5f602082019050611c425f830184611c20565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611c7c81611c48565b82525050565b611c8b81611a61565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611cc381611a9c565b82525050565b5f611cd48383611cba565b60208301905092915050565b5f602082019050919050565b5f611cf682611c91565b611d008185611c9b565b9350611d0b83611cab565b805f5b83811015611d3b578151611d228882611cc9565b9750611d2d83611ce0565b925050600181019050611d0e565b5085935050505092915050565b5f60e082019050611d5b5f83018a611c73565b8181036020830152611d6d81896119e6565b90508181036040830152611d8181886119e6565b9050611d906060830187611b6b565b611d9d6080830186611c82565b611daa60a0830185611c20565b81810360c0830152611dbc8184611cec565b905098975050505050505050565b5f602082019050611ddd5f830184611c82565b92915050565b611dec81611be3565b8114611df6575f80fd5b50565b5f81359050611e0781611de3565b92915050565b611e1681611c17565b8114611e20575f80fd5b50565b5f81359050611e3181611e0d565b92915050565b5f805f805f805f60e0888a031215611e5257611e51611a3e565b5b5f611e5f8a828b01611a88565b9750506020611e708a828b01611a88565b9650506040611e818a828b01611abb565b9550506060611e928a828b01611abb565b9450506080611ea38a828b01611df9565b93505060a0611eb48a828b01611e23565b92505060c0611ec58a828b01611e23565b91505092959891949750929550565b5f8060408385031215611eea57611ee9611a3e565b5b5f611ef785828601611a88565b9250506020611f0885828601611a88565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f5657607f821691505b602082108103611f6957611f68611f12565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c082019050611faf5f830189611c20565b611fbc6020830188611c82565b611fc96040830187611c82565b611fd66060830186611b6b565b611fe36080830185611b6b565b611ff060a0830184611b6b565b979650505050505050565b5f60408201905061200e5f830185611c82565b61201b6020830184611c82565b9392505050565b5f6060820190506120355f830186611c82565b6120426020830185611b6b565b61204f6040830184611b6b565b949350505050565b5f60a08201905061206a5f830188611c20565b6120776020830187611c20565b6120846040830186611c20565b6120916060830185611b6b565b61209e6080830184611c82565b9695505050505050565b5f6080820190506120bb5f830187611c20565b6120c86020830186611bef565b6120d56040830185611c20565b6120e26060830184611c20565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61214f82611a9c565b915061215a83611a9c565b925082820190508082111561217257612171612118565b5b9291505056fea2646970667358221220fc84b3ecd32a8b8de7cf49f4c49cea5c61ad9148b07395762d9004f964e7b82b64736f6c634300081a00330000000000000000000000006d6f646c666f72676173737400000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000067863555344430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000855534420436f696e000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c806379cc6790116100b657806395d89b411161007a57806395d89b4114610332578063a9059cbb14610350578063aab3859214610380578063d505accf1461039c578063dd62ed3e146103b8578063f2fde38b146103e857610140565b806379cc67901461029a5780637ecebe00146102b65780638456cb59146102e657806384b0196e146102f05780638da5cb5b1461031457610140565b8063313ce56711610108578063313ce567146101fc5780633644e5151461021a5780633f4ba83a146102385780635c975abb1461024257806370a0823114610260578063715018a61461029057610140565b806306fdde0314610144578063095ea7b314610162578063167db3791461019257806318160ddd146101ae57806323b872dd146101cc575b5f80fd5b61014c610404565b6040516101599190611a1e565b60405180910390f35b61017c60048036038101906101779190611acf565b610494565b6040516101899190611b27565b60405180910390f35b6101ac60048036038101906101a79190611b40565b6104be565b005b6101b66104db565b6040516101c39190611b7a565b60405180910390f35b6101e660048036038101906101e19190611b93565b6104e4565b6040516101f39190611b27565b60405180910390f35b61020461051a565b6040516102119190611bfe565b60405180910390f35b61022261052f565b60405161022f9190611c2f565b60405180910390f35b61024061053d565b005b61024a61054f565b6040516102579190611b27565b60405180910390f35b61027a60048036038101906102759190611b40565b610564565b6040516102879190611b7a565b60405180910390f35b6102986105a9565b005b6102b460048036038101906102af9190611acf565b6105bc565b005b6102d060048036038101906102cb9190611b40565b6105d2565b6040516102dd9190611b7a565b60405180910390f35b6102ee6105e3565b005b6102f86105f5565b60405161030b9796959493929190611d48565b60405180910390f35b61031c61069a565b6040516103299190611dca565b60405180910390f35b61033a6106c3565b6040516103479190611a1e565b60405180910390f35b61036a60048036038101906103659190611acf565b610753565b6040516103779190611b27565b60405180910390f35b61039a60048036038101906103959190611acf565b61077d565b005b6103b660048036038101906103b19190611e37565b610793565b005b6103d260048036038101906103cd9190611ed4565b6108d8565b6040516103df9190611b7a565b60405180910390f35b61040260048036038101906103fd9190611b40565b61095a565b005b60606003805461041390611f3f565b80601f016020809104026020016040519081016040528092919081815260200182805461043f90611f3f565b801561048a5780601f106104615761010080835404028352916020019161048a565b820191905f5260205f20905b81548152906001019060200180831161046d57829003601f168201915b5050505050905090565b5f61049d6109de565b5f6104a6610a1f565b90506104b3818585610a26565b600191505092915050565b6104c6610a38565b6104d8816104d383610564565b610abf565b50565b5f600254905090565b5f6104ed6109de565b5f6104f6610a1f565b9050610503858285610b3e565b61050e858585610bd0565b60019150509392505050565b5f60095f9054906101000a900460ff16905090565b5f610538610cc0565b905090565b610545610a38565b61054d610d76565b565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105b1610a38565b6105ba5f610dd7565b565b6105c4610a38565b6105ce8282610abf565b5050565b5f6105dc82610e9c565b9050919050565b6105eb610a38565b6105f3610ee2565b565b5f6060805f805f6060610606610f44565b61060e610f7f565b46305f801b5f67ffffffffffffffff81111561062d5761062c611f6f565b5b60405190808252806020026020018201604052801561065b5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106d290611f3f565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe90611f3f565b80156107495780601f1061072057610100808354040283529160200191610749565b820191905f5260205f20905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b5f61075c6109de565b5f610765610a1f565b9050610772818585610bd0565b600191505092915050565b610785610a38565b61078f8282610fba565b5050565b834211156107d857836040517f627913020000000000000000000000000000000000000000000000000000000081526004016107cf9190611b7a565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108068c611039565b8960405160200161081c96959493929190611f9c565b6040516020818303038152906040528051906020012090505f61083e8261108c565b90505f61084d828787876110a5565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108c157808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016108b8929190611ffb565b60405180910390fd5b6108cc8a8a8a610a26565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610962610a38565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109d2575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109c99190611dca565b60405180910390fd5b6109db81610dd7565b50565b6109e661054f565b15610a1d576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f33905090565b610a3383838360016110d3565b505050565b610a40610a1f565b73ffffffffffffffffffffffffffffffffffffffff16610a5e61069a565b73ffffffffffffffffffffffffffffffffffffffff1614610abd57610a81610a1f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ab49190611dca565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2f575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b269190611dca565b60405180910390fd5b610b3a825f836112a2565b5050565b5f610b4984846108d8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bca5781811015610bbb578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610bb293929190612022565b60405180910390fd5b610bc984848484035f6110d3565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c40575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c379190611dca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb0575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ca79190611dca565b60405180910390fd5b610cbb8383836112a2565b505050565b5f7f000000000000000000000000ffffffff7d2b0b761af01ca8e25242976ac0ad7d73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610d3b57507f000000000000000000000000000000000000000000000000000000000000050446145b15610d68577f8a8ba74417eeb3fbdfeed8c99137e37effb7f8e23244e4c60f0e658785ab50dc9050610d73565b610d706112b2565b90505b90565b610d7e611347565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dc0610a1f565b604051610dcd9190611dca565b60405180910390a1565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610eea6109de565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f2d610a1f565b604051610f3a9190611dca565b60405180910390a1565b6060610f7a60067f55534420436f696e00000000000000000000000000000000000000000000000861138790919063ffffffff16565b905090565b6060610fb560077f310000000000000000000000000000000000000000000000000000000000000161138790919063ffffffff16565b905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102a575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110219190611dca565b60405180910390fd5b6110355f83836112a2565b5050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f61109e611098610cc0565b83611434565b9050919050565b5f805f806110b588888888611474565b9250925092506110c5828261155b565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611143575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161113a9190611dca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111b3575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111aa9190611dca565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561129c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112939190611b7a565b60405180910390a35b50505050565b6112ad8383836116bd565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f52878b207aaddbfc15ea7bebcda681eb8ccd306e2227b61cef68505c8c0563417fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6463060405160200161132c959493929190612057565b60405160208183030381529060405280519060200120905090565b61134f61054f565b611385576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b606060ff5f1b83146113a35761139c836116d5565b905061142e565b8180546113af90611f3f565b80601f01602080910402602001604051908101604052809291908181526020018280546113db90611f3f565b80156114265780601f106113fd57610100808354040283529160200191611426565b820191905f5260205f20905b81548152906001019060200180831161140957829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c11156114b0575f600385925092509250611551565b5f6001888888886040515f81526020016040526040516114d394939291906120a8565b6020604051602081039080840390855afa1580156114f3573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611544575f60015f801b93509350935050611551565b805f805f1b935093509350505b9450945094915050565b5f600381111561156e5761156d6120eb565b5b826003811115611581576115806120eb565b5b03156116b9576001600381111561159b5761159a6120eb565b5b8260038111156115ae576115ad6120eb565b5b036115e5576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260038111156115f9576115f86120eb565b5b82600381111561160c5761160b6120eb565b5b0361165057805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016116479190611b7a565b60405180910390fd5b600380811115611663576116626120eb565b5b826003811115611676576116756120eb565b5b036116b857806040517fd78bce0c0000000000000000000000000000000000000000000000000000000081526004016116af9190611c2f565b60405180910390fd5b5b5050565b6116c56109de565b6116d0838383611747565b505050565b60605f6116e183611960565b90505f602067ffffffffffffffff8111156116ff576116fe611f6f565b5b6040519080825280601f01601f1916602001820160405280156117315781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611797578060025f82825461178b9190612145565b92505081905550611865565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611820578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161181793929190612022565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ac578060025f82825403925050819055506118f6565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119539190611b7a565b60405180910390a3505050565b5f8060ff835f1c169050601f8111156119a5576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6119f0826119ae565b6119fa81856119b8565b9350611a0a8185602086016119c8565b611a13816119d6565b840191505092915050565b5f6020820190508181035f830152611a3681846119e6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a6b82611a42565b9050919050565b611a7b81611a61565b8114611a85575f80fd5b50565b5f81359050611a9681611a72565b92915050565b5f819050919050565b611aae81611a9c565b8114611ab8575f80fd5b50565b5f81359050611ac981611aa5565b92915050565b5f8060408385031215611ae557611ae4611a3e565b5b5f611af285828601611a88565b9250506020611b0385828601611abb565b9150509250929050565b5f8115159050919050565b611b2181611b0d565b82525050565b5f602082019050611b3a5f830184611b18565b92915050565b5f60208284031215611b5557611b54611a3e565b5b5f611b6284828501611a88565b91505092915050565b611b7481611a9c565b82525050565b5f602082019050611b8d5f830184611b6b565b92915050565b5f805f60608486031215611baa57611ba9611a3e565b5b5f611bb786828701611a88565b9350506020611bc886828701611a88565b9250506040611bd986828701611abb565b9150509250925092565b5f60ff82169050919050565b611bf881611be3565b82525050565b5f602082019050611c115f830184611bef565b92915050565b5f819050919050565b611c2981611c17565b82525050565b5f602082019050611c425f830184611c20565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611c7c81611c48565b82525050565b611c8b81611a61565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611cc381611a9c565b82525050565b5f611cd48383611cba565b60208301905092915050565b5f602082019050919050565b5f611cf682611c91565b611d008185611c9b565b9350611d0b83611cab565b805f5b83811015611d3b578151611d228882611cc9565b9750611d2d83611ce0565b925050600181019050611d0e565b5085935050505092915050565b5f60e082019050611d5b5f83018a611c73565b8181036020830152611d6d81896119e6565b90508181036040830152611d8181886119e6565b9050611d906060830187611b6b565b611d9d6080830186611c82565b611daa60a0830185611c20565b81810360c0830152611dbc8184611cec565b905098975050505050505050565b5f602082019050611ddd5f830184611c82565b92915050565b611dec81611be3565b8114611df6575f80fd5b50565b5f81359050611e0781611de3565b92915050565b611e1681611c17565b8114611e20575f80fd5b50565b5f81359050611e3181611e0d565b92915050565b5f805f805f805f60e0888a031215611e5257611e51611a3e565b5b5f611e5f8a828b01611a88565b9750506020611e708a828b01611a88565b9650506040611e818a828b01611abb565b9550506060611e928a828b01611abb565b9450506080611ea38a828b01611df9565b93505060a0611eb48a828b01611e23565b92505060c0611ec58a828b01611e23565b91505092959891949750929550565b5f8060408385031215611eea57611ee9611a3e565b5b5f611ef785828601611a88565b9250506020611f0885828601611a88565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f5657607f821691505b602082108103611f6957611f68611f12565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c082019050611faf5f830189611c20565b611fbc6020830188611c82565b611fc96040830187611c82565b611fd66060830186611b6b565b611fe36080830185611b6b565b611ff060a0830184611b6b565b979650505050505050565b5f60408201905061200e5f830185611c82565b61201b6020830184611c82565b9392505050565b5f6060820190506120355f830186611c82565b6120426020830185611b6b565b61204f6040830184611b6b565b949350505050565b5f60a08201905061206a5f830188611c20565b6120776020830187611c20565b6120846040830186611c20565b6120916060830185611b6b565b61209e6080830184611c82565b9695505050505050565b5f6080820190506120bb5f830187611c20565b6120c86020830186611bef565b6120d56040830185611c20565b6120e26060830184611c20565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61214f82611a9c565b915061215a83611a9c565b925082820190508082111561217257612171612118565b5b9291505056fea2646970667358221220fc84b3ecd32a8b8de7cf49f4c49cea5c61ad9148b07395762d9004f964e7b82b64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006d6f646c666f72676173737400000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000067863555344430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000855534420436f696e000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x6D6F646c666F7267617373740000000000000000
Arg [1] : tokenDecimals (uint8): 6
Arg [2] : symbol (string): xcUSDC
Arg [3] : tokenName (string): USD Coin
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000006d6f646c666f7267617373740000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 7863555344430000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 55534420436f696e000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
87310:2075:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13327:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88336:237;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88036:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14429:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88818:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88152:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87077:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87745:65;;;:::i;:::-;;25750:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14591:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30386:103;;;:::i;:::-;;87925;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86819:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87676:61;;;:::i;:::-;;81466:580;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;29711:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13537:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88581:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87818:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86065:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15159:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30644:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13327:91;13372:13;13405:5;13398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13327:91;:::o;88336:237::-;88456:4;25355:19;:17;:19::i;:::-;88473:13:::1;88489:12;:10;:12::i;:::-;88473:28;;88512:31;88521:5;88528:7;88537:5;88512:8;:31::i;:::-;88561:4;88554:11;;;88336:237:::0;;;;:::o;88036:108::-;29597:13;:11;:13::i;:::-;88102:34:::1;88108:7;88117:18;88127:7;88117:9;:18::i;:::-;88102:5;:34::i;:::-;88036:108:::0;:::o;14429:99::-;14481:7;14508:12;;14501:19;;14429:99;:::o;88818:305::-;88961:4;25355:19;:17;:19::i;:::-;88978:15:::1;88996:12;:10;:12::i;:::-;88978:30;;89019:37;89035:4;89041:7;89050:5;89019:15;:37::i;:::-;89067:26;89077:4;89083:2;89087:5;89067:9;:26::i;:::-;89111:4;89104:11;;;88818:305:::0;;;;;:::o;88152:92::-;88202:5;88227:9;;;;;;;;;;;88220:16;;88152:92;:::o;87077:114::-;87136:7;87163:20;:18;:20::i;:::-;87156:27;;87077:114;:::o;87745:65::-;29597:13;:11;:13::i;:::-;87792:10:::1;:8;:10::i;:::-;87745:65::o:0;25750:86::-;25797:4;25821:7;;;;;;;;;;;25814:14;;25750:86;:::o;14591:118::-;14656:7;14683:9;:18;14693:7;14683:18;;;;;;;;;;;;;;;;14676:25;;14591:118;;;:::o;30386:103::-;29597:13;:11;:13::i;:::-;30451:30:::1;30478:1;30451:18;:30::i;:::-;30386:103::o:0;87925:::-;29597:13;:11;:13::i;:::-;88001:19:::1;88007:4;88013:6;88001:5;:19::i;:::-;87925:103:::0;;:::o;86819:145::-;86910:7;86937:19;86950:5;86937:12;:19::i;:::-;86930:26;;86819:145;;;:::o;87676:61::-;29597:13;:11;:13::i;:::-;87721:8:::1;:6;:8::i;:::-;87676:61::o:0;81466:580::-;81569:13;81597:18;81630:21;81666:15;81696:25;81736:12;81763:27;81871:13;:11;:13::i;:::-;81899:16;:14;:16::i;:::-;81930:13;81966:4;81994:1;81986:10;;82025:1;82011:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81818:220;;;;;;;;;;;;;;;;;;;;;81466:580;;;;;;;:::o;29711:87::-;29757:7;29784:6;;;;;;;;;;;29777:13;;29711:87;:::o;13537:95::-;13584:13;13617:7;13610:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13537:95;:::o;88581:229::-;88697:4;25355:19;:17;:19::i;:::-;88714:13:::1;88730:12;:10;:12::i;:::-;88714:28;;88753:27;88763:5;88770:2;88774:5;88753:9;:27::i;:::-;88798:4;88791:11;;;88581:229:::0;;;;:::o;87818:99::-;29597:13;:11;:13::i;:::-;87892:17:::1;87898:2;87902:6;87892:5;:17::i;:::-;87818:99:::0;;:::o;86065:695::-;86295:8;86277:15;:26;86273:99;;;86351:8;86327:33;;;;;;;;;;;:::i;:::-;;;;;;;;86273:99;86384:18;85385:95;86443:5;86450:7;86459:5;86466:16;86476:5;86466:9;:16::i;:::-;86484:8;86415:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86405:89;;;;;;86384:110;;86507:12;86522:28;86539:10;86522:16;:28::i;:::-;86507:43;;86563:14;86580:28;86594:4;86600:1;86603;86606;86580:13;:28::i;:::-;86563:45;;86633:5;86623:15;;:6;:15;;;86619:90;;86683:6;86691:5;86662:35;;;;;;;;;;;;:::i;:::-;;;;;;;;86619:90;86721:31;86730:5;86737:7;86746:5;86721:8;:31::i;:::-;86262:498;;;86065:695;;;;;;;:::o;15159:142::-;15239:7;15266:11;:18;15278:5;15266:18;;;;;;;;;;;;;;;:27;15285:7;15266:27;;;;;;;;;;;;;;;;15259:34;;15159:142;;;;:::o;30644:220::-;29597:13;:11;:13::i;:::-;30749:1:::1;30729:22;;:8;:22;;::::0;30725:93:::1;;30803:1;30775:31;;;;;;;;;;;:::i;:::-;;;;;;;;30725:93;30828:28;30847:8;30828:18;:28::i;:::-;30644:220:::0;:::o;25909:132::-;25975:8;:6;:8::i;:::-;25971:63;;;26007:15;;;;;;;;;;;;;;25971:63;25909:132::o;4320:98::-;4373:7;4400:10;4393:17;;4320:98;:::o;20447:130::-;20532:37;20541:5;20548:7;20557:5;20564:4;20532:8;:37::i;:::-;20447:130;;;:::o;29876:166::-;29947:12;:10;:12::i;:::-;29936:23;;:7;:5;:7::i;:::-;:23;;;29932:103;;30010:12;:10;:12::i;:::-;29983:40;;;;;;;;;;;:::i;:::-;;;;;;;;29932:103;29876:166::o;19683:211::-;19773:1;19754:21;;:7;:21;;;19750:91;;19826:1;19799:30;;;;;;;;;;;:::i;:::-;;;;;;;;19750:91;19851:35;19859:7;19876:1;19880:5;19851:7;:35::i;:::-;19683:211;;:::o;22163:487::-;22263:24;22290:25;22300:5;22307:7;22290:9;:25::i;:::-;22263:52;;22350:17;22330:16;:37;22326:317;;22407:5;22388:16;:24;22384:132;;;22467:7;22476:16;22494:5;22440:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22384:132;22559:57;22568:5;22575:7;22603:5;22584:16;:24;22610:5;22559:8;:57::i;:::-;22326:317;22252:398;22163:487;;;:::o;17022:308::-;17122:1;17106:18;;:4;:18;;;17102:88;;17175:1;17148:30;;;;;;;;;;;:::i;:::-;;;;;;;;17102:88;17218:1;17204:16;;:2;:16;;;17200:88;;17273:1;17244:32;;;;;;;;;;;:::i;:::-;;;;;;;;17200:88;17298:24;17306:4;17312:2;17316:5;17298:7;:24::i;:::-;17022:308;;;:::o;80133:268::-;80186:7;80227:11;80210:28;;80218:4;80210:28;;;:63;;;;;80259:14;80242:13;:31;80210:63;80206:188;;;80297:22;80290:29;;;;80206:188;80359:23;:21;:23::i;:::-;80352:30;;80133:268;;:::o;26651:120::-;25614:16;:14;:16::i;:::-;26720:5:::1;26710:7;;:15;;;;;;;;;;;;;;;;;;26741:22;26750:12;:10;:12::i;:::-;26741:22;;;;;;:::i;:::-;;;;;;;;26651:120::o:0;31024:191::-;31098:16;31117:6;;;;;;;;;;;31098:25;;31143:8;31134:6;;:17;;;;;;;;;;;;;;;;;;31198:8;31167:40;;31188:8;31167:40;;;;;;;;;;;;31087:128;31024:191;:::o;83566:109::-;83626:7;83653;:14;83661:5;83653:14;;;;;;;;;;;;;;;;83646:21;;83566:109;;;:::o;26392:118::-;25355:19;:17;:19::i;:::-;26462:4:::1;26452:7;;:14;;;;;;;;;;;;;;;;;;26482:20;26489:12;:10;:12::i;:::-;26482:20;;;;;;:::i;:::-;;;;;;;;26392:118::o:0;82375:128::-;82421:13;82454:41;82481:13;82454:5;:26;;:41;;;;:::i;:::-;82447:48;;82375:128;:::o;82838:137::-;82887:13;82920:47;82950:16;82920:8;:29;;:47;;;;:::i;:::-;82913:54;;82838:137;:::o;19142:213::-;19232:1;19213:21;;:7;:21;;;19209:93;;19287:1;19258:32;;;;;;;;;;;:::i;:::-;;;;;;;;19209:93;19312:35;19328:1;19332:7;19341:5;19312:7;:35::i;:::-;19142:213;;:::o;83796:402::-;83856:7;84163;:14;84171:5;84163:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;84156:23;;83796:402;;;:::o;81232:178::-;81309:7;81336:66;81369:20;:18;:20::i;:::-;81391:10;81336:32;:66::i;:::-;81329:73;;81232:178;;;:::o;42164:264::-;42249:7;42270:17;42289:18;42309:16;42329:25;42340:4;42346:1;42349;42352;42329:10;:25::i;:::-;42269:85;;;;;;42365:28;42377:5;42384:8;42365:11;:28::i;:::-;42411:9;42404:16;;;;;42164:264;;;;;;:::o;21428:443::-;21558:1;21541:19;;:5;:19;;;21537:91;;21613:1;21584:32;;;;;;;;;;;:::i;:::-;;;;;;;;21537:91;21661:1;21642:21;;:7;:21;;;21638:92;;21715:1;21687:31;;;;;;;;;;;:::i;:::-;;;;;;;;21638:92;21770:5;21740:11;:18;21752:5;21740:18;;;;;;;;;;;;;;;:27;21759:7;21740:27;;;;;;;;;;;;;;;:35;;;;21790:9;21786:78;;;21837:7;21821:31;;21830:5;21821:31;;;21846:5;21821:31;;;;;;:::i;:::-;;;;;;;;21786:78;21428:443;;;;:::o;89201:181::-;89344:30;89358:4;89364:2;89368:5;89344:13;:30::i;:::-;89201:181;;;:::o;80409:::-;80464:7;78325:95;80523:11;80536:14;80552:13;80575:4;80501:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80491:91;;;;;;80484:98;;80409:181;:::o;26118:130::-;26182:8;:6;:8::i;:::-;26177:64;;26214:15;;;;;;;;;;;;;;26177:64;26118:130::o;74590:273::-;74684:13;72536:66;74743:17;;74733:5;74714:46;74710:146;;74784:15;74793:5;74784:8;:15::i;:::-;74777:22;;;;74710:146;74839:5;74832:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74590:273;;;;;:::o;66601:410::-;66694:14;66806:4;66800:11;66837:10;66832:3;66825:23;66885:15;66878:4;66873:3;66869:14;66862:39;66938:10;66931:4;66926:3;66922:14;66915:34;66988:4;66983:3;66973:20;66963:30;;66774:230;66601:410;;;;:::o;40469:1556::-;40600:7;40609:12;40623:7;41543:66;41538:1;41530:10;;:79;41526:166;;;41642:1;41646:30;41678:1;41626:54;;;;;;;;41526:166;41789:14;41806:24;41816:4;41822:1;41825;41828;41806:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41789:41;;41863:1;41845:20;;:6;:20;;;41841:115;;41898:1;41902:29;41941:1;41933:10;;41882:62;;;;;;;;;41841:115;41976:6;41984:20;42014:1;42006:10;;41968:49;;;;;;;40469:1556;;;;;;;;;:::o;42566:542::-;42662:20;42653:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;42649:452;42699:7;42649:452;42760:29;42751:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;42747:354;;42813:23;;;;;;;;;;;;;;42747:354;42867:35;42858:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;42854:247;;42962:8;42954:17;;42926:46;;;;;;;;;;;:::i;:::-;;;;;;;;42854:247;43003:30;42994:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;42990:111;;43080:8;43057:32;;;;;;;;;;;:::i;:::-;;;;;;;;42990:111;42566:542;;;:::o;27881:147::-;25355:19;:17;:19::i;:::-;27990:30:::1;28004:4;28010:2;28014:5;27990:13;:30::i;:::-;27881:147:::0;;;:::o;73245:415::-;73304:13;73330:11;73344:16;73355:4;73344:10;:16::i;:::-;73330:30;;73450:17;73481:2;73470:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73450:34;;73575:3;73570;73563:16;73616:4;73609;73604:3;73600:14;73593:28;73649:3;73642:10;;;;73245:415;;;:::o;17654:1135::-;17760:1;17744:18;;:4;:18;;;17740:552;;17898:5;17882:12;;:21;;;;;;;:::i;:::-;;;;;;;;17740:552;;;17936:19;17958:9;:15;17968:4;17958:15;;;;;;;;;;;;;;;;17936:37;;18006:5;17992:11;:19;17988:117;;;18064:4;18070:11;18083:5;18039:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17988:117;18260:5;18246:11;:19;18228:9;:15;18238:4;18228:15;;;;;;;;;;;;;;;:37;;;;17921:371;17740:552;18322:1;18308:16;;:2;:16;;;18304:435;;18490:5;18474:12;;:21;;;;;;;;;;;18304:435;;;18707:5;18690:9;:13;18700:2;18690:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18304:435;18771:2;18756:25;;18765:4;18756:25;;;18775:5;18756:25;;;;;;:::i;:::-;;;;;;;;17654:1135;;;:::o;73737:251::-;73798:7;73818:14;73871:4;73862;73835:33;;:40;73818:57;;73899:2;73890:6;:11;73886:71;;;73925:20;;;;;;;;;;;;;;73886:71;73974:6;73967:13;;;73737:251;;;:::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:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:77::-;5118:7;5147:5;5136:16;;5081:77;;;:::o;5164:118::-;5251:24;5269:5;5251:24;:::i;:::-;5246:3;5239:37;5164:118;;:::o;5288:222::-;5381:4;5419:2;5408:9;5404:18;5396:26;;5432:71;5500:1;5489:9;5485:17;5476:6;5432:71;:::i;:::-;5288:222;;;;:::o;5516:149::-;5552:7;5592:66;5585:5;5581:78;5570:89;;5516:149;;;:::o;5671:115::-;5756:23;5773:5;5756:23;:::i;:::-;5751:3;5744:36;5671:115;;:::o;5792:118::-;5879:24;5897:5;5879:24;:::i;:::-;5874:3;5867:37;5792:118;;:::o;5916:114::-;5983:6;6017:5;6011:12;6001:22;;5916:114;;;:::o;6036:184::-;6135:11;6169:6;6164:3;6157:19;6209:4;6204:3;6200:14;6185:29;;6036:184;;;;:::o;6226:132::-;6293:4;6316:3;6308:11;;6346:4;6341:3;6337:14;6329:22;;6226:132;;;:::o;6364:108::-;6441:24;6459:5;6441:24;:::i;:::-;6436:3;6429:37;6364:108;;:::o;6478:179::-;6547:10;6568:46;6610:3;6602:6;6568:46;:::i;:::-;6646:4;6641:3;6637:14;6623:28;;6478:179;;;;:::o;6663:113::-;6733:4;6765;6760:3;6756:14;6748:22;;6663:113;;;:::o;6812:732::-;6931:3;6960:54;7008:5;6960:54;:::i;:::-;7030:86;7109:6;7104:3;7030:86;:::i;:::-;7023:93;;7140:56;7190:5;7140:56;:::i;:::-;7219:7;7250:1;7235:284;7260:6;7257:1;7254:13;7235:284;;;7336:6;7330:13;7363:63;7422:3;7407:13;7363:63;:::i;:::-;7356:70;;7449:60;7502:6;7449:60;:::i;:::-;7439:70;;7295:224;7282:1;7279;7275:9;7270:14;;7235:284;;;7239:14;7535:3;7528:10;;6936:608;;;6812:732;;;;:::o;7550:1215::-;7899:4;7937:3;7926:9;7922:19;7914:27;;7951:69;8017:1;8006:9;8002:17;7993:6;7951:69;:::i;:::-;8067:9;8061:4;8057:20;8052:2;8041:9;8037:18;8030:48;8095:78;8168:4;8159:6;8095:78;:::i;:::-;8087:86;;8220:9;8214:4;8210:20;8205:2;8194:9;8190:18;8183:48;8248:78;8321:4;8312:6;8248:78;:::i;:::-;8240:86;;8336:72;8404:2;8393:9;8389:18;8380:6;8336:72;:::i;:::-;8418:73;8486:3;8475:9;8471:19;8462:6;8418:73;:::i;:::-;8501;8569:3;8558:9;8554:19;8545:6;8501:73;:::i;:::-;8622:9;8616:4;8612:20;8606:3;8595:9;8591:19;8584:49;8650:108;8753:4;8744:6;8650:108;:::i;:::-;8642:116;;7550:1215;;;;;;;;;;:::o;8771:222::-;8864:4;8902:2;8891:9;8887:18;8879:26;;8915:71;8983:1;8972:9;8968:17;8959:6;8915:71;:::i;:::-;8771:222;;;;:::o;8999:118::-;9070:22;9086:5;9070:22;:::i;:::-;9063:5;9060:33;9050:61;;9107:1;9104;9097:12;9050:61;8999:118;:::o;9123:135::-;9167:5;9205:6;9192:20;9183:29;;9221:31;9246:5;9221:31;:::i;:::-;9123:135;;;;:::o;9264:122::-;9337:24;9355:5;9337:24;:::i;:::-;9330:5;9327:35;9317:63;;9376:1;9373;9366:12;9317:63;9264:122;:::o;9392:139::-;9438:5;9476:6;9463:20;9454:29;;9492:33;9519:5;9492:33;:::i;:::-;9392:139;;;;:::o;9537:1199::-;9648:6;9656;9664;9672;9680;9688;9696;9745:3;9733:9;9724:7;9720:23;9716:33;9713:120;;;9752:79;;:::i;:::-;9713:120;9872:1;9897:53;9942:7;9933:6;9922:9;9918:22;9897:53;:::i;:::-;9887:63;;9843:117;9999:2;10025:53;10070:7;10061:6;10050:9;10046:22;10025:53;:::i;:::-;10015:63;;9970:118;10127:2;10153:53;10198:7;10189:6;10178:9;10174:22;10153:53;:::i;:::-;10143:63;;10098:118;10255:2;10281:53;10326:7;10317:6;10306:9;10302:22;10281:53;:::i;:::-;10271:63;;10226:118;10383:3;10410:51;10453:7;10444:6;10433:9;10429:22;10410:51;:::i;:::-;10400:61;;10354:117;10510:3;10537:53;10582:7;10573:6;10562:9;10558:22;10537:53;:::i;:::-;10527:63;;10481:119;10639:3;10666:53;10711:7;10702:6;10691:9;10687:22;10666:53;:::i;:::-;10656:63;;10610:119;9537:1199;;;;;;;;;;:::o;10742:474::-;10810:6;10818;10867:2;10855:9;10846:7;10842:23;10838:32;10835:119;;;10873:79;;:::i;:::-;10835:119;10993:1;11018:53;11063:7;11054:6;11043:9;11039:22;11018:53;:::i;:::-;11008:63;;10964:117;11120:2;11146:53;11191:7;11182:6;11171:9;11167:22;11146:53;:::i;:::-;11136:63;;11091:118;10742:474;;;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:320;11452:6;11489:1;11483:4;11479:12;11469:22;;11536:1;11530:4;11526:12;11557:18;11547:81;;11613:4;11605:6;11601:17;11591:27;;11547:81;11675:2;11667:6;11664:14;11644:18;11641:38;11638:84;;11694:18;;:::i;:::-;11638:84;11459:269;11408:320;;;:::o;11734:180::-;11782:77;11779:1;11772:88;11879:4;11876:1;11869:15;11903:4;11900:1;11893:15;11920:775;12153:4;12191:3;12180:9;12176:19;12168:27;;12205:71;12273:1;12262:9;12258:17;12249:6;12205:71;:::i;:::-;12286:72;12354:2;12343:9;12339:18;12330:6;12286:72;:::i;:::-;12368;12436:2;12425:9;12421:18;12412:6;12368:72;:::i;:::-;12450;12518:2;12507:9;12503:18;12494:6;12450:72;:::i;:::-;12532:73;12600:3;12589:9;12585:19;12576:6;12532:73;:::i;:::-;12615;12683:3;12672:9;12668:19;12659:6;12615:73;:::i;:::-;11920:775;;;;;;;;;:::o;12701:332::-;12822:4;12860:2;12849:9;12845:18;12837:26;;12873:71;12941:1;12930:9;12926:17;12917:6;12873:71;:::i;:::-;12954:72;13022:2;13011:9;13007:18;12998:6;12954:72;:::i;:::-;12701:332;;;;;:::o;13039:442::-;13188:4;13226:2;13215:9;13211:18;13203:26;;13239:71;13307:1;13296:9;13292:17;13283:6;13239:71;:::i;:::-;13320:72;13388:2;13377:9;13373:18;13364:6;13320:72;:::i;:::-;13402;13470:2;13459:9;13455:18;13446:6;13402:72;:::i;:::-;13039:442;;;;;;:::o;13487:664::-;13692:4;13730:3;13719:9;13715:19;13707:27;;13744:71;13812:1;13801:9;13797:17;13788:6;13744:71;:::i;:::-;13825:72;13893:2;13882:9;13878:18;13869:6;13825:72;:::i;:::-;13907;13975:2;13964:9;13960:18;13951:6;13907:72;:::i;:::-;13989;14057:2;14046:9;14042:18;14033:6;13989:72;:::i;:::-;14071:73;14139:3;14128:9;14124:19;14115:6;14071:73;:::i;:::-;13487:664;;;;;;;;:::o;14157:545::-;14330:4;14368:3;14357:9;14353:19;14345:27;;14382:71;14450:1;14439:9;14435:17;14426:6;14382:71;:::i;:::-;14463:68;14527:2;14516:9;14512:18;14503:6;14463:68;:::i;:::-;14541:72;14609:2;14598:9;14594:18;14585:6;14541:72;:::i;:::-;14623;14691:2;14680:9;14676:18;14667:6;14623:72;:::i;:::-;14157:545;;;;;;;:::o;14708:180::-;14756:77;14753:1;14746:88;14853:4;14850:1;14843:15;14877:4;14874:1;14867:15;14894:180;14942:77;14939:1;14932:88;15039:4;15036:1;15029:15;15063:4;15060:1;15053:15;15080:191;15120:3;15139:20;15157:1;15139:20;:::i;:::-;15134:25;;15173:20;15191:1;15173:20;:::i;:::-;15168:25;;15216:1;15213;15209:9;15202:16;;15237:3;15234:1;15231:10;15228:36;;;15244:18;;:::i;:::-;15228:36;15080:191;;;;:::o
Swarm Source
ipfs://fc84b3ecd32a8b8de7cf49f4c49cea5c61ad9148b07395762d9004f964e7b82b
Loading...
Loading
Loading...
Loading
OVERVIEW
This is a native USDC token launched on Polkadot.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.