ERC-721
Overview
Max Total Supply
867 FORBES
Holders
867
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FORBESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LegacyPass
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* Forbes Legacy Pass Sale Agreement applies: https://www.forbes.com/terms/legacy-pass-sale/ */ pragma solidity ^0.8.20; import { ERC721Enumerable } from '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import { ERC721 } from '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import { IERC721 } from '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import { ERC721Pausable } from '@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol'; import { ERC721URIStorage } from '@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol'; import { Ownable } from '@openzeppelin/contracts/access/Ownable.sol'; import { Strings } from '@openzeppelin/contracts/utils/Strings.sol'; import { Address } from '@openzeppelin/contracts/utils/Address.sol'; import { ReentrancyGuard } from '@openzeppelin/contracts/utils/ReentrancyGuard.sol'; import { AccessControl } from '@openzeppelin/contracts/access/AccessControl.sol'; import { ERC5192 } from './ERC5192.sol'; contract LegacyPass is ERC721, ERC721Enumerable, ERC721URIStorage, ERC721Pausable, ERC5192, Ownable, ReentrancyGuard, AccessControl { using Address for address; uint256 public immutable MAX_SUPPLY = 1917; uint256 public immutable PRICE = 0.33 ether; bytes32 public constant MINTER_ROLE = keccak256('MINTER_ROLE'); mapping(address => bool) allowlist; enum Stage { Initial, Private, Public } Stage public currentStage = Stage.Initial; string private baseURI; string private _contractURI; constructor() ERC5192('Forbes Legacy Pass', 'FORBES', true) Ownable(msg.sender) { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); } function setContractURI(string memory contractURI_) external onlyOwner { _contractURI = contractURI_; } function contractURI() public view returns (string memory) { return _contractURI; } function _increaseBalance(address account, uint128 value) internal override(ERC721, ERC721Enumerable) { super._increaseBalance(account, value); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return string(abi.encodePacked(_baseURI(), Strings.toString(tokenId), '.json')); } function supportsInterface( bytes4 interfaceId ) public view override(ERC721, ERC721Enumerable, ERC721URIStorage, ERC5192, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function _update( address to, uint256 tokenId, address auth ) internal override(ERC721, ERC721Enumerable, ERC721Pausable) returns (address) { require(auth == address(0), 'This token is Soulbound Token, cannot be transferred'); return super._update(to, tokenId, auth); } function nextStage() external onlyOwner { require(currentStage != Stage.Public, 'All stages have been completed'); if (currentStage == Stage.Initial) { currentStage = Stage.Private; } else if (currentStage == Stage.Private) { currentStage = Stage.Public; } } function mint() external payable whenNotPaused { require(currentStage != Stage.Initial, 'Current stage is Initial stage, minting is not allowed in this stage'); require( balanceOf(msg.sender) == 0, 'This wallet already has an Legacy Pass, only one Legacy Pass per wallet is allowed' ); if (currentStage == Stage.Private) { require(allowlist[msg.sender], 'Current stage is Private stage, only allowlisted wallets can mint in this stage'); require(totalSupply() < MAX_SUPPLY - 20, 'Maximum NFTs have been minted in the private stage'); } require(totalSupply() < MAX_SUPPLY, 'All NFTs have been minted'); require(msg.value == PRICE, 'Invalid payment amount, Price is 0.33 ether'); _safeMint(msg.sender, totalSupply() + 1); } function mint(address _userWallet, uint256) external payable whenNotPaused onlyRole(MINTER_ROLE) { require(_userWallet != address(0), 'Invalid wallet address'); require(currentStage != Stage.Initial, 'Current stage is Initial stage, minting is not allowed in this stage'); require( balanceOf(_userWallet) == 0, 'This wallet already has an Legacy Pass, only one Legacy Pass per wallet is allowed' ); if (currentStage == Stage.Private) { require( allowlist[_userWallet], 'Current stage is Private stage, only allowlisted wallets can mint in this stage' ); require(totalSupply() < MAX_SUPPLY - 20, 'Maximum NFTs have been minted in the private stage'); } require(totalSupply() < MAX_SUPPLY, 'All NFTs have been minted'); _safeMint(_userWallet, totalSupply() + 1); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } function addToAllowlist(address[] memory wallets) external onlyOwner { for (uint256 i = 0; i < wallets.length; i++) { allowlist[wallets[i]] = true; } } function removeFromAllowlist(address[] memory wallets) external onlyOwner { for (uint256 i = 0; i < wallets.length; i++) { allowlist[wallets[i]] = false; } } function airdropToWallets(address[] memory wallets) external onlyOwner { require(totalSupply() + wallets.length <= MAX_SUPPLY, 'Wallets length exceeds the maximum supply'); uint256 tokenId = totalSupply(); for (uint256 i = 0; i < wallets.length; i++) { if (balanceOf(wallets[i]) > 0) { continue; } tokenId += 1; _safeMint(wallets[i], tokenId); } } function isSoldOut() external view returns (bool) { uint256 totalSupply = totalSupply(); if (currentStage == Stage.Private) { return totalSupply == MAX_SUPPLY - 20; } return totalSupply == MAX_SUPPLY; } function isAllowList(address _wallet) external view returns (bool) { return allowlist[_wallet]; } function withdraw(uint256 _value) external nonReentrant onlyOwner { Address.sendValue(payable(msg.sender), _value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * 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); } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC4906.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; import {IERC721} from "./IERC721.sol"; /// @title EIP-721 Metadata Update Extension interface IERC4906 is IERC165, IERC721 { /// @dev This event emits when the metadata of a token is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFT. event MetadataUpdate(uint256 _tokenId); /// @dev This event emits when the metadata of a range of tokens is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC721.sol) pragma solidity ^0.8.20; import {IERC721} from "../token/ERC721/IERC721.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; import {IERC721} from "./IERC721.sol"; import {IERC721Receiver} from "./IERC721Receiver.sol"; import {IERC721Metadata} from "./extensions/IERC721Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {Strings} from "../../utils/Strings.sol"; import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol"; import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.20; import {ERC721} from "../ERC721.sol"; import {IERC721Enumerable} from "./IERC721Enumerable.sol"; import {IERC165} from "../../../utils/introspection/ERC165.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability * of all the token ids in the contract as well as all token ids owned by each account. * * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`, * interfere with enumerability and should not be used together with `ERC721Enumerable`. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens; mapping(uint256 tokenId => uint256) private _ownedTokensIndex; uint256[] private _allTokens; mapping(uint256 tokenId => uint256) private _allTokensIndex; /** * @dev An `owner`'s token query was out of bounds for `index`. * * NOTE: The owner being `address(0)` indicates a global out of bounds index. */ error ERC721OutOfBoundsIndex(address owner, uint256 index); /** * @dev Batch mint is not allowed. */ error ERC721EnumerableForbiddenBatchMint(); /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) { if (index >= balanceOf(owner)) { revert ERC721OutOfBoundsIndex(owner, index); } return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual returns (uint256) { if (index >= totalSupply()) { revert ERC721OutOfBoundsIndex(address(0), index); } return _allTokens[index]; } /** * @dev See {ERC721-_update}. */ function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) { address previousOwner = super._update(to, tokenId, auth); if (previousOwner == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (previousOwner != to) { _removeTokenFromOwnerEnumeration(previousOwner, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (previousOwner != to) { _addTokenToOwnerEnumeration(to, tokenId); } return previousOwner; } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = balanceOf(to) - 1; _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = balanceOf(from); uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } /** * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch */ function _increaseBalance(address account, uint128 amount) internal virtual override { if (amount > 0) { revert ERC721EnumerableForbiddenBatchMint(); } super._increaseBalance(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Pausable.sol) pragma solidity ^0.8.20; import {ERC721} from "../ERC721.sol"; import {Pausable} from "../../../utils/Pausable.sol"; /** * @dev ERC721 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 ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_update}. * * Requirements: * * - the contract must not be paused. */ function _update( address to, uint256 tokenId, address auth ) internal virtual override whenNotPaused returns (address) { return super._update(to, tokenId, auth); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.20; import {ERC721} from "../ERC721.sol"; import {Strings} from "../../../utils/Strings.sol"; import {IERC4906} from "../../../interfaces/IERC4906.sol"; import {IERC165} from "../../../interfaces/IERC165.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is IERC4906, ERC721 { using Strings for uint256; // Interface ID as defined in ERC-4906. This does not correspond to a traditional interface ID as ERC-4906 only // defines events and does not include any external function. bytes4 private constant ERC4906_INTERFACE_ID = bytes4(0x49064906); // Optional mapping for token URIs mapping(uint256 tokenId => string) private _tokenURIs; /** * @dev See {IERC165-supportsInterface} */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) { return interfaceId == ERC4906_INTERFACE_ID || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireOwned(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via string.concat). if (bytes(_tokenURI).length > 0) { return string.concat(base, _tokenURI); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Emits {MetadataUpdate}. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { _tokenURIs[tokenId] = _tokenURI; emit MetadataUpdate(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.20; import {IERC721} from "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; import {IERC721} from "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or * {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @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)); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.20; import { ERC721Enumerable } from '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import { ERC721 } from '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import { IERC721 } from '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import { IERC5192 } from './IERC5192.sol'; abstract contract ERC5192 is ERC721Enumerable, IERC5192 { bool private immutable isLocked; error ErrLocked(); error ErrNotFound(); constructor(string memory _name, string memory _symbol, bool _isLocked) ERC721(_name, _symbol) { isLocked = _isLocked; } modifier checkLock() { if (isLocked) revert ErrLocked(); _; } function locked(uint256 tokenId) external view returns (bool) { if (_ownerOf(tokenId) == address(0)) revert ErrNotFound(); return isLocked; } function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC5192).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: CC0-1.0 pragma solidity ^0.8.20; interface IERC5192 { /// @notice Emitted when the locking status is changed to locked. /// @dev If a token is minted and the status is locked, this event should be emitted. /// @param tokenId The identifier for a token. event Locked(uint256 tokenId); /// @notice Emitted when the locking status is changed to unlocked. /// @dev If a token is minted and the status is unlocked, this event should be emitted. /// @param tokenId The identifier for a token. event Unlocked(uint256 tokenId); /// @notice Returns the locking status of an Soulbound Token /// @dev SBTs assigned to zero address are considered invalid, and queries /// about them do throw. /// @param tokenId The identifier for an SBT. function locked(uint256 tokenId) external view returns (bool); }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ErrLocked","type":"error"},{"inputs":[],"name":"ErrNotFound","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"FailedInnerCall","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":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"addToAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"airdropToWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStage","outputs":[{"internalType":"enum LegacyPass.Stage","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"isAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_userWallet","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","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":"wallets","type":"address[]"}],"name":"removeFromAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"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"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405261077d60a090815250670494654067e1000060c0908152506000600f60006101000a81548160ff0219169083600281111562000045576200004462000401565b5b02179055503480156200005757600080fd5b50336040518060400160405280601281526020017f466f72626573204c6567616379205061737300000000000000000000000000008152506040518060400160405280600681526020017f464f524245530000000000000000000000000000000000000000000000000000815250600182828160009081620000da9190620006aa565b508060019081620000ec9190620006aa565b5050506000600b60006101000a81548160ff021916908315150217905550801515608081151581525050505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200018e5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001859190620007d6565b60405180910390fd5b6200019f81620001c460201b60201c565b506001600c81905550620001bd6000801b336200028a60201b60201c565b50620007f3565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006200029e83836200038e60201b60201c565b62000383576001600d600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031f620003f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001905062000388565b600090505b92915050565b6000600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b257607f821691505b602082108103620004c857620004c76200046a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f3565b6200053e8683620004f3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200058b620005856200057f8462000556565b62000560565b62000556565b9050919050565b6000819050919050565b620005a7836200056a565b620005bf620005b68262000592565b84845462000500565b825550505050565b600090565b620005d6620005c7565b620005e38184846200059c565b505050565b5b818110156200060b57620005ff600082620005cc565b600181019050620005e9565b5050565b601f8211156200065a576200062481620004ce565b6200062f84620004e3565b810160208510156200063f578190505b620006576200064e85620004e3565b830182620005e8565b50505b505050565b600082821c905092915050565b60006200067f600019846008026200065f565b1980831691505092915050565b60006200069a83836200066c565b9150826002028217905092915050565b620006b58262000430565b67ffffffffffffffff811115620006d157620006d06200043b565b5b620006dd825462000499565b620006ea8282856200060f565b600060209050601f8311600181146200072257600084156200070d578287015190505b6200071985826200068c565b86555062000789565b601f1984166200073286620004ce565b60005b828110156200075c5784890151825560018201915060208501945060208101905062000735565b868310156200077c578489015162000778601f8916826200066c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007be8262000791565b9050919050565b620007d081620007b1565b82525050565b6000602082019050620007ed6000830184620007c5565b92915050565b60805160a05160c051614fff6200085b60003960008181610f3001526118be015260008181610b2001528181610e5301528181610ec70152818161112a0152818161115f015281816112790152818161155501526115c901526000611ab00152614fff6000f3fe6080604052600436106102725760003560e01c80635bf5d54c1161014f578063a217fddf116100c1578063d547741f1161007a578063d547741f14610932578063e8a3d4851461095b578063e985e9c514610986578063ee3743ab146109c3578063f2fde38b146109da578063f5964e0814610a0357610272565b8063a217fddf14610810578063a22cb4651461083b578063b45a3c0e14610864578063b88d4fde146108a1578063c87b56dd146108ca578063d53913931461090757610272565b80638456cb59116101135780638456cb59146107125780638d859f3e146107295780638da5cb5b1461075457806391d148541461077f578063938e3d7b146107bc57806395d89b41146107e557610272565b80635bf5d54c1461062b5780635c975abb146106565780636352211e1461068157806370a08231146106be578063715018a6146106fb57610272565b80632e1a7d4d116101e85780633f4ba83a116101ac5780633f4ba83a1461054057806340c10f191461055757806342842e0e146105735780634f6ccce71461059c5780635207c273146105d957806355f804b31461060257610272565b80632e1a7d4d1461045d5780632f2ff15d146104865780632f745c59146104af57806332cb6b0c146104ec57806336568abe1461051757610272565b8063104b6cb71161023a578063104b6cb71461036e5780631249c58b1461039757806318160ddd146103a157806323b872dd146103cc578063248a9ca3146103f55780632da5ea171461043257610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630e57241814610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613aba565b610a40565b6040516102ab9190613b02565b60405180910390f35b3480156102c057600080fd5b506102c9610a52565b6040516102d69190613bad565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c05565b610ae4565b6040516103139190613c73565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613cba565b610b00565b005b34801561035157600080fd5b5061036c60048036038101906103679190613e42565b610b16565b005b34801561037a57600080fd5b5061039560048036038101906103909190613e42565b610c22565b005b61039f610cbf565b005b3480156103ad57600080fd5b506103b6610faf565b6040516103c39190613e9a565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613eb5565b610fbc565b005b34801561040157600080fd5b5061041c60048036038101906104179190613f3e565b6110be565b6040516104299190613f7a565b60405180910390f35b34801561043e57600080fd5b506104476110de565b6040516104549190613b02565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190613c05565b611187565b005b34801561049257600080fd5b506104ad60048036038101906104a89190613f95565b6111ac565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190613cba565b6111ce565b6040516104e39190613e9a565b60405180910390f35b3480156104f857600080fd5b50610501611277565b60405161050e9190613e9a565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613f95565b61129b565b005b34801561054c57600080fd5b50610555611316565b005b610571600480360381019061056c9190613cba565b611328565b005b34801561057f57600080fd5b5061059a60048036038101906105959190613eb5565b611652565b005b3480156105a857600080fd5b506105c360048036038101906105be9190613c05565b611672565b6040516105d09190613e9a565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613e42565b6116e8565b005b34801561060e57600080fd5b506106296004803603810190610624919061408a565b611785565b005b34801561063757600080fd5b506106406117a0565b60405161064d919061414a565b60405180910390f35b34801561066257600080fd5b5061066b6117b3565b6040516106789190613b02565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613c05565b6117ca565b6040516106b59190613c73565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190614165565b6117dc565b6040516106f29190613e9a565b60405180910390f35b34801561070757600080fd5b50610710611896565b005b34801561071e57600080fd5b506107276118aa565b005b34801561073557600080fd5b5061073e6118bc565b60405161074b9190613e9a565b60405180910390f35b34801561076057600080fd5b506107696118e0565b6040516107769190613c73565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190613f95565b61190a565b6040516107b39190613b02565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de919061408a565b611975565b005b3480156107f157600080fd5b506107fa611990565b6040516108079190613bad565b60405180910390f35b34801561081c57600080fd5b50610825611a22565b6040516108329190613f7a565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906141be565b611a29565b005b34801561087057600080fd5b5061088b60048036038101906108869190613c05565b611a3f565b6040516108989190613b02565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c3919061429f565b611ad6565b005b3480156108d657600080fd5b506108f160048036038101906108ec9190613c05565b611af3565b6040516108fe9190613bad565b60405180910390f35b34801561091357600080fd5b5061091c611b2d565b6040516109299190613f7a565b60405180910390f35b34801561093e57600080fd5b5061095960048036038101906109549190613f95565b611b51565b005b34801561096757600080fd5b50610970611b73565b60405161097d9190613bad565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a89190614322565b611c05565b6040516109ba9190613b02565b60405180910390f35b3480156109cf57600080fd5b506109d8611c99565b005b3480156109e657600080fd5b50610a0160048036038101906109fc9190614165565b611deb565b005b348015610a0f57600080fd5b50610a2a6004803603810190610a259190614165565b611e71565b604051610a379190613b02565b60405180910390f35b6000610a4b82611ec7565b9050919050565b606060008054610a6190614391565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90614391565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610aef82611f41565b50610af982611fc9565b9050919050565b610b128282610b0d612006565b61200e565b5050565b610b1e612020565b7f00000000000000000000000000000000000000000000000000000000000000008151610b49610faf565b610b5391906143f1565b1115610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614497565b60405180910390fd5b6000610b9e610faf565b905060005b8251811015610c1d576000610bd1848381518110610bc457610bc36144b7565b5b60200260200101516117dc565b11610c0a57600182610be391906143f1565b9150610c09838281518110610bfb57610bfa6144b7565b5b6020026020010151836120a7565b5b8080610c15906144e6565b915050610ba3565b505050565b610c2a612020565b60005b8151811015610cbb576000600e6000848481518110610c4f57610c4e6144b7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cb3906144e6565b915050610c2d565b5050565b610cc76120c5565b60006002811115610cdb57610cda6140d3565b5b600f60009054906101000a900460ff166002811115610cfd57610cfc6140d3565b5b03610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d34906145c6565b60405180910390fd5b6000610d48336117dc565b14610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f9061467e565b60405180910390fd5b60016002811115610d9c57610d9b6140d3565b5b600f60009054906101000a900460ff166002811115610dbe57610dbd6140d3565b5b03610ec557600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690614736565b60405180910390fd5b60147f0000000000000000000000000000000000000000000000000000000000000000610e7c9190614756565b610e84610faf565b10610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906147fc565b60405180910390fd5b5b7f0000000000000000000000000000000000000000000000000000000000000000610eee610faf565b10610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614868565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000003414610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f87906148fa565b60405180910390fd5b610fad336001610f9e610faf565b610fa891906143f1565b6120a7565b565b6000600880549050905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102e5760006040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016110259190613c73565b60405180910390fd5b6000611042838361103d612006565b612106565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110b8578382826040517f64283d7b0000000000000000000000000000000000000000000000000000000081526004016110af9392919061491a565b60405180910390fd5b50505050565b6000600d6000838152602001908152602001600020600101549050919050565b6000806110e9610faf565b9050600160028111156110ff576110fe6140d3565b5b600f60009054906101000a900460ff166002811115611121576111206140d3565b5b0361115d5760147f00000000000000000000000000000000000000000000000000000000000000006111539190614756565b8114915050611184565b7f000000000000000000000000000000000000000000000000000000000000000081149150505b90565b61118f61218a565b611197612020565b6111a133826121d0565b6111a96122bd565b50565b6111b5826110be565b6111be816122c7565b6111c883836122db565b50505050565b60006111d9836117dc565b821061121e5782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401611215929190614951565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112a3612006565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611307576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61131182826123cd565b505050565b61131e612020565b6113266124c0565b565b6113306120c5565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661135a816122c7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906149c6565b60405180910390fd5b600060028111156113dd576113dc6140d3565b5b600f60009054906101000a900460ff1660028111156113ff576113fe6140d3565b5b0361143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906145c6565b60405180910390fd5b600061144a846117dc565b1461148a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114819061467e565b60405180910390fd5b6001600281111561149e5761149d6140d3565b5b600f60009054906101000a900460ff1660028111156114c0576114bf6140d3565b5b036115c757600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890614736565b60405180910390fd5b60147f000000000000000000000000000000000000000000000000000000000000000061157e9190614756565b611586610faf565b106115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906147fc565b60405180910390fd5b5b7f00000000000000000000000000000000000000000000000000000000000000006115f0610faf565b10611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790614868565b60405180910390fd5b61164d83600161163e610faf565b61164891906143f1565b6120a7565b505050565b61166d83838360405180602001604052806000815250611ad6565b505050565b600061167c610faf565b82106116c2576000826040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526004016116b9929190614951565b60405180910390fd5b600882815481106116d6576116d56144b7565b5b90600052602060002001549050919050565b6116f0612020565b60005b8151811015611781576001600e6000848481518110611715576117146144b7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611779906144e6565b9150506116f3565b5050565b61178d612020565b806010908161179c9190614b92565b5050565b600f60009054906101000a900460ff1681565b6000600b60009054906101000a900460ff16905090565b60006117d582611f41565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184f5760006040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016118469190613c73565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61189e612020565b6118a86000612523565b565b6118b2612020565b6118ba6125e9565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61197d612020565b806011908161198c9190614b92565b5050565b60606001805461199f90614391565b80601f01602080910402602001604051908101604052809291908181526020018280546119cb90614391565b8015611a185780601f106119ed57610100808354040283529160200191611a18565b820191906000526020600020905b8154815290600101906020018083116119fb57829003601f168201915b5050505050905090565b6000801b81565b611a3b611a34612006565b838361264c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a61836127bb565b73ffffffffffffffffffffffffffffffffffffffff1603611aae576040517fae9a63f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000009050919050565b611ae1848484610fbc565b611aed848484846127f8565b50505050565b6060611afd6129af565b611b0683612a41565b604051602001611b17929190614cec565b6040516020818303038152906040529050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611b5a826110be565b611b63816122c7565b611b6d83836123cd565b50505050565b606060118054611b8290614391565b80601f0160208091040260200160405190810160405280929190818152602001828054611bae90614391565b8015611bfb5780601f10611bd057610100808354040283529160200191611bfb565b820191906000526020600020905b815481529060010190602001808311611bde57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ca1612020565b600280811115611cb457611cb36140d3565b5b600f60009054906101000a900460ff166002811115611cd657611cd56140d3565b5b03611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90614d67565b60405180910390fd5b60006002811115611d2a57611d296140d3565b5b600f60009054906101000a900460ff166002811115611d4c57611d4b6140d3565b5b03611d81576001600f60006101000a81548160ff02191690836002811115611d7757611d766140d3565b5b0217905550611de9565b60016002811115611d9557611d946140d3565b5b600f60009054906101000a900460ff166002811115611db757611db66140d3565b5b03611de8576002600f60006101000a81548160ff02191690836002811115611de257611de16140d3565b5b02179055505b5b565b611df3612020565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e655760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611e5c9190613c73565b60405180910390fd5b611e6e81612523565b50565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f3a5750611f3982612b0f565b5b9050919050565b600080611f4d836127bb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc057826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611fb79190613e9a565b60405180910390fd5b80915050919050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600033905090565b61201b8383836001612b89565b505050565b612028612006565b73ffffffffffffffffffffffffffffffffffffffff166120466118e0565b73ffffffffffffffffffffffffffffffffffffffff16146120a557612069612006565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161209c9190613c73565b60405180910390fd5b565b6120c1828260405180602001604052806000815250612d4e565b5050565b6120cd6117b3565b15612104576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614df9565b60405180910390fd5b612181848484612d6a565b90509392505050565b6002600c54036121c6576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600c81905550565b8047101561221557306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161220c9190613c73565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161223b90614e4a565b60006040518083038185875af1925050503d8060008114612278576040519150601f19603f3d011682016040523d82523d6000602084013e61227d565b606091505b50509050806122b8576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600c81905550565b6122d8816122d3612006565b612d88565b50565b60006122e7838361190a565b6123c2576001600d600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061235f612006565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4600190506123c7565b600090505b92915050565b60006123d9838361190a565b156124b5576000600d600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612452612006565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a4600190506124ba565b600090505b92915050565b6124c8612dd9565b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61250c612006565b6040516125199190613c73565b60405180910390a1565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125f16120c5565b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612635612006565b6040516126429190613c73565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126bd57816040517f5b08ba180000000000000000000000000000000000000000000000000000000081526004016126b49190613c73565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127ae9190613b02565b60405180910390a3505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff163b11156129a9578273ffffffffffffffffffffffffffffffffffffffff1663150b7a0261283c612006565b8685856040518563ffffffff1660e01b815260040161285e9493929190614eb4565b6020604051808303816000875af192505050801561289a57506040513d601f19601f820116820180604052508101906128979190614f15565b60015b61291e573d80600081146128ca576040519150601f19603f3d011682016040523d82523d6000602084013e6128cf565b606091505b50600081510361291657836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161290d9190613c73565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129a757836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161299e9190613c73565b60405180910390fd5b505b50505050565b6060601080546129be90614391565b80601f01602080910402602001604051908101604052809291908181526020018280546129ea90614391565b8015612a375780601f10612a0c57610100808354040283529160200191612a37565b820191906000526020600020905b815481529060010190602001808311612a1a57829003601f168201915b5050505050905090565b606060006001612a5084612e19565b01905060008167ffffffffffffffff811115612a6f57612a6e613cff565b5b6040519080825280601f01601f191660200182016040528015612aa15781602001600182028036833780820191505090505b509050600082602001820190505b600115612b04578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612af857612af7614f42565b5b04945060008503612aaf575b819350505050919050565b60007fb45a3c0e000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b825750612b8182612f6c565b5b9050919050565b8080612bc25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612cf6576000612bd284611f41565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3d57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015612c505750612c4e8184611c05565b155b15612c9257826040517fa9fbf51f000000000000000000000000000000000000000000000000000000008152600401612c899190613c73565b60405180910390fd5b8115612cf457838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b836004600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b612d588383612fcd565b612d6560008484846127f8565b505050565b6000612d746120c5565b612d7f8484846130c6565b90509392505050565b612d92828261190a565b612dd55780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401612dcc929190614f71565b60405180910390fd5b5050565b612de16117b3565b612e17576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612e77577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612e6d57612e6c614f42565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612eb4576d04ee2d6d415b85acef81000000008381612eaa57612ea9614f42565b5b0492506020810190505b662386f26fc100008310612ee357662386f26fc100008381612ed957612ed8614f42565b5b0492506010810190505b6305f5e1008310612f0c576305f5e1008381612f0257612f01614f42565b5b0492506008810190505b6127108310612f31576127108381612f2757612f26614f42565b5b0492506004810190505b60648310612f545760648381612f4a57612f49614f42565b5b0492506002810190505b600a8310612f63576001810190505b80915050919050565b6000634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612fc65750612fc5826131e3565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361303f5760006040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016130369190613c73565b60405180910390fd5b600061304d83836000612106565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146130c15760006040517f73c6ac6e0000000000000000000000000000000000000000000000000000000081526004016130b89190613c73565b60405180910390fd5b505050565b6000806130d485858561325d565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036131185761311384613477565b613157565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146131565761315581856134c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036131995761319484613621565b6131d8565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146131d7576131d685856136f2565b5b5b809150509392505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061325657506132558261377d565b5b9050919050565b600080613269846127bb565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132ab576132aa81848661385f565b5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461333c576132ed600085600080612b89565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146133bf576001600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b846002600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006134cb836117dc565b90506000600760008481526020019081526020016000205490508181146135b0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136359190614756565b9050600060096000848152602001908152602001600020549050600060088381548110613665576136646144b7565b5b906000526020600020015490508060088381548110613687576136866144b7565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136d6576136d5614f9a565b5b6001900381819060005260206000200160009055905550505050565b600060016136ff846117dc565b6137099190614756565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061384857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613858575061385782613923565b5b9050919050565b61386a83838361398d565b61391e57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036138df57806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016138d69190613e9a565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401613915929190614951565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a4557508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613a065750613a058484611c05565b5b80613a4457508273ffffffffffffffffffffffffffffffffffffffff16613a2c83611fc9565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a9781613a62565b8114613aa257600080fd5b50565b600081359050613ab481613a8e565b92915050565b600060208284031215613ad057613acf613a58565b5b6000613ade84828501613aa5565b91505092915050565b60008115159050919050565b613afc81613ae7565b82525050565b6000602082019050613b176000830184613af3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b57578082015181840152602081019050613b3c565b60008484015250505050565b6000601f19601f8301169050919050565b6000613b7f82613b1d565b613b898185613b28565b9350613b99818560208601613b39565b613ba281613b63565b840191505092915050565b60006020820190508181036000830152613bc78184613b74565b905092915050565b6000819050919050565b613be281613bcf565b8114613bed57600080fd5b50565b600081359050613bff81613bd9565b92915050565b600060208284031215613c1b57613c1a613a58565b5b6000613c2984828501613bf0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5d82613c32565b9050919050565b613c6d81613c52565b82525050565b6000602082019050613c886000830184613c64565b92915050565b613c9781613c52565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613a58565b5b6000613cdf85828601613ca5565b9250506020613cf085828601613bf0565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d3782613b63565b810181811067ffffffffffffffff82111715613d5657613d55613cff565b5b80604052505050565b6000613d69613a4e565b9050613d758282613d2e565b919050565b600067ffffffffffffffff821115613d9557613d94613cff565b5b602082029050602081019050919050565b600080fd5b6000613dbe613db984613d7a565b613d5f565b90508083825260208201905060208402830185811115613de157613de0613da6565b5b835b81811015613e0a5780613df68882613ca5565b845260208401935050602081019050613de3565b5050509392505050565b600082601f830112613e2957613e28613cfa565b5b8135613e39848260208601613dab565b91505092915050565b600060208284031215613e5857613e57613a58565b5b600082013567ffffffffffffffff811115613e7657613e75613a5d565b5b613e8284828501613e14565b91505092915050565b613e9481613bcf565b82525050565b6000602082019050613eaf6000830184613e8b565b92915050565b600080600060608486031215613ece57613ecd613a58565b5b6000613edc86828701613ca5565b9350506020613eed86828701613ca5565b9250506040613efe86828701613bf0565b9150509250925092565b6000819050919050565b613f1b81613f08565b8114613f2657600080fd5b50565b600081359050613f3881613f12565b92915050565b600060208284031215613f5457613f53613a58565b5b6000613f6284828501613f29565b91505092915050565b613f7481613f08565b82525050565b6000602082019050613f8f6000830184613f6b565b92915050565b60008060408385031215613fac57613fab613a58565b5b6000613fba85828601613f29565b9250506020613fcb85828601613ca5565b9150509250929050565b600080fd5b600067ffffffffffffffff821115613ff557613ff4613cff565b5b613ffe82613b63565b9050602081019050919050565b82818337600083830152505050565b600061402d61402884613fda565b613d5f565b90508281526020810184848401111561404957614048613fd5565b5b61405484828561400b565b509392505050565b600082601f83011261407157614070613cfa565b5b813561408184826020860161401a565b91505092915050565b6000602082840312156140a05761409f613a58565b5b600082013567ffffffffffffffff8111156140be576140bd613a5d565b5b6140ca8482850161405c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110614113576141126140d3565b5b50565b600081905061412482614102565b919050565b600061413482614116565b9050919050565b61414481614129565b82525050565b600060208201905061415f600083018461413b565b92915050565b60006020828403121561417b5761417a613a58565b5b600061418984828501613ca5565b91505092915050565b61419b81613ae7565b81146141a657600080fd5b50565b6000813590506141b881614192565b92915050565b600080604083850312156141d5576141d4613a58565b5b60006141e385828601613ca5565b92505060206141f4858286016141a9565b9150509250929050565b600067ffffffffffffffff82111561421957614218613cff565b5b61422282613b63565b9050602081019050919050565b600061424261423d846141fe565b613d5f565b90508281526020810184848401111561425e5761425d613fd5565b5b61426984828561400b565b509392505050565b600082601f83011261428657614285613cfa565b5b813561429684826020860161422f565b91505092915050565b600080600080608085870312156142b9576142b8613a58565b5b60006142c787828801613ca5565b94505060206142d887828801613ca5565b93505060406142e987828801613bf0565b925050606085013567ffffffffffffffff81111561430a57614309613a5d565b5b61431687828801614271565b91505092959194509250565b6000806040838503121561433957614338613a58565b5b600061434785828601613ca5565b925050602061435885828601613ca5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143a957607f821691505b6020821081036143bc576143bb614362565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143fc82613bcf565b915061440783613bcf565b925082820190508082111561441f5761441e6143c2565b5b92915050565b7f57616c6c657473206c656e677468206578636565647320746865206d6178696d60008201527f756d20737570706c790000000000000000000000000000000000000000000000602082015250565b6000614481602983613b28565b915061448c82614425565b604082019050919050565b600060208201905081810360008301526144b081614474565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006144f182613bcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614523576145226143c2565b5b600182019050919050565b7f43757272656e7420737461676520697320496e697469616c2073746167652c2060008201527f6d696e74696e67206973206e6f7420616c6c6f77656420696e2074686973207360208201527f7461676500000000000000000000000000000000000000000000000000000000604082015250565b60006145b0604483613b28565b91506145bb8261452e565b606082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b7f546869732077616c6c657420616c72656164792068617320616e204c6567616360008201527f7920506173732c206f6e6c79206f6e65204c656761637920506173732070657260208201527f2077616c6c657420697320616c6c6f7765640000000000000000000000000000604082015250565b6000614668605283613b28565b9150614673826145e6565b606082019050919050565b600060208201905081810360008301526146978161465b565b9050919050565b7f43757272656e7420737461676520697320507269766174652073746167652c2060008201527f6f6e6c7920616c6c6f776c69737465642077616c6c6574732063616e206d696e60208201527f7420696e20746869732073746167650000000000000000000000000000000000604082015250565b6000614720604f83613b28565b915061472b8261469e565b606082019050919050565b6000602082019050818103600083015261474f81614713565b9050919050565b600061476182613bcf565b915061476c83613bcf565b9250828203905081811115614784576147836143c2565b5b92915050565b7f4d6178696d756d204e4654732068617665206265656e206d696e74656420696e60008201527f2074686520707269766174652073746167650000000000000000000000000000602082015250565b60006147e6603283613b28565b91506147f18261478a565b604082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b7f416c6c204e4654732068617665206265656e206d696e74656400000000000000600082015250565b6000614852601983613b28565b915061485d8261481c565b602082019050919050565b6000602082019050818103600083015261488181614845565b9050919050565b7f496e76616c6964207061796d656e7420616d6f756e742c20507269636520697360008201527f20302e3333206574686572000000000000000000000000000000000000000000602082015250565b60006148e4602b83613b28565b91506148ef82614888565b604082019050919050565b60006020820190508181036000830152614913816148d7565b9050919050565b600060608201905061492f6000830186613c64565b61493c6020830185613e8b565b6149496040830184613c64565b949350505050565b60006040820190506149666000830185613c64565b6149736020830184613e8b565b9392505050565b7f496e76616c69642077616c6c6574206164647265737300000000000000000000600082015250565b60006149b0601683613b28565b91506149bb8261497a565b602082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614a487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614a0b565b614a528683614a0b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614a8f614a8a614a8584613bcf565b614a6a565b613bcf565b9050919050565b6000819050919050565b614aa983614a74565b614abd614ab582614a96565b848454614a18565b825550505050565b600090565b614ad2614ac5565b614add818484614aa0565b505050565b5b81811015614b0157614af6600082614aca565b600181019050614ae3565b5050565b601f821115614b4657614b17816149e6565b614b20846149fb565b81016020851015614b2f578190505b614b43614b3b856149fb565b830182614ae2565b50505b505050565b600082821c905092915050565b6000614b6960001984600802614b4b565b1980831691505092915050565b6000614b828383614b58565b9150826002028217905092915050565b614b9b82613b1d565b67ffffffffffffffff811115614bb457614bb3613cff565b5b614bbe8254614391565b614bc9828285614b05565b600060209050601f831160018114614bfc5760008415614bea578287015190505b614bf48582614b76565b865550614c5c565b601f198416614c0a866149e6565b60005b82811015614c3257848901518255600182019150602085019450602081019050614c0d565b86831015614c4f5784890151614c4b601f891682614b58565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000614c7a82613b1d565b614c848185614c64565b9350614c94818560208601613b39565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614cd6600583614c64565b9150614ce182614ca0565b600582019050919050565b6000614cf88285614c6f565b9150614d048284614c6f565b9150614d0f82614cc9565b91508190509392505050565b7f416c6c207374616765732068617665206265656e20636f6d706c657465640000600082015250565b6000614d51601e83613b28565b9150614d5c82614d1b565b602082019050919050565b60006020820190508181036000830152614d8081614d44565b9050919050565b7f5468697320746f6b656e20697320536f756c626f756e6420546f6b656e2c206360008201527f616e6e6f74206265207472616e73666572726564000000000000000000000000602082015250565b6000614de3603483613b28565b9150614dee82614d87565b604082019050919050565b60006020820190508181036000830152614e1281614dd6565b9050919050565b600081905092915050565b50565b6000614e34600083614e19565b9150614e3f82614e24565b600082019050919050565b6000614e5582614e27565b9150819050919050565b600081519050919050565b600082825260208201905092915050565b6000614e8682614e5f565b614e908185614e6a565b9350614ea0818560208601613b39565b614ea981613b63565b840191505092915050565b6000608082019050614ec96000830187613c64565b614ed66020830186613c64565b614ee36040830185613e8b565b8181036060830152614ef58184614e7b565b905095945050505050565b600081519050614f0f81613a8e565b92915050565b600060208284031215614f2b57614f2a613a58565b5b6000614f3984828501614f00565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000604082019050614f866000830185613c64565b614f936020830184613f6b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220c78116a6376154f39389271388b1cc98316404c4b319f311921f6db119d8facb64736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102725760003560e01c80635bf5d54c1161014f578063a217fddf116100c1578063d547741f1161007a578063d547741f14610932578063e8a3d4851461095b578063e985e9c514610986578063ee3743ab146109c3578063f2fde38b146109da578063f5964e0814610a0357610272565b8063a217fddf14610810578063a22cb4651461083b578063b45a3c0e14610864578063b88d4fde146108a1578063c87b56dd146108ca578063d53913931461090757610272565b80638456cb59116101135780638456cb59146107125780638d859f3e146107295780638da5cb5b1461075457806391d148541461077f578063938e3d7b146107bc57806395d89b41146107e557610272565b80635bf5d54c1461062b5780635c975abb146106565780636352211e1461068157806370a08231146106be578063715018a6146106fb57610272565b80632e1a7d4d116101e85780633f4ba83a116101ac5780633f4ba83a1461054057806340c10f191461055757806342842e0e146105735780634f6ccce71461059c5780635207c273146105d957806355f804b31461060257610272565b80632e1a7d4d1461045d5780632f2ff15d146104865780632f745c59146104af57806332cb6b0c146104ec57806336568abe1461051757610272565b8063104b6cb71161023a578063104b6cb71461036e5780631249c58b1461039757806318160ddd146103a157806323b872dd146103cc578063248a9ca3146103f55780632da5ea171461043257610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630e57241814610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613aba565b610a40565b6040516102ab9190613b02565b60405180910390f35b3480156102c057600080fd5b506102c9610a52565b6040516102d69190613bad565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c05565b610ae4565b6040516103139190613c73565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613cba565b610b00565b005b34801561035157600080fd5b5061036c60048036038101906103679190613e42565b610b16565b005b34801561037a57600080fd5b5061039560048036038101906103909190613e42565b610c22565b005b61039f610cbf565b005b3480156103ad57600080fd5b506103b6610faf565b6040516103c39190613e9a565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613eb5565b610fbc565b005b34801561040157600080fd5b5061041c60048036038101906104179190613f3e565b6110be565b6040516104299190613f7a565b60405180910390f35b34801561043e57600080fd5b506104476110de565b6040516104549190613b02565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190613c05565b611187565b005b34801561049257600080fd5b506104ad60048036038101906104a89190613f95565b6111ac565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190613cba565b6111ce565b6040516104e39190613e9a565b60405180910390f35b3480156104f857600080fd5b50610501611277565b60405161050e9190613e9a565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613f95565b61129b565b005b34801561054c57600080fd5b50610555611316565b005b610571600480360381019061056c9190613cba565b611328565b005b34801561057f57600080fd5b5061059a60048036038101906105959190613eb5565b611652565b005b3480156105a857600080fd5b506105c360048036038101906105be9190613c05565b611672565b6040516105d09190613e9a565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613e42565b6116e8565b005b34801561060e57600080fd5b506106296004803603810190610624919061408a565b611785565b005b34801561063757600080fd5b506106406117a0565b60405161064d919061414a565b60405180910390f35b34801561066257600080fd5b5061066b6117b3565b6040516106789190613b02565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613c05565b6117ca565b6040516106b59190613c73565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190614165565b6117dc565b6040516106f29190613e9a565b60405180910390f35b34801561070757600080fd5b50610710611896565b005b34801561071e57600080fd5b506107276118aa565b005b34801561073557600080fd5b5061073e6118bc565b60405161074b9190613e9a565b60405180910390f35b34801561076057600080fd5b506107696118e0565b6040516107769190613c73565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190613f95565b61190a565b6040516107b39190613b02565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de919061408a565b611975565b005b3480156107f157600080fd5b506107fa611990565b6040516108079190613bad565b60405180910390f35b34801561081c57600080fd5b50610825611a22565b6040516108329190613f7a565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906141be565b611a29565b005b34801561087057600080fd5b5061088b60048036038101906108869190613c05565b611a3f565b6040516108989190613b02565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c3919061429f565b611ad6565b005b3480156108d657600080fd5b506108f160048036038101906108ec9190613c05565b611af3565b6040516108fe9190613bad565b60405180910390f35b34801561091357600080fd5b5061091c611b2d565b6040516109299190613f7a565b60405180910390f35b34801561093e57600080fd5b5061095960048036038101906109549190613f95565b611b51565b005b34801561096757600080fd5b50610970611b73565b60405161097d9190613bad565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a89190614322565b611c05565b6040516109ba9190613b02565b60405180910390f35b3480156109cf57600080fd5b506109d8611c99565b005b3480156109e657600080fd5b50610a0160048036038101906109fc9190614165565b611deb565b005b348015610a0f57600080fd5b50610a2a6004803603810190610a259190614165565b611e71565b604051610a379190613b02565b60405180910390f35b6000610a4b82611ec7565b9050919050565b606060008054610a6190614391565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90614391565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610aef82611f41565b50610af982611fc9565b9050919050565b610b128282610b0d612006565b61200e565b5050565b610b1e612020565b7f000000000000000000000000000000000000000000000000000000000000077d8151610b49610faf565b610b5391906143f1565b1115610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614497565b60405180910390fd5b6000610b9e610faf565b905060005b8251811015610c1d576000610bd1848381518110610bc457610bc36144b7565b5b60200260200101516117dc565b11610c0a57600182610be391906143f1565b9150610c09838281518110610bfb57610bfa6144b7565b5b6020026020010151836120a7565b5b8080610c15906144e6565b915050610ba3565b505050565b610c2a612020565b60005b8151811015610cbb576000600e6000848481518110610c4f57610c4e6144b7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cb3906144e6565b915050610c2d565b5050565b610cc76120c5565b60006002811115610cdb57610cda6140d3565b5b600f60009054906101000a900460ff166002811115610cfd57610cfc6140d3565b5b03610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d34906145c6565b60405180910390fd5b6000610d48336117dc565b14610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f9061467e565b60405180910390fd5b60016002811115610d9c57610d9b6140d3565b5b600f60009054906101000a900460ff166002811115610dbe57610dbd6140d3565b5b03610ec557600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690614736565b60405180910390fd5b60147f000000000000000000000000000000000000000000000000000000000000077d610e7c9190614756565b610e84610faf565b10610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906147fc565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000077d610eee610faf565b10610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614868565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000494654067e100003414610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f87906148fa565b60405180910390fd5b610fad336001610f9e610faf565b610fa891906143f1565b6120a7565b565b6000600880549050905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102e5760006040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016110259190613c73565b60405180910390fd5b6000611042838361103d612006565b612106565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110b8578382826040517f64283d7b0000000000000000000000000000000000000000000000000000000081526004016110af9392919061491a565b60405180910390fd5b50505050565b6000600d6000838152602001908152602001600020600101549050919050565b6000806110e9610faf565b9050600160028111156110ff576110fe6140d3565b5b600f60009054906101000a900460ff166002811115611121576111206140d3565b5b0361115d5760147f000000000000000000000000000000000000000000000000000000000000077d6111539190614756565b8114915050611184565b7f000000000000000000000000000000000000000000000000000000000000077d81149150505b90565b61118f61218a565b611197612020565b6111a133826121d0565b6111a96122bd565b50565b6111b5826110be565b6111be816122c7565b6111c883836122db565b50505050565b60006111d9836117dc565b821061121e5782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401611215929190614951565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b7f000000000000000000000000000000000000000000000000000000000000077d81565b6112a3612006565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611307576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61131182826123cd565b505050565b61131e612020565b6113266124c0565b565b6113306120c5565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661135a816122c7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906149c6565b60405180910390fd5b600060028111156113dd576113dc6140d3565b5b600f60009054906101000a900460ff1660028111156113ff576113fe6140d3565b5b0361143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906145c6565b60405180910390fd5b600061144a846117dc565b1461148a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114819061467e565b60405180910390fd5b6001600281111561149e5761149d6140d3565b5b600f60009054906101000a900460ff1660028111156114c0576114bf6140d3565b5b036115c757600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890614736565b60405180910390fd5b60147f000000000000000000000000000000000000000000000000000000000000077d61157e9190614756565b611586610faf565b106115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906147fc565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000077d6115f0610faf565b10611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790614868565b60405180910390fd5b61164d83600161163e610faf565b61164891906143f1565b6120a7565b505050565b61166d83838360405180602001604052806000815250611ad6565b505050565b600061167c610faf565b82106116c2576000826040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526004016116b9929190614951565b60405180910390fd5b600882815481106116d6576116d56144b7565b5b90600052602060002001549050919050565b6116f0612020565b60005b8151811015611781576001600e6000848481518110611715576117146144b7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611779906144e6565b9150506116f3565b5050565b61178d612020565b806010908161179c9190614b92565b5050565b600f60009054906101000a900460ff1681565b6000600b60009054906101000a900460ff16905090565b60006117d582611f41565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184f5760006040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016118469190613c73565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61189e612020565b6118a86000612523565b565b6118b2612020565b6118ba6125e9565b565b7f0000000000000000000000000000000000000000000000000494654067e1000081565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61197d612020565b806011908161198c9190614b92565b5050565b60606001805461199f90614391565b80601f01602080910402602001604051908101604052809291908181526020018280546119cb90614391565b8015611a185780601f106119ed57610100808354040283529160200191611a18565b820191906000526020600020905b8154815290600101906020018083116119fb57829003601f168201915b5050505050905090565b6000801b81565b611a3b611a34612006565b838361264c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a61836127bb565b73ffffffffffffffffffffffffffffffffffffffff1603611aae576040517fae9a63f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000019050919050565b611ae1848484610fbc565b611aed848484846127f8565b50505050565b6060611afd6129af565b611b0683612a41565b604051602001611b17929190614cec565b6040516020818303038152906040529050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611b5a826110be565b611b63816122c7565b611b6d83836123cd565b50505050565b606060118054611b8290614391565b80601f0160208091040260200160405190810160405280929190818152602001828054611bae90614391565b8015611bfb5780601f10611bd057610100808354040283529160200191611bfb565b820191906000526020600020905b815481529060010190602001808311611bde57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ca1612020565b600280811115611cb457611cb36140d3565b5b600f60009054906101000a900460ff166002811115611cd657611cd56140d3565b5b03611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90614d67565b60405180910390fd5b60006002811115611d2a57611d296140d3565b5b600f60009054906101000a900460ff166002811115611d4c57611d4b6140d3565b5b03611d81576001600f60006101000a81548160ff02191690836002811115611d7757611d766140d3565b5b0217905550611de9565b60016002811115611d9557611d946140d3565b5b600f60009054906101000a900460ff166002811115611db757611db66140d3565b5b03611de8576002600f60006101000a81548160ff02191690836002811115611de257611de16140d3565b5b02179055505b5b565b611df3612020565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e655760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611e5c9190613c73565b60405180910390fd5b611e6e81612523565b50565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f3a5750611f3982612b0f565b5b9050919050565b600080611f4d836127bb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc057826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611fb79190613e9a565b60405180910390fd5b80915050919050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600033905090565b61201b8383836001612b89565b505050565b612028612006565b73ffffffffffffffffffffffffffffffffffffffff166120466118e0565b73ffffffffffffffffffffffffffffffffffffffff16146120a557612069612006565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161209c9190613c73565b60405180910390fd5b565b6120c1828260405180602001604052806000815250612d4e565b5050565b6120cd6117b3565b15612104576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614df9565b60405180910390fd5b612181848484612d6a565b90509392505050565b6002600c54036121c6576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600c81905550565b8047101561221557306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161220c9190613c73565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161223b90614e4a565b60006040518083038185875af1925050503d8060008114612278576040519150601f19603f3d011682016040523d82523d6000602084013e61227d565b606091505b50509050806122b8576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600c81905550565b6122d8816122d3612006565b612d88565b50565b60006122e7838361190a565b6123c2576001600d600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061235f612006565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4600190506123c7565b600090505b92915050565b60006123d9838361190a565b156124b5576000600d600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612452612006565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a4600190506124ba565b600090505b92915050565b6124c8612dd9565b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61250c612006565b6040516125199190613c73565b60405180910390a1565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125f16120c5565b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612635612006565b6040516126429190613c73565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126bd57816040517f5b08ba180000000000000000000000000000000000000000000000000000000081526004016126b49190613c73565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127ae9190613b02565b60405180910390a3505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff163b11156129a9578273ffffffffffffffffffffffffffffffffffffffff1663150b7a0261283c612006565b8685856040518563ffffffff1660e01b815260040161285e9493929190614eb4565b6020604051808303816000875af192505050801561289a57506040513d601f19601f820116820180604052508101906128979190614f15565b60015b61291e573d80600081146128ca576040519150601f19603f3d011682016040523d82523d6000602084013e6128cf565b606091505b50600081510361291657836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161290d9190613c73565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129a757836040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260040161299e9190613c73565b60405180910390fd5b505b50505050565b6060601080546129be90614391565b80601f01602080910402602001604051908101604052809291908181526020018280546129ea90614391565b8015612a375780601f10612a0c57610100808354040283529160200191612a37565b820191906000526020600020905b815481529060010190602001808311612a1a57829003601f168201915b5050505050905090565b606060006001612a5084612e19565b01905060008167ffffffffffffffff811115612a6f57612a6e613cff565b5b6040519080825280601f01601f191660200182016040528015612aa15781602001600182028036833780820191505090505b509050600082602001820190505b600115612b04578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612af857612af7614f42565b5b04945060008503612aaf575b819350505050919050565b60007fb45a3c0e000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b825750612b8182612f6c565b5b9050919050565b8080612bc25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612cf6576000612bd284611f41565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3d57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015612c505750612c4e8184611c05565b155b15612c9257826040517fa9fbf51f000000000000000000000000000000000000000000000000000000008152600401612c899190613c73565b60405180910390fd5b8115612cf457838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b836004600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b612d588383612fcd565b612d6560008484846127f8565b505050565b6000612d746120c5565b612d7f8484846130c6565b90509392505050565b612d92828261190a565b612dd55780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401612dcc929190614f71565b60405180910390fd5b5050565b612de16117b3565b612e17576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612e77577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612e6d57612e6c614f42565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612eb4576d04ee2d6d415b85acef81000000008381612eaa57612ea9614f42565b5b0492506020810190505b662386f26fc100008310612ee357662386f26fc100008381612ed957612ed8614f42565b5b0492506010810190505b6305f5e1008310612f0c576305f5e1008381612f0257612f01614f42565b5b0492506008810190505b6127108310612f31576127108381612f2757612f26614f42565b5b0492506004810190505b60648310612f545760648381612f4a57612f49614f42565b5b0492506002810190505b600a8310612f63576001810190505b80915050919050565b6000634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612fc65750612fc5826131e3565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361303f5760006040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016130369190613c73565b60405180910390fd5b600061304d83836000612106565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146130c15760006040517f73c6ac6e0000000000000000000000000000000000000000000000000000000081526004016130b89190613c73565b60405180910390fd5b505050565b6000806130d485858561325d565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036131185761311384613477565b613157565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146131565761315581856134c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036131995761319484613621565b6131d8565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146131d7576131d685856136f2565b5b5b809150509392505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061325657506132558261377d565b5b9050919050565b600080613269846127bb565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132ab576132aa81848661385f565b5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461333c576132ed600085600080612b89565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146133bf576001600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b846002600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006134cb836117dc565b90506000600760008481526020019081526020016000205490508181146135b0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136359190614756565b9050600060096000848152602001908152602001600020549050600060088381548110613665576136646144b7565b5b906000526020600020015490508060088381548110613687576136866144b7565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136d6576136d5614f9a565b5b6001900381819060005260206000200160009055905550505050565b600060016136ff846117dc565b6137099190614756565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061384857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613858575061385782613923565b5b9050919050565b61386a83838361398d565b61391e57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036138df57806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016138d69190613e9a565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401613915929190614951565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a4557508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613a065750613a058484611c05565b5b80613a4457508273ffffffffffffffffffffffffffffffffffffffff16613a2c83611fc9565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a9781613a62565b8114613aa257600080fd5b50565b600081359050613ab481613a8e565b92915050565b600060208284031215613ad057613acf613a58565b5b6000613ade84828501613aa5565b91505092915050565b60008115159050919050565b613afc81613ae7565b82525050565b6000602082019050613b176000830184613af3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b57578082015181840152602081019050613b3c565b60008484015250505050565b6000601f19601f8301169050919050565b6000613b7f82613b1d565b613b898185613b28565b9350613b99818560208601613b39565b613ba281613b63565b840191505092915050565b60006020820190508181036000830152613bc78184613b74565b905092915050565b6000819050919050565b613be281613bcf565b8114613bed57600080fd5b50565b600081359050613bff81613bd9565b92915050565b600060208284031215613c1b57613c1a613a58565b5b6000613c2984828501613bf0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5d82613c32565b9050919050565b613c6d81613c52565b82525050565b6000602082019050613c886000830184613c64565b92915050565b613c9781613c52565b8114613ca257600080fd5b50565b600081359050613cb481613c8e565b92915050565b60008060408385031215613cd157613cd0613a58565b5b6000613cdf85828601613ca5565b9250506020613cf085828601613bf0565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d3782613b63565b810181811067ffffffffffffffff82111715613d5657613d55613cff565b5b80604052505050565b6000613d69613a4e565b9050613d758282613d2e565b919050565b600067ffffffffffffffff821115613d9557613d94613cff565b5b602082029050602081019050919050565b600080fd5b6000613dbe613db984613d7a565b613d5f565b90508083825260208201905060208402830185811115613de157613de0613da6565b5b835b81811015613e0a5780613df68882613ca5565b845260208401935050602081019050613de3565b5050509392505050565b600082601f830112613e2957613e28613cfa565b5b8135613e39848260208601613dab565b91505092915050565b600060208284031215613e5857613e57613a58565b5b600082013567ffffffffffffffff811115613e7657613e75613a5d565b5b613e8284828501613e14565b91505092915050565b613e9481613bcf565b82525050565b6000602082019050613eaf6000830184613e8b565b92915050565b600080600060608486031215613ece57613ecd613a58565b5b6000613edc86828701613ca5565b9350506020613eed86828701613ca5565b9250506040613efe86828701613bf0565b9150509250925092565b6000819050919050565b613f1b81613f08565b8114613f2657600080fd5b50565b600081359050613f3881613f12565b92915050565b600060208284031215613f5457613f53613a58565b5b6000613f6284828501613f29565b91505092915050565b613f7481613f08565b82525050565b6000602082019050613f8f6000830184613f6b565b92915050565b60008060408385031215613fac57613fab613a58565b5b6000613fba85828601613f29565b9250506020613fcb85828601613ca5565b9150509250929050565b600080fd5b600067ffffffffffffffff821115613ff557613ff4613cff565b5b613ffe82613b63565b9050602081019050919050565b82818337600083830152505050565b600061402d61402884613fda565b613d5f565b90508281526020810184848401111561404957614048613fd5565b5b61405484828561400b565b509392505050565b600082601f83011261407157614070613cfa565b5b813561408184826020860161401a565b91505092915050565b6000602082840312156140a05761409f613a58565b5b600082013567ffffffffffffffff8111156140be576140bd613a5d565b5b6140ca8482850161405c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110614113576141126140d3565b5b50565b600081905061412482614102565b919050565b600061413482614116565b9050919050565b61414481614129565b82525050565b600060208201905061415f600083018461413b565b92915050565b60006020828403121561417b5761417a613a58565b5b600061418984828501613ca5565b91505092915050565b61419b81613ae7565b81146141a657600080fd5b50565b6000813590506141b881614192565b92915050565b600080604083850312156141d5576141d4613a58565b5b60006141e385828601613ca5565b92505060206141f4858286016141a9565b9150509250929050565b600067ffffffffffffffff82111561421957614218613cff565b5b61422282613b63565b9050602081019050919050565b600061424261423d846141fe565b613d5f565b90508281526020810184848401111561425e5761425d613fd5565b5b61426984828561400b565b509392505050565b600082601f83011261428657614285613cfa565b5b813561429684826020860161422f565b91505092915050565b600080600080608085870312156142b9576142b8613a58565b5b60006142c787828801613ca5565b94505060206142d887828801613ca5565b93505060406142e987828801613bf0565b925050606085013567ffffffffffffffff81111561430a57614309613a5d565b5b61431687828801614271565b91505092959194509250565b6000806040838503121561433957614338613a58565b5b600061434785828601613ca5565b925050602061435885828601613ca5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143a957607f821691505b6020821081036143bc576143bb614362565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143fc82613bcf565b915061440783613bcf565b925082820190508082111561441f5761441e6143c2565b5b92915050565b7f57616c6c657473206c656e677468206578636565647320746865206d6178696d60008201527f756d20737570706c790000000000000000000000000000000000000000000000602082015250565b6000614481602983613b28565b915061448c82614425565b604082019050919050565b600060208201905081810360008301526144b081614474565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006144f182613bcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614523576145226143c2565b5b600182019050919050565b7f43757272656e7420737461676520697320496e697469616c2073746167652c2060008201527f6d696e74696e67206973206e6f7420616c6c6f77656420696e2074686973207360208201527f7461676500000000000000000000000000000000000000000000000000000000604082015250565b60006145b0604483613b28565b91506145bb8261452e565b606082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b7f546869732077616c6c657420616c72656164792068617320616e204c6567616360008201527f7920506173732c206f6e6c79206f6e65204c656761637920506173732070657260208201527f2077616c6c657420697320616c6c6f7765640000000000000000000000000000604082015250565b6000614668605283613b28565b9150614673826145e6565b606082019050919050565b600060208201905081810360008301526146978161465b565b9050919050565b7f43757272656e7420737461676520697320507269766174652073746167652c2060008201527f6f6e6c7920616c6c6f776c69737465642077616c6c6574732063616e206d696e60208201527f7420696e20746869732073746167650000000000000000000000000000000000604082015250565b6000614720604f83613b28565b915061472b8261469e565b606082019050919050565b6000602082019050818103600083015261474f81614713565b9050919050565b600061476182613bcf565b915061476c83613bcf565b9250828203905081811115614784576147836143c2565b5b92915050565b7f4d6178696d756d204e4654732068617665206265656e206d696e74656420696e60008201527f2074686520707269766174652073746167650000000000000000000000000000602082015250565b60006147e6603283613b28565b91506147f18261478a565b604082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b7f416c6c204e4654732068617665206265656e206d696e74656400000000000000600082015250565b6000614852601983613b28565b915061485d8261481c565b602082019050919050565b6000602082019050818103600083015261488181614845565b9050919050565b7f496e76616c6964207061796d656e7420616d6f756e742c20507269636520697360008201527f20302e3333206574686572000000000000000000000000000000000000000000602082015250565b60006148e4602b83613b28565b91506148ef82614888565b604082019050919050565b60006020820190508181036000830152614913816148d7565b9050919050565b600060608201905061492f6000830186613c64565b61493c6020830185613e8b565b6149496040830184613c64565b949350505050565b60006040820190506149666000830185613c64565b6149736020830184613e8b565b9392505050565b7f496e76616c69642077616c6c6574206164647265737300000000000000000000600082015250565b60006149b0601683613b28565b91506149bb8261497a565b602082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614a487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614a0b565b614a528683614a0b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614a8f614a8a614a8584613bcf565b614a6a565b613bcf565b9050919050565b6000819050919050565b614aa983614a74565b614abd614ab582614a96565b848454614a18565b825550505050565b600090565b614ad2614ac5565b614add818484614aa0565b505050565b5b81811015614b0157614af6600082614aca565b600181019050614ae3565b5050565b601f821115614b4657614b17816149e6565b614b20846149fb565b81016020851015614b2f578190505b614b43614b3b856149fb565b830182614ae2565b50505b505050565b600082821c905092915050565b6000614b6960001984600802614b4b565b1980831691505092915050565b6000614b828383614b58565b9150826002028217905092915050565b614b9b82613b1d565b67ffffffffffffffff811115614bb457614bb3613cff565b5b614bbe8254614391565b614bc9828285614b05565b600060209050601f831160018114614bfc5760008415614bea578287015190505b614bf48582614b76565b865550614c5c565b601f198416614c0a866149e6565b60005b82811015614c3257848901518255600182019150602085019450602081019050614c0d565b86831015614c4f5784890151614c4b601f891682614b58565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000614c7a82613b1d565b614c848185614c64565b9350614c94818560208601613b39565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614cd6600583614c64565b9150614ce182614ca0565b600582019050919050565b6000614cf88285614c6f565b9150614d048284614c6f565b9150614d0f82614cc9565b91508190509392505050565b7f416c6c207374616765732068617665206265656e20636f6d706c657465640000600082015250565b6000614d51601e83613b28565b9150614d5c82614d1b565b602082019050919050565b60006020820190508181036000830152614d8081614d44565b9050919050565b7f5468697320746f6b656e20697320536f756c626f756e6420546f6b656e2c206360008201527f616e6e6f74206265207472616e73666572726564000000000000000000000000602082015250565b6000614de3603483613b28565b9150614dee82614d87565b604082019050919050565b60006020820190508181036000830152614e1281614dd6565b9050919050565b600081905092915050565b50565b6000614e34600083614e19565b9150614e3f82614e24565b600082019050919050565b6000614e5582614e27565b9150819050919050565b600081519050919050565b600082825260208201905092915050565b6000614e8682614e5f565b614e908185614e6a565b9350614ea0818560208601613b39565b614ea981613b63565b840191505092915050565b6000608082019050614ec96000830187613c64565b614ed66020830186613c64565b614ee36040830185613e8b565b8181036060830152614ef58184614e7b565b905095945050505050565b600081519050614f0f81613a8e565b92915050565b600060208284031215614f2b57614f2a613a58565b5b6000614f3984828501614f00565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000604082019050614f866000830185613c64565b614f936020830184613f6b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220c78116a6376154f39389271388b1cc98316404c4b319f311921f6db119d8facb64736f6c63430008140033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.