Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
D3generatorERC721
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.18; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract D3generatorERC721 is Initializable, ERC721Upgradeable, OwnableUpgradeable, IERC2981Upgradeable, PausableUpgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; CountersUpgradeable.Counter private tokenIdCounter; string private baseURI; uint256 public mintCost; uint256 public maxSupply; mapping(address => uint256) public mintCountPerAddress; uint256 public maxMintCountPerAddress; uint256 public royaltyBasePoints; address private signerAddress; /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } function initialize( string memory _name, string memory _symbol, string memory _baseURI_, address _owner, uint256 _mintCost, uint256 _maxSupply, uint256 _maxMintCountPerAddress, uint256 _royaltyBasePoints, address _signerAddress ) public initializer { __ERC721_init(_name, _symbol); baseURI = _baseURI_; mintCost = _mintCost; __Ownable_init(); __Pausable_init(); _transferOwnership(_owner); maxSupply = _maxSupply; maxMintCountPerAddress = _maxMintCountPerAddress; royaltyBasePoints = _royaltyBasePoints; signerAddress = _signerAddress; } function setMintCost(uint256 _mintCost) public onlyOwner { mintCost = _mintCost; } function totalSupply() public view returns (uint256) { return tokenIdCounter.current(); } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId)); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(_tokenId), ".json" ) ) : ""; } function contractURI() public view returns (string memory) { return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( string( abi.encodePacked( '{"name":"', name(), '","seller_fee_basis_points":', Strings.toString(royaltyBasePoints), ',"fee_recipient":"', "0x", toAsciiString(address(this)), '"}' ) ) ) ) ) ); } function toAsciiString(address x) public pure returns (string memory) { bytes memory s = new bytes(40); for (uint i = 0; i < 20; i++) { bytes1 b = bytes1(uint8(uint(uint160(x)) / (2**(8 * (19 - i))))); bytes1 hi = bytes1(uint8(b) / 16); bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi)); s[2 * i] = char(hi); s[2 * i + 1] = char(lo); } return string(s); } function char(bytes1 b) public pure returns (bytes1 c) { if (uint8(b) < 10) return bytes1(uint8(b) + 0x30); else return bytes1(uint8(b) + 0x57); } //royalty everything else function royaltyInfo(uint _tokenId, uint _salePrice) external view returns (address receiver, uint royaltyAmount) { return (address(this), uint((_salePrice * royaltyBasePoints) / 10000)); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || interfaceId == type(IERC2981Upgradeable).interfaceId || super.supportsInterface(interfaceId); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function airDrop(address[] calldata _receipients, uint256 amount) public onlyOwner { for (uint i = 0; i < _receipients.length; i++) { _safeMint(_receipients[i], amount); } } function setRoyaltyBasePoints(uint256 _royaltyBasePoints) public onlyOwner{ royaltyBasePoints=_royaltyBasePoints; } function mintWhitelist( uint256 _mintAmount, uint256 _mintCost, bytes calldata signature ) public payable { require(msg.value >= _mintCost * _mintAmount); address signer = ECDSA.recover( ECDSA.toEthSignedMessageHash( keccak256(abi.encodePacked(msg.sender, _mintAmount, _mintCost)) ), signature ); require(signer == signerAddress); _mintLoop(msg.sender, _mintAmount); } function mint(uint256 _mintAmount) public payable whenNotPaused { require(msg.value >= mintCost * _mintAmount); _mintLoop(msg.sender, _mintAmount); } function withdraw() public onlyOwner { /* address taxWallet = 0x09e8c457AEDB06C2830c4Be9805d1B20675EdeD8; (bool hs, ) = payable(taxWallet).call{ value: (address(this).balance * 1) / 100 }(""); require(hs); */ (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) private { require(tokenIdCounter.current() + _mintAmount <= maxSupply); require( maxMintCountPerAddress == 0 || mintCountPerAddress[_receiver] + _mintAmount <= maxMintCountPerAddress ); mintCountPerAddress[_receiver] += _mintAmount; for (uint256 i = 0; i < _mintAmount; i++) { tokenIdCounter.increment(); _safeMint(_receiver, tokenIdCounter.current()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981Upgradeable is IERC165Upgradeable { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.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 PausableUpgradeable is Initializable, ContextUpgradeable { /** * @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); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _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 { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @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()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(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 override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - 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, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * 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 virtual { _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); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @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 virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @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 virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721Upgradeable.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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 virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * 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 * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being 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`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @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 v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @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 v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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 caller. * * 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 v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @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, it is bubbled up by this * function (like regular Solidity function calls). * * 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. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @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`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) 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(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library CountersUpgradeable { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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 IERC165Upgradeable { /** * @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 v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (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; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); 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 (rounding == Rounding.Up && 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 down. * * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.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), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.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) { 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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../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 caller. * * 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 v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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 v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (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; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); 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 (rounding == Rounding.Up && 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 down. * * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @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) { 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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); 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); } }
{ "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"},{"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":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"_receipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airDrop","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":[{"internalType":"bytes1","name":"b","type":"bytes1"}],"name":"char","outputs":[{"internalType":"bytes1","name":"c","type":"bytes1"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI_","type":"string"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_mintCost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintCountPerAddress","type":"uint256"},{"internalType":"uint256","name":"_royaltyBasePoints","type":"uint256"},{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"maxMintCountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_mintCost","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyBasePoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"uint256","name":"_mintCost","type":"uint256"}],"name":"setMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyBasePoints","type":"uint256"}],"name":"setRoyaltyBasePoints","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":"address","name":"x","type":"address"}],"name":"toAsciiString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50620000226200002860201b60201c565b620001d3565b600060019054906101000a900460ff16156200007b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000729062000176565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff161015620000ed5760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620000e49190620001b6565b60405180910390a15b565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b60006200015e602783620000ef565b91506200016b8262000100565b604082019050919050565b6000602082019050818103600083015262000191816200014f565b9050919050565b600060ff82169050919050565b620001b08162000198565b82525050565b6000602082019050620001cd6000830184620001a5565b92915050565b6152ed80620001e36000396000f3fe60806040526004361061020f5760003560e01c80636dc407f911610118578063b29509f3116100a0578063d5abeb011161006f578063d5abeb011461076e578063e8a3d48514610799578063e985e9c5146107c4578063f2fde38b14610801578063fd1fc4a01461082a5761020f565b8063b29509f3146106b2578063b88d4fde146106dd578063bdb4b84814610706578063c87b56dd146107315761020f565b80638545f4ea116100e75780638545f4ea146105ee5780638da5cb5b1461061757806395d89b4114610642578063a0712d681461066d578063a22cb465146106895761020f565b80636dc407f91461054657806370a0823114610583578063715018a6146105c05780638456cb59146105d75761020f565b80632c6e75981161019b57806342842e0e1161016a57806342842e0e1461045c57806343774ebd146104855780635c975abb146104a15780636352211e146104cc57806369f9ad2f146105095761020f565b80632c6e7598146103c85780633a00ce7b146104055780633ccfd60b1461042e5780633f4ba83a146104455761020f565b8063167c694c116101e2578063167c694c146102e257806318160ddd1461030b57806323b872dd1461033657806327ddd13e1461035f5780632a55205a1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613168565b610853565b60405161024891906131b0565b60405180910390f35b34801561025d57600080fd5b5061026661099d565b604051610273919061325b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906132b3565b610a2f565b6040516102b09190613321565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613368565b610a75565b005b3480156102ee57600080fd5b50610309600480360381019061030491906132b3565b610b8c565b005b34801561031757600080fd5b50610320610b9f565b60405161032d91906133b7565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906133d2565b610bb0565b005b34801561036b57600080fd5b50610374610c10565b60405161038191906133b7565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613425565b610c17565b6040516103bf929190613465565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea919061348e565b610c42565b6040516103fc919061325b565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906135f0565b610e05565b005b34801561043a57600080fd5b50610443610fd7565b005b34801561045157600080fd5b5061045a61105f565b005b34801561046857600080fd5b50610483600480360381019061047e91906133d2565b611071565b005b61049f600480360381019061049a919061376e565b611091565b005b3480156104ad57600080fd5b506104b6611199565b6040516104c391906131b0565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906132b3565b6111b0565b6040516105009190613321565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061383a565b611236565b60405161053d9190613876565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061348e565b61127c565b60405161057a91906133b7565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a5919061348e565b611294565b6040516105b791906133b7565b60405180910390f35b3480156105cc57600080fd5b506105d561134b565b005b3480156105e357600080fd5b506105ec61135f565b005b3480156105fa57600080fd5b50610615600480360381019061061091906132b3565b611371565b005b34801561062357600080fd5b5061062c611383565b6040516106399190613321565b60405180910390f35b34801561064e57600080fd5b506106576113ad565b604051610664919061325b565b60405180910390f35b610687600480360381019061068291906132b3565b61143f565b005b34801561069557600080fd5b506106b060048036038101906106ab91906138bd565b61146e565b005b3480156106be57600080fd5b506106c7611484565b6040516106d491906133b7565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff919061399e565b61148b565b005b34801561071257600080fd5b5061071b6114ed565b60405161072891906133b7565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906132b3565b6114f3565b604051610765919061325b565b60405180910390f35b34801561077a57600080fd5b50610783611564565b60405161079091906133b7565b60405180910390f35b3480156107a557600080fd5b506107ae61156a565b6040516107bb919061325b565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190613a21565b6115d6565b6040516107f891906131b0565b60405180910390f35b34801561080d57600080fd5b506108286004803603810190610823919061348e565b61166a565b005b34801561083657600080fd5b50610851600480360381019061084c9190613ab7565b6116ed565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098657507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657506109958261174d565b5b9050919050565b6060606580546109ac90613b46565b80601f01602080910402602001604051908101604052809291908181526020018280546109d890613b46565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b5050505050905090565b6000610a3a8261182f565b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a80826111b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790613be9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0f61187a565b73ffffffffffffffffffffffffffffffffffffffff161480610b3e5750610b3d81610b3861187a565b6115d6565b5b610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490613c7b565b60405180910390fd5b610b878383611882565b505050565b610b9461193b565b806101018190555050565b6000610bab60fb6119b9565b905090565b610bc1610bbb61187a565b826119c7565b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790613d0d565b60405180910390fd5b610c0b838383611a5c565b505050565b6101015481565b600080306127106101015485610c2d9190613d5c565b610c379190613dcd565b915091509250929050565b60606000602867ffffffffffffffff811115610c6157610c606134c5565b5b6040519080825280601f01601f191660200182016040528015610c935781602001600182028036833780820191505090505b50905060005b6014811015610dfb576000816013610cb19190613dfe565b6008610cbd9190613d5c565b6002610cc99190613f65565b8573ffffffffffffffffffffffffffffffffffffffff16610cea9190613dcd565b60f81b9050600060108260f81c610d019190613fbd565b60f81b905060008160f81c6010610d189190613fee565b8360f81c610d26919061402b565b60f81b9050610d3482611236565b85856002610d429190613d5c565b81518110610d5357610d52614060565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350610d8b81611236565b856001866002610d9b9190613d5c565b610da5919061408f565b81518110610db657610db5614060565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505050508080610df3906140c3565b915050610c99565b5080915050919050565b60008060019054906101000a900460ff16159050808015610e365750600160008054906101000a900460ff1660ff16105b80610e635750610e4530611d55565b158015610e625750600160008054906101000a900460ff1660ff16145b5b610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e999061417d565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610edf576001600060016101000a81548160ff0219169083151502179055505b610ee98a8a611d78565b8760fc9081610ef89190614349565b508560fd81905550610f08611dd5565b610f10611e2e565b610f1987611e87565b8460fe81905550836101008190555082610101819055508161010260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508015610fcb5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610fc29190614456565b60405180910390a15b50505050505050505050565b610fdf61193b565b6000610fe9611383565b73ffffffffffffffffffffffffffffffffffffffff164760405161100c906144a2565b60006040518083038185875af1925050503d8060008114611049576040519150601f19603f3d011682016040523d82523d6000602084013e61104e565b606091505b505090508061105c57600080fd5b50565b61106761193b565b61106f611f4d565b565b61108c8383836040518060200160405280600081525061148b565b505050565b838361109d9190613d5c565b3410156110a957600080fd5b600061112b6110e13387876040516020016110c693929190614520565b60405160208183030381529060405280519060200120611fb0565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611fe0565b905061010260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461118857600080fd5b6111923386612007565b5050505050565b600060c960009054906101000a900460ff16905090565b6000806111bc83612128565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361122d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611224906145a9565b60405180910390fd5b80915050919050565b6000600a8260f81c60ff1610156112615760308260f81c61125791906145c9565b60f81b9050611277565b60578260f81c61127191906145c9565b60f81b90505b919050565b60ff6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90614670565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135361193b565b61135d6000611e87565b565b61136761193b565b61136f612165565b565b61137961193b565b8060fd8190555050565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060606680546113bc90613b46565b80601f01602080910402602001604051908101604052809291908181526020018280546113e890613b46565b80156114355780601f1061140a57610100808354040283529160200191611435565b820191906000526020600020905b81548152906001019060200180831161141857829003601f168201915b5050505050905090565b6114476121c8565b8060fd546114559190613d5c565b34101561146157600080fd5b61146b3382612007565b50565b61148061147961187a565b8383612212565b5050565b6101005481565b61149c61149661187a565b836119c7565b6114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290613d0d565b60405180910390fd5b6114e78484848461237e565b50505050565b60fd5481565b60606114fe826123da565b61150757600080fd5b600061151161241b565b90506000815111611531576040518060200160405280600081525061155c565b8061153b846124ad565b60405160200161154c929190614718565b6040516020818303038152906040525b915050919050565b60fe5481565b60606115b261157761099d565b611583610101546124ad565b61158c30610c42565b60405160200161159e939291906148c3565b60405160208183030381529060405261257b565b6040516020016115c29190614977565b604051602081830303815290604052905090565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167261193b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890614a0b565b60405180910390fd5b6116ea81611e87565b50565b6116f561193b565b60005b838390508110156117475761173484848381811061171957611718614060565b5b905060200201602081019061172e919061348e565b836126de565b808061173f906140c3565b9150506116f8565b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061181857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118285750611827826126fc565b5b9050919050565b611838816123da565b611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906145a9565b60405180910390fd5b50565b600033905090565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118f5836111b0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61194361187a565b73ffffffffffffffffffffffffffffffffffffffff16611961611383565b73ffffffffffffffffffffffffffffffffffffffff16146119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae90614a77565b60405180910390fd5b565b600081600001549050919050565b6000806119d3836111b0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a155750611a1481856115d6565b5b80611a5357508373ffffffffffffffffffffffffffffffffffffffff16611a3b84610a2f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7c826111b0565b73ffffffffffffffffffffffffffffffffffffffff1614611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990614b09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614b9b565b60405180910390fd5b611b4e8383836001612766565b8273ffffffffffffffffffffffffffffffffffffffff16611b6e826111b0565b73ffffffffffffffffffffffffffffffffffffffff1614611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90614b09565b60405180910390fd5b6069600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d50838383600161276c565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90614c2d565b60405180910390fd5b611dd18282612772565b5050565b600060019054906101000a900460ff16611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b90614c2d565b60405180910390fd5b611e2c6127e5565b565b600060019054906101000a900460ff16611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490614c2d565b60405180910390fd5b611e85612846565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f556128b2565b600060c960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f9961187a565b604051611fa69190613321565b60405180910390a1565b600081604051602001611fc39190614cc4565b604051602081830303815290604052805190602001209050919050565b6000806000611fef85856128fb565b91509150611ffc8161294c565b819250505092915050565b60fe548161201560fb6119b9565b61201f919061408f565b111561202a57600080fd5b60006101005414806120895750610100548160ff60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612086919061408f565b11155b61209257600080fd5b8060ff60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e1919061408f565b9250508190555060005b81811015612123576120fd60fb612ab2565b6121108361210b60fb6119b9565b6126de565b808061211b906140c3565b9150506120eb565b505050565b60006067600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61216d6121c8565b600160c960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121b161187a565b6040516121be9190613321565b60405180910390a1565b6121d0611199565b15612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614d36565b60405180910390fd5b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227790614da2565b60405180910390fd5b80606a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161237191906131b0565b60405180910390a3505050565b612389848484611a5c565b61239584848484612ac8565b6123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90614e34565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166123fc83612128565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060fc805461242a90613b46565b80601f016020809104026020016040519081016040528092919081815260200182805461245690613b46565b80156124a35780601f10612478576101008083540402835291602001916124a3565b820191906000526020600020905b81548152906001019060200180831161248657829003601f168201915b5050505050905090565b6060600060016124bc84612c4f565b01905060008167ffffffffffffffff8111156124db576124da6134c5565b5b6040519080825280601f01601f19166020018201604052801561250d5781602001600182028036833780820191505090505b509050600082602001820190505b600115612570578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256457612563613d9e565b5b0494506000850361251b575b819350505050919050565b6060600082510361259d576040518060200160405280600081525090506126d9565b600060405180606001604052806040815260200161527860409139905060006003600285516125cc919061408f565b6125d69190613dcd565b60046125e29190613d5c565b67ffffffffffffffff8111156125fb576125fa6134c5565b5b6040519080825280601f01601f19166020018201604052801561262d5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612699576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184536001840193505061263e565b50506003865106600181146126b557600281146126c8576126d0565b603d6001830353603d60028303536126d0565b603d60018303535b50505080925050505b919050565b6126f8828260405180602001604052806000815250612da2565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600060019054906101000a900460ff166127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b890614c2d565b60405180910390fd5b81606590816127d09190614349565b5080606690816127e09190614349565b505050565b600060019054906101000a900460ff16612834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282b90614c2d565b60405180910390fd5b61284461283f61187a565b611e87565b565b600060019054906101000a900460ff16612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90614c2d565b60405180910390fd5b600060c960006101000a81548160ff021916908315150217905550565b6128ba611199565b6128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614ea0565b60405180910390fd5b565b600080604183510361293c5760008060006020860151925060408601519150606086015160001a905061293087828585612dfd565b94509450505050612945565b60006002915091505b9250929050565b600060048111156129605761295f614ec0565b5b81600481111561297357612972614ec0565b5b0315612aaf576001600481111561298d5761298c614ec0565b5b8160048111156129a05761299f614ec0565b5b036129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790614f3b565b60405180910390fd5b600260048111156129f4576129f3614ec0565b5b816004811115612a0757612a06614ec0565b5b03612a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3e90614fa7565b60405180910390fd5b60036004811115612a5b57612a5a614ec0565b5b816004811115612a6e57612a6d614ec0565b5b03612aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa590615039565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b6000612ae98473ffffffffffffffffffffffffffffffffffffffff16611d55565b15612c42578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b1261187a565b8786866040518563ffffffff1660e01b8152600401612b3494939291906150ae565b6020604051808303816000875af1925050508015612b7057506040513d601f19601f82011682018060405250810190612b6d919061510f565b60015b612bf2573d8060008114612ba0576040519150601f19603f3d011682016040523d82523d6000602084013e612ba5565b606091505b506000815103612bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be190614e34565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c47565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612cad577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612ca357612ca2613d9e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612cea576d04ee2d6d415b85acef81000000008381612ce057612cdf613d9e565b5b0492506020810190505b662386f26fc100008310612d1957662386f26fc100008381612d0f57612d0e613d9e565b5b0492506010810190505b6305f5e1008310612d42576305f5e1008381612d3857612d37613d9e565b5b0492506008810190505b6127108310612d67576127108381612d5d57612d5c613d9e565b5b0492506004810190505b60648310612d8a5760648381612d8057612d7f613d9e565b5b0492506002810190505b600a8310612d99576001810190505b80915050919050565b612dac8383612edf565b612db96000848484612ac8565b612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def90614e34565b60405180910390fd5b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612e38576000600391509150612ed6565b600060018787878760405160008152602001604052604051612e5d949392919061515a565b6020604051602081039080840390855afa158015612e7f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ecd57600060019250925050612ed6565b80600092509250505b94509492505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f45906151eb565b60405180910390fd5b612f57816123da565b15612f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8e90615257565b60405180910390fd5b612fa5600083836001612766565b612fae816123da565b15612fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe590615257565b60405180910390fd5b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f860008383600161276c565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314581613110565b811461315057600080fd5b50565b6000813590506131628161313c565b92915050565b60006020828403121561317e5761317d613106565b5b600061318c84828501613153565b91505092915050565b60008115159050919050565b6131aa81613195565b82525050565b60006020820190506131c560008301846131a1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132055780820151818401526020810190506131ea565b60008484015250505050565b6000601f19601f8301169050919050565b600061322d826131cb565b61323781856131d6565b93506132478185602086016131e7565b61325081613211565b840191505092915050565b600060208201905081810360008301526132758184613222565b905092915050565b6000819050919050565b6132908161327d565b811461329b57600080fd5b50565b6000813590506132ad81613287565b92915050565b6000602082840312156132c9576132c8613106565b5b60006132d78482850161329e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061330b826132e0565b9050919050565b61331b81613300565b82525050565b60006020820190506133366000830184613312565b92915050565b61334581613300565b811461335057600080fd5b50565b6000813590506133628161333c565b92915050565b6000806040838503121561337f5761337e613106565b5b600061338d85828601613353565b925050602061339e8582860161329e565b9150509250929050565b6133b18161327d565b82525050565b60006020820190506133cc60008301846133a8565b92915050565b6000806000606084860312156133eb576133ea613106565b5b60006133f986828701613353565b935050602061340a86828701613353565b925050604061341b8682870161329e565b9150509250925092565b6000806040838503121561343c5761343b613106565b5b600061344a8582860161329e565b925050602061345b8582860161329e565b9150509250929050565b600060408201905061347a6000830185613312565b61348760208301846133a8565b9392505050565b6000602082840312156134a4576134a3613106565b5b60006134b284828501613353565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134fd82613211565b810181811067ffffffffffffffff8211171561351c5761351b6134c5565b5b80604052505050565b600061352f6130fc565b905061353b82826134f4565b919050565b600067ffffffffffffffff82111561355b5761355a6134c5565b5b61356482613211565b9050602081019050919050565b82818337600083830152505050565b600061359361358e84613540565b613525565b9050828152602081018484840111156135af576135ae6134c0565b5b6135ba848285613571565b509392505050565b600082601f8301126135d7576135d66134bb565b5b81356135e7848260208601613580565b91505092915050565b60008060008060008060008060006101208a8c03121561361357613612613106565b5b60008a013567ffffffffffffffff8111156136315761363061310b565b5b61363d8c828d016135c2565b99505060208a013567ffffffffffffffff81111561365e5761365d61310b565b5b61366a8c828d016135c2565b98505060408a013567ffffffffffffffff81111561368b5761368a61310b565b5b6136978c828d016135c2565b97505060606136a88c828d01613353565b96505060806136b98c828d0161329e565b95505060a06136ca8c828d0161329e565b94505060c06136db8c828d0161329e565b93505060e06136ec8c828d0161329e565b9250506101006136fe8c828d01613353565b9150509295985092959850929598565b600080fd5b600080fd5b60008083601f84011261372e5761372d6134bb565b5b8235905067ffffffffffffffff81111561374b5761374a61370e565b5b60208301915083600182028301111561376757613766613713565b5b9250929050565b6000806000806060858703121561378857613787613106565b5b60006137968782880161329e565b94505060206137a78782880161329e565b935050604085013567ffffffffffffffff8111156137c8576137c761310b565b5b6137d487828801613718565b925092505092959194509250565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b613817816137e2565b811461382257600080fd5b50565b6000813590506138348161380e565b92915050565b6000602082840312156138505761384f613106565b5b600061385e84828501613825565b91505092915050565b613870816137e2565b82525050565b600060208201905061388b6000830184613867565b92915050565b61389a81613195565b81146138a557600080fd5b50565b6000813590506138b781613891565b92915050565b600080604083850312156138d4576138d3613106565b5b60006138e285828601613353565b92505060206138f3858286016138a8565b9150509250929050565b600067ffffffffffffffff821115613918576139176134c5565b5b61392182613211565b9050602081019050919050565b600061394161393c846138fd565b613525565b90508281526020810184848401111561395d5761395c6134c0565b5b613968848285613571565b509392505050565b600082601f830112613985576139846134bb565b5b813561399584826020860161392e565b91505092915050565b600080600080608085870312156139b8576139b7613106565b5b60006139c687828801613353565b94505060206139d787828801613353565b93505060406139e88782880161329e565b925050606085013567ffffffffffffffff811115613a0957613a0861310b565b5b613a1587828801613970565b91505092959194509250565b60008060408385031215613a3857613a37613106565b5b6000613a4685828601613353565b9250506020613a5785828601613353565b9150509250929050565b60008083601f840112613a7757613a766134bb565b5b8235905067ffffffffffffffff811115613a9457613a9361370e565b5b602083019150836020820283011115613ab057613aaf613713565b5b9250929050565b600080600060408486031215613ad057613acf613106565b5b600084013567ffffffffffffffff811115613aee57613aed61310b565b5b613afa86828701613a61565b93509350506020613b0d8682870161329e565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b5e57607f821691505b602082108103613b7157613b70613b17565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd36021836131d6565b9150613bde82613b77565b604082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613c65603d836131d6565b9150613c7082613c09565b604082019050919050565b60006020820190508181036000830152613c9481613c58565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613cf7602d836131d6565b9150613d0282613c9b565b604082019050919050565b60006020820190508181036000830152613d2681613cea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d678261327d565b9150613d728361327d565b9250828202613d808161327d565b91508282048414831517613d9757613d96613d2d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dd88261327d565b9150613de38361327d565b925082613df357613df2613d9e565b5b828204905092915050565b6000613e098261327d565b9150613e148361327d565b9250828203905081811115613e2c57613e2b613d2d565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115613e8957808604811115613e6557613e64613d2d565b5b6001851615613e745780820291505b8081029050613e8285613e32565b9450613e49565b94509492505050565b600082613ea25760019050613f5e565b81613eb05760009050613f5e565b8160018114613ec65760028114613ed057613eff565b6001915050613f5e565b60ff841115613ee257613ee1613d2d565b5b8360020a915084821115613ef957613ef8613d2d565b5b50613f5e565b5060208310610133831016604e8410600b8410161715613f345782820a905083811115613f2f57613f2e613d2d565b5b613f5e565b613f418484846001613e3f565b92509050818404811115613f5857613f57613d2d565b5b81810290505b9392505050565b6000613f708261327d565b9150613f7b8361327d565b9250613fa87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613e92565b905092915050565b600060ff82169050919050565b6000613fc882613fb0565b9150613fd383613fb0565b925082613fe357613fe2613d9e565b5b828204905092915050565b6000613ff982613fb0565b915061400483613fb0565b925082820261401281613fb0565b915080821461402457614023613d2d565b5b5092915050565b600061403682613fb0565b915061404183613fb0565b9250828203905060ff81111561405a57614059613d2d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061409a8261327d565b91506140a58361327d565b92508282019050808211156140bd576140bc613d2d565b5b92915050565b60006140ce8261327d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614100576140ff613d2d565b5b600182019050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000614167602e836131d6565b91506141728261410b565b604082019050919050565b600060208201905081810360008301526141968161415a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026141ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141c2565b61420986836141c2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061424661424161423c8461327d565b614221565b61327d565b9050919050565b6000819050919050565b6142608361422b565b61427461426c8261424d565b8484546141cf565b825550505050565b600090565b61428961427c565b614294818484614257565b505050565b5b818110156142b8576142ad600082614281565b60018101905061429a565b5050565b601f8211156142fd576142ce8161419d565b6142d7846141b2565b810160208510156142e6578190505b6142fa6142f2856141b2565b830182614299565b50505b505050565b600082821c905092915050565b600061432060001984600802614302565b1980831691505092915050565b6000614339838361430f565b9150826002028217905092915050565b614352826131cb565b67ffffffffffffffff81111561436b5761436a6134c5565b5b6143758254613b46565b6143808282856142bc565b600060209050601f8311600181146143b357600084156143a1578287015190505b6143ab858261432d565b865550614413565b601f1984166143c18661419d565b60005b828110156143e9578489015182556001820191506020850194506020810190506143c4565b868310156144065784890151614402601f89168261430f565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b600061444061443b6144368461441b565b614221565b613fb0565b9050919050565b61445081614425565b82525050565b600060208201905061446b6000830184614447565b92915050565b600081905092915050565b50565b600061448c600083614471565b91506144978261447c565b600082019050919050565b60006144ad8261447f565b9150819050919050565b60008160601b9050919050565b60006144cf826144b7565b9050919050565b60006144e1826144c4565b9050919050565b6144f96144f482613300565b6144d6565b82525050565b6000819050919050565b61451a6145158261327d565b6144ff565b82525050565b600061452c82866144e8565b60148201915061453c8285614509565b60208201915061454c8284614509565b602082019150819050949350505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006145936018836131d6565b915061459e8261455d565b602082019050919050565b600060208201905081810360008301526145c281614586565b9050919050565b60006145d482613fb0565b91506145df83613fb0565b9250828201905060ff8111156145f8576145f7613d2d565b5b92915050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061465a6029836131d6565b9150614665826145fe565b604082019050919050565b600060208201905081810360008301526146898161464d565b9050919050565b600081905092915050565b60006146a6826131cb565b6146b08185614690565b93506146c08185602086016131e7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614702600583614690565b915061470d826146cc565b600582019050919050565b6000614724828561469b565b9150614730828461469b565b915061473b826146f5565b91508190509392505050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b600061477d600983614690565b915061478882614747565b600982019050919050565b7f222c2273656c6c65725f6665655f62617369735f706f696e7473223a00000000600082015250565b60006147c9601c83614690565b91506147d482614793565b601c82019050919050565b7f2c226665655f726563697069656e74223a220000000000000000000000000000600082015250565b6000614815601283614690565b9150614820826147df565b601282019050919050565b7f3078000000000000000000000000000000000000000000000000000000000000600082015250565b6000614861600283614690565b915061486c8261482b565b600282019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006148ad600283614690565b91506148b882614877565b600282019050919050565b60006148ce82614770565b91506148da828661469b565b91506148e5826147bc565b91506148f1828561469b565b91506148fc82614808565b915061490782614854565b9150614913828461469b565b915061491e826148a0565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000614961601d83614690565b915061496c8261492b565b601d82019050919050565b600061498282614954565b915061498e828461469b565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149f56026836131d6565b9150614a0082614999565b604082019050919050565b60006020820190508181036000830152614a24816149e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a616020836131d6565b9150614a6c82614a2b565b602082019050919050565b60006020820190508181036000830152614a9081614a54565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614af36025836131d6565b9150614afe82614a97565b604082019050919050565b60006020820190508181036000830152614b2281614ae6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b856024836131d6565b9150614b9082614b29565b604082019050919050565b60006020820190508181036000830152614bb481614b78565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000614c17602b836131d6565b9150614c2282614bbb565b604082019050919050565b60006020820190508181036000830152614c4681614c0a565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614c83601c83614690565b9150614c8e82614c4d565b601c82019050919050565b6000819050919050565b6000819050919050565b614cbe614cb982614c99565b614ca3565b82525050565b6000614ccf82614c76565b9150614cdb8284614cad565b60208201915081905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614d206010836131d6565b9150614d2b82614cea565b602082019050919050565b60006020820190508181036000830152614d4f81614d13565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614d8c6019836131d6565b9150614d9782614d56565b602082019050919050565b60006020820190508181036000830152614dbb81614d7f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614e1e6032836131d6565b9150614e2982614dc2565b604082019050919050565b60006020820190508181036000830152614e4d81614e11565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614e8a6014836131d6565b9150614e9582614e54565b602082019050919050565b60006020820190508181036000830152614eb981614e7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614f256018836131d6565b9150614f3082614eef565b602082019050919050565b60006020820190508181036000830152614f5481614f18565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614f91601f836131d6565b9150614f9c82614f5b565b602082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006150236022836131d6565b915061502e82614fc7565b604082019050919050565b6000602082019050818103600083015261505281615016565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061508082615059565b61508a8185615064565b935061509a8185602086016131e7565b6150a381613211565b840191505092915050565b60006080820190506150c36000830187613312565b6150d06020830186613312565b6150dd60408301856133a8565b81810360608301526150ef8184615075565b905095945050505050565b6000815190506151098161313c565b92915050565b60006020828403121561512557615124613106565b5b6000615133848285016150fa565b91505092915050565b61514581614c99565b82525050565b61515481613fb0565b82525050565b600060808201905061516f600083018761513c565b61517c602083018661514b565b615189604083018561513c565b615196606083018461513c565b95945050505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006151d56020836131d6565b91506151e08261519f565b602082019050919050565b60006020820190508181036000830152615204816151c8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615241601c836131d6565b915061524c8261520b565b602082019050919050565b6000602082019050818103600083015261527081615234565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122035455164028110231c6773cbcab5fd75da3e672c8ada56372911c76c9fe7947a64736f6c63430008120033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636dc407f911610118578063b29509f3116100a0578063d5abeb011161006f578063d5abeb011461076e578063e8a3d48514610799578063e985e9c5146107c4578063f2fde38b14610801578063fd1fc4a01461082a5761020f565b8063b29509f3146106b2578063b88d4fde146106dd578063bdb4b84814610706578063c87b56dd146107315761020f565b80638545f4ea116100e75780638545f4ea146105ee5780638da5cb5b1461061757806395d89b4114610642578063a0712d681461066d578063a22cb465146106895761020f565b80636dc407f91461054657806370a0823114610583578063715018a6146105c05780638456cb59146105d75761020f565b80632c6e75981161019b57806342842e0e1161016a57806342842e0e1461045c57806343774ebd146104855780635c975abb146104a15780636352211e146104cc57806369f9ad2f146105095761020f565b80632c6e7598146103c85780633a00ce7b146104055780633ccfd60b1461042e5780633f4ba83a146104455761020f565b8063167c694c116101e2578063167c694c146102e257806318160ddd1461030b57806323b872dd1461033657806327ddd13e1461035f5780632a55205a1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613168565b610853565b60405161024891906131b0565b60405180910390f35b34801561025d57600080fd5b5061026661099d565b604051610273919061325b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906132b3565b610a2f565b6040516102b09190613321565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613368565b610a75565b005b3480156102ee57600080fd5b50610309600480360381019061030491906132b3565b610b8c565b005b34801561031757600080fd5b50610320610b9f565b60405161032d91906133b7565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906133d2565b610bb0565b005b34801561036b57600080fd5b50610374610c10565b60405161038191906133b7565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613425565b610c17565b6040516103bf929190613465565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea919061348e565b610c42565b6040516103fc919061325b565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906135f0565b610e05565b005b34801561043a57600080fd5b50610443610fd7565b005b34801561045157600080fd5b5061045a61105f565b005b34801561046857600080fd5b50610483600480360381019061047e91906133d2565b611071565b005b61049f600480360381019061049a919061376e565b611091565b005b3480156104ad57600080fd5b506104b6611199565b6040516104c391906131b0565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906132b3565b6111b0565b6040516105009190613321565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061383a565b611236565b60405161053d9190613876565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061348e565b61127c565b60405161057a91906133b7565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a5919061348e565b611294565b6040516105b791906133b7565b60405180910390f35b3480156105cc57600080fd5b506105d561134b565b005b3480156105e357600080fd5b506105ec61135f565b005b3480156105fa57600080fd5b50610615600480360381019061061091906132b3565b611371565b005b34801561062357600080fd5b5061062c611383565b6040516106399190613321565b60405180910390f35b34801561064e57600080fd5b506106576113ad565b604051610664919061325b565b60405180910390f35b610687600480360381019061068291906132b3565b61143f565b005b34801561069557600080fd5b506106b060048036038101906106ab91906138bd565b61146e565b005b3480156106be57600080fd5b506106c7611484565b6040516106d491906133b7565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff919061399e565b61148b565b005b34801561071257600080fd5b5061071b6114ed565b60405161072891906133b7565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906132b3565b6114f3565b604051610765919061325b565b60405180910390f35b34801561077a57600080fd5b50610783611564565b60405161079091906133b7565b60405180910390f35b3480156107a557600080fd5b506107ae61156a565b6040516107bb919061325b565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190613a21565b6115d6565b6040516107f891906131b0565b60405180910390f35b34801561080d57600080fd5b506108286004803603810190610823919061348e565b61166a565b005b34801561083657600080fd5b50610851600480360381019061084c9190613ab7565b6116ed565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098657507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657506109958261174d565b5b9050919050565b6060606580546109ac90613b46565b80601f01602080910402602001604051908101604052809291908181526020018280546109d890613b46565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b5050505050905090565b6000610a3a8261182f565b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a80826111b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790613be9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0f61187a565b73ffffffffffffffffffffffffffffffffffffffff161480610b3e5750610b3d81610b3861187a565b6115d6565b5b610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490613c7b565b60405180910390fd5b610b878383611882565b505050565b610b9461193b565b806101018190555050565b6000610bab60fb6119b9565b905090565b610bc1610bbb61187a565b826119c7565b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790613d0d565b60405180910390fd5b610c0b838383611a5c565b505050565b6101015481565b600080306127106101015485610c2d9190613d5c565b610c379190613dcd565b915091509250929050565b60606000602867ffffffffffffffff811115610c6157610c606134c5565b5b6040519080825280601f01601f191660200182016040528015610c935781602001600182028036833780820191505090505b50905060005b6014811015610dfb576000816013610cb19190613dfe565b6008610cbd9190613d5c565b6002610cc99190613f65565b8573ffffffffffffffffffffffffffffffffffffffff16610cea9190613dcd565b60f81b9050600060108260f81c610d019190613fbd565b60f81b905060008160f81c6010610d189190613fee565b8360f81c610d26919061402b565b60f81b9050610d3482611236565b85856002610d429190613d5c565b81518110610d5357610d52614060565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350610d8b81611236565b856001866002610d9b9190613d5c565b610da5919061408f565b81518110610db657610db5614060565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505050508080610df3906140c3565b915050610c99565b5080915050919050565b60008060019054906101000a900460ff16159050808015610e365750600160008054906101000a900460ff1660ff16105b80610e635750610e4530611d55565b158015610e625750600160008054906101000a900460ff1660ff16145b5b610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e999061417d565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610edf576001600060016101000a81548160ff0219169083151502179055505b610ee98a8a611d78565b8760fc9081610ef89190614349565b508560fd81905550610f08611dd5565b610f10611e2e565b610f1987611e87565b8460fe81905550836101008190555082610101819055508161010260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508015610fcb5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610fc29190614456565b60405180910390a15b50505050505050505050565b610fdf61193b565b6000610fe9611383565b73ffffffffffffffffffffffffffffffffffffffff164760405161100c906144a2565b60006040518083038185875af1925050503d8060008114611049576040519150601f19603f3d011682016040523d82523d6000602084013e61104e565b606091505b505090508061105c57600080fd5b50565b61106761193b565b61106f611f4d565b565b61108c8383836040518060200160405280600081525061148b565b505050565b838361109d9190613d5c565b3410156110a957600080fd5b600061112b6110e13387876040516020016110c693929190614520565b60405160208183030381529060405280519060200120611fb0565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611fe0565b905061010260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461118857600080fd5b6111923386612007565b5050505050565b600060c960009054906101000a900460ff16905090565b6000806111bc83612128565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361122d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611224906145a9565b60405180910390fd5b80915050919050565b6000600a8260f81c60ff1610156112615760308260f81c61125791906145c9565b60f81b9050611277565b60578260f81c61127191906145c9565b60f81b90505b919050565b60ff6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90614670565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135361193b565b61135d6000611e87565b565b61136761193b565b61136f612165565b565b61137961193b565b8060fd8190555050565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060606680546113bc90613b46565b80601f01602080910402602001604051908101604052809291908181526020018280546113e890613b46565b80156114355780601f1061140a57610100808354040283529160200191611435565b820191906000526020600020905b81548152906001019060200180831161141857829003601f168201915b5050505050905090565b6114476121c8565b8060fd546114559190613d5c565b34101561146157600080fd5b61146b3382612007565b50565b61148061147961187a565b8383612212565b5050565b6101005481565b61149c61149661187a565b836119c7565b6114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290613d0d565b60405180910390fd5b6114e78484848461237e565b50505050565b60fd5481565b60606114fe826123da565b61150757600080fd5b600061151161241b565b90506000815111611531576040518060200160405280600081525061155c565b8061153b846124ad565b60405160200161154c929190614718565b6040516020818303038152906040525b915050919050565b60fe5481565b60606115b261157761099d565b611583610101546124ad565b61158c30610c42565b60405160200161159e939291906148c3565b60405160208183030381529060405261257b565b6040516020016115c29190614977565b604051602081830303815290604052905090565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167261193b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890614a0b565b60405180910390fd5b6116ea81611e87565b50565b6116f561193b565b60005b838390508110156117475761173484848381811061171957611718614060565b5b905060200201602081019061172e919061348e565b836126de565b808061173f906140c3565b9150506116f8565b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061181857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118285750611827826126fc565b5b9050919050565b611838816123da565b611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906145a9565b60405180910390fd5b50565b600033905090565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118f5836111b0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61194361187a565b73ffffffffffffffffffffffffffffffffffffffff16611961611383565b73ffffffffffffffffffffffffffffffffffffffff16146119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae90614a77565b60405180910390fd5b565b600081600001549050919050565b6000806119d3836111b0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a155750611a1481856115d6565b5b80611a5357508373ffffffffffffffffffffffffffffffffffffffff16611a3b84610a2f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7c826111b0565b73ffffffffffffffffffffffffffffffffffffffff1614611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990614b09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614b9b565b60405180910390fd5b611b4e8383836001612766565b8273ffffffffffffffffffffffffffffffffffffffff16611b6e826111b0565b73ffffffffffffffffffffffffffffffffffffffff1614611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90614b09565b60405180910390fd5b6069600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d50838383600161276c565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90614c2d565b60405180910390fd5b611dd18282612772565b5050565b600060019054906101000a900460ff16611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b90614c2d565b60405180910390fd5b611e2c6127e5565b565b600060019054906101000a900460ff16611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490614c2d565b60405180910390fd5b611e85612846565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f556128b2565b600060c960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f9961187a565b604051611fa69190613321565b60405180910390a1565b600081604051602001611fc39190614cc4565b604051602081830303815290604052805190602001209050919050565b6000806000611fef85856128fb565b91509150611ffc8161294c565b819250505092915050565b60fe548161201560fb6119b9565b61201f919061408f565b111561202a57600080fd5b60006101005414806120895750610100548160ff60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612086919061408f565b11155b61209257600080fd5b8060ff60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e1919061408f565b9250508190555060005b81811015612123576120fd60fb612ab2565b6121108361210b60fb6119b9565b6126de565b808061211b906140c3565b9150506120eb565b505050565b60006067600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61216d6121c8565b600160c960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121b161187a565b6040516121be9190613321565b60405180910390a1565b6121d0611199565b15612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614d36565b60405180910390fd5b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227790614da2565b60405180910390fd5b80606a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161237191906131b0565b60405180910390a3505050565b612389848484611a5c565b61239584848484612ac8565b6123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90614e34565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166123fc83612128565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060fc805461242a90613b46565b80601f016020809104026020016040519081016040528092919081815260200182805461245690613b46565b80156124a35780601f10612478576101008083540402835291602001916124a3565b820191906000526020600020905b81548152906001019060200180831161248657829003601f168201915b5050505050905090565b6060600060016124bc84612c4f565b01905060008167ffffffffffffffff8111156124db576124da6134c5565b5b6040519080825280601f01601f19166020018201604052801561250d5781602001600182028036833780820191505090505b509050600082602001820190505b600115612570578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256457612563613d9e565b5b0494506000850361251b575b819350505050919050565b6060600082510361259d576040518060200160405280600081525090506126d9565b600060405180606001604052806040815260200161527860409139905060006003600285516125cc919061408f565b6125d69190613dcd565b60046125e29190613d5c565b67ffffffffffffffff8111156125fb576125fa6134c5565b5b6040519080825280601f01601f19166020018201604052801561262d5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612699576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184536001840193505061263e565b50506003865106600181146126b557600281146126c8576126d0565b603d6001830353603d60028303536126d0565b603d60018303535b50505080925050505b919050565b6126f8828260405180602001604052806000815250612da2565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600060019054906101000a900460ff166127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b890614c2d565b60405180910390fd5b81606590816127d09190614349565b5080606690816127e09190614349565b505050565b600060019054906101000a900460ff16612834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282b90614c2d565b60405180910390fd5b61284461283f61187a565b611e87565b565b600060019054906101000a900460ff16612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90614c2d565b60405180910390fd5b600060c960006101000a81548160ff021916908315150217905550565b6128ba611199565b6128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614ea0565b60405180910390fd5b565b600080604183510361293c5760008060006020860151925060408601519150606086015160001a905061293087828585612dfd565b94509450505050612945565b60006002915091505b9250929050565b600060048111156129605761295f614ec0565b5b81600481111561297357612972614ec0565b5b0315612aaf576001600481111561298d5761298c614ec0565b5b8160048111156129a05761299f614ec0565b5b036129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790614f3b565b60405180910390fd5b600260048111156129f4576129f3614ec0565b5b816004811115612a0757612a06614ec0565b5b03612a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3e90614fa7565b60405180910390fd5b60036004811115612a5b57612a5a614ec0565b5b816004811115612a6e57612a6d614ec0565b5b03612aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa590615039565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b6000612ae98473ffffffffffffffffffffffffffffffffffffffff16611d55565b15612c42578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b1261187a565b8786866040518563ffffffff1660e01b8152600401612b3494939291906150ae565b6020604051808303816000875af1925050508015612b7057506040513d601f19601f82011682018060405250810190612b6d919061510f565b60015b612bf2573d8060008114612ba0576040519150601f19603f3d011682016040523d82523d6000602084013e612ba5565b606091505b506000815103612bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be190614e34565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c47565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612cad577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612ca357612ca2613d9e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612cea576d04ee2d6d415b85acef81000000008381612ce057612cdf613d9e565b5b0492506020810190505b662386f26fc100008310612d1957662386f26fc100008381612d0f57612d0e613d9e565b5b0492506010810190505b6305f5e1008310612d42576305f5e1008381612d3857612d37613d9e565b5b0492506008810190505b6127108310612d67576127108381612d5d57612d5c613d9e565b5b0492506004810190505b60648310612d8a5760648381612d8057612d7f613d9e565b5b0492506002810190505b600a8310612d99576001810190505b80915050919050565b612dac8383612edf565b612db96000848484612ac8565b612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def90614e34565b60405180910390fd5b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612e38576000600391509150612ed6565b600060018787878760405160008152602001604052604051612e5d949392919061515a565b6020604051602081039080840390855afa158015612e7f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ecd57600060019250925050612ed6565b80600092509250505b94509492505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f45906151eb565b60405180910390fd5b612f57816123da565b15612f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8e90615257565b60405180910390fd5b612fa5600083836001612766565b612fae816123da565b15612fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe590615257565b60405180910390fd5b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f860008383600161276c565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314581613110565b811461315057600080fd5b50565b6000813590506131628161313c565b92915050565b60006020828403121561317e5761317d613106565b5b600061318c84828501613153565b91505092915050565b60008115159050919050565b6131aa81613195565b82525050565b60006020820190506131c560008301846131a1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132055780820151818401526020810190506131ea565b60008484015250505050565b6000601f19601f8301169050919050565b600061322d826131cb565b61323781856131d6565b93506132478185602086016131e7565b61325081613211565b840191505092915050565b600060208201905081810360008301526132758184613222565b905092915050565b6000819050919050565b6132908161327d565b811461329b57600080fd5b50565b6000813590506132ad81613287565b92915050565b6000602082840312156132c9576132c8613106565b5b60006132d78482850161329e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061330b826132e0565b9050919050565b61331b81613300565b82525050565b60006020820190506133366000830184613312565b92915050565b61334581613300565b811461335057600080fd5b50565b6000813590506133628161333c565b92915050565b6000806040838503121561337f5761337e613106565b5b600061338d85828601613353565b925050602061339e8582860161329e565b9150509250929050565b6133b18161327d565b82525050565b60006020820190506133cc60008301846133a8565b92915050565b6000806000606084860312156133eb576133ea613106565b5b60006133f986828701613353565b935050602061340a86828701613353565b925050604061341b8682870161329e565b9150509250925092565b6000806040838503121561343c5761343b613106565b5b600061344a8582860161329e565b925050602061345b8582860161329e565b9150509250929050565b600060408201905061347a6000830185613312565b61348760208301846133a8565b9392505050565b6000602082840312156134a4576134a3613106565b5b60006134b284828501613353565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134fd82613211565b810181811067ffffffffffffffff8211171561351c5761351b6134c5565b5b80604052505050565b600061352f6130fc565b905061353b82826134f4565b919050565b600067ffffffffffffffff82111561355b5761355a6134c5565b5b61356482613211565b9050602081019050919050565b82818337600083830152505050565b600061359361358e84613540565b613525565b9050828152602081018484840111156135af576135ae6134c0565b5b6135ba848285613571565b509392505050565b600082601f8301126135d7576135d66134bb565b5b81356135e7848260208601613580565b91505092915050565b60008060008060008060008060006101208a8c03121561361357613612613106565b5b60008a013567ffffffffffffffff8111156136315761363061310b565b5b61363d8c828d016135c2565b99505060208a013567ffffffffffffffff81111561365e5761365d61310b565b5b61366a8c828d016135c2565b98505060408a013567ffffffffffffffff81111561368b5761368a61310b565b5b6136978c828d016135c2565b97505060606136a88c828d01613353565b96505060806136b98c828d0161329e565b95505060a06136ca8c828d0161329e565b94505060c06136db8c828d0161329e565b93505060e06136ec8c828d0161329e565b9250506101006136fe8c828d01613353565b9150509295985092959850929598565b600080fd5b600080fd5b60008083601f84011261372e5761372d6134bb565b5b8235905067ffffffffffffffff81111561374b5761374a61370e565b5b60208301915083600182028301111561376757613766613713565b5b9250929050565b6000806000806060858703121561378857613787613106565b5b60006137968782880161329e565b94505060206137a78782880161329e565b935050604085013567ffffffffffffffff8111156137c8576137c761310b565b5b6137d487828801613718565b925092505092959194509250565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b613817816137e2565b811461382257600080fd5b50565b6000813590506138348161380e565b92915050565b6000602082840312156138505761384f613106565b5b600061385e84828501613825565b91505092915050565b613870816137e2565b82525050565b600060208201905061388b6000830184613867565b92915050565b61389a81613195565b81146138a557600080fd5b50565b6000813590506138b781613891565b92915050565b600080604083850312156138d4576138d3613106565b5b60006138e285828601613353565b92505060206138f3858286016138a8565b9150509250929050565b600067ffffffffffffffff821115613918576139176134c5565b5b61392182613211565b9050602081019050919050565b600061394161393c846138fd565b613525565b90508281526020810184848401111561395d5761395c6134c0565b5b613968848285613571565b509392505050565b600082601f830112613985576139846134bb565b5b813561399584826020860161392e565b91505092915050565b600080600080608085870312156139b8576139b7613106565b5b60006139c687828801613353565b94505060206139d787828801613353565b93505060406139e88782880161329e565b925050606085013567ffffffffffffffff811115613a0957613a0861310b565b5b613a1587828801613970565b91505092959194509250565b60008060408385031215613a3857613a37613106565b5b6000613a4685828601613353565b9250506020613a5785828601613353565b9150509250929050565b60008083601f840112613a7757613a766134bb565b5b8235905067ffffffffffffffff811115613a9457613a9361370e565b5b602083019150836020820283011115613ab057613aaf613713565b5b9250929050565b600080600060408486031215613ad057613acf613106565b5b600084013567ffffffffffffffff811115613aee57613aed61310b565b5b613afa86828701613a61565b93509350506020613b0d8682870161329e565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b5e57607f821691505b602082108103613b7157613b70613b17565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd36021836131d6565b9150613bde82613b77565b604082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613c65603d836131d6565b9150613c7082613c09565b604082019050919050565b60006020820190508181036000830152613c9481613c58565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613cf7602d836131d6565b9150613d0282613c9b565b604082019050919050565b60006020820190508181036000830152613d2681613cea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d678261327d565b9150613d728361327d565b9250828202613d808161327d565b91508282048414831517613d9757613d96613d2d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dd88261327d565b9150613de38361327d565b925082613df357613df2613d9e565b5b828204905092915050565b6000613e098261327d565b9150613e148361327d565b9250828203905081811115613e2c57613e2b613d2d565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115613e8957808604811115613e6557613e64613d2d565b5b6001851615613e745780820291505b8081029050613e8285613e32565b9450613e49565b94509492505050565b600082613ea25760019050613f5e565b81613eb05760009050613f5e565b8160018114613ec65760028114613ed057613eff565b6001915050613f5e565b60ff841115613ee257613ee1613d2d565b5b8360020a915084821115613ef957613ef8613d2d565b5b50613f5e565b5060208310610133831016604e8410600b8410161715613f345782820a905083811115613f2f57613f2e613d2d565b5b613f5e565b613f418484846001613e3f565b92509050818404811115613f5857613f57613d2d565b5b81810290505b9392505050565b6000613f708261327d565b9150613f7b8361327d565b9250613fa87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613e92565b905092915050565b600060ff82169050919050565b6000613fc882613fb0565b9150613fd383613fb0565b925082613fe357613fe2613d9e565b5b828204905092915050565b6000613ff982613fb0565b915061400483613fb0565b925082820261401281613fb0565b915080821461402457614023613d2d565b5b5092915050565b600061403682613fb0565b915061404183613fb0565b9250828203905060ff81111561405a57614059613d2d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061409a8261327d565b91506140a58361327d565b92508282019050808211156140bd576140bc613d2d565b5b92915050565b60006140ce8261327d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614100576140ff613d2d565b5b600182019050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000614167602e836131d6565b91506141728261410b565b604082019050919050565b600060208201905081810360008301526141968161415a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026141ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141c2565b61420986836141c2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061424661424161423c8461327d565b614221565b61327d565b9050919050565b6000819050919050565b6142608361422b565b61427461426c8261424d565b8484546141cf565b825550505050565b600090565b61428961427c565b614294818484614257565b505050565b5b818110156142b8576142ad600082614281565b60018101905061429a565b5050565b601f8211156142fd576142ce8161419d565b6142d7846141b2565b810160208510156142e6578190505b6142fa6142f2856141b2565b830182614299565b50505b505050565b600082821c905092915050565b600061432060001984600802614302565b1980831691505092915050565b6000614339838361430f565b9150826002028217905092915050565b614352826131cb565b67ffffffffffffffff81111561436b5761436a6134c5565b5b6143758254613b46565b6143808282856142bc565b600060209050601f8311600181146143b357600084156143a1578287015190505b6143ab858261432d565b865550614413565b601f1984166143c18661419d565b60005b828110156143e9578489015182556001820191506020850194506020810190506143c4565b868310156144065784890151614402601f89168261430f565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b600061444061443b6144368461441b565b614221565b613fb0565b9050919050565b61445081614425565b82525050565b600060208201905061446b6000830184614447565b92915050565b600081905092915050565b50565b600061448c600083614471565b91506144978261447c565b600082019050919050565b60006144ad8261447f565b9150819050919050565b60008160601b9050919050565b60006144cf826144b7565b9050919050565b60006144e1826144c4565b9050919050565b6144f96144f482613300565b6144d6565b82525050565b6000819050919050565b61451a6145158261327d565b6144ff565b82525050565b600061452c82866144e8565b60148201915061453c8285614509565b60208201915061454c8284614509565b602082019150819050949350505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006145936018836131d6565b915061459e8261455d565b602082019050919050565b600060208201905081810360008301526145c281614586565b9050919050565b60006145d482613fb0565b91506145df83613fb0565b9250828201905060ff8111156145f8576145f7613d2d565b5b92915050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061465a6029836131d6565b9150614665826145fe565b604082019050919050565b600060208201905081810360008301526146898161464d565b9050919050565b600081905092915050565b60006146a6826131cb565b6146b08185614690565b93506146c08185602086016131e7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614702600583614690565b915061470d826146cc565b600582019050919050565b6000614724828561469b565b9150614730828461469b565b915061473b826146f5565b91508190509392505050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b600061477d600983614690565b915061478882614747565b600982019050919050565b7f222c2273656c6c65725f6665655f62617369735f706f696e7473223a00000000600082015250565b60006147c9601c83614690565b91506147d482614793565b601c82019050919050565b7f2c226665655f726563697069656e74223a220000000000000000000000000000600082015250565b6000614815601283614690565b9150614820826147df565b601282019050919050565b7f3078000000000000000000000000000000000000000000000000000000000000600082015250565b6000614861600283614690565b915061486c8261482b565b600282019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006148ad600283614690565b91506148b882614877565b600282019050919050565b60006148ce82614770565b91506148da828661469b565b91506148e5826147bc565b91506148f1828561469b565b91506148fc82614808565b915061490782614854565b9150614913828461469b565b915061491e826148a0565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000614961601d83614690565b915061496c8261492b565b601d82019050919050565b600061498282614954565b915061498e828461469b565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149f56026836131d6565b9150614a0082614999565b604082019050919050565b60006020820190508181036000830152614a24816149e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a616020836131d6565b9150614a6c82614a2b565b602082019050919050565b60006020820190508181036000830152614a9081614a54565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614af36025836131d6565b9150614afe82614a97565b604082019050919050565b60006020820190508181036000830152614b2281614ae6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b856024836131d6565b9150614b9082614b29565b604082019050919050565b60006020820190508181036000830152614bb481614b78565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000614c17602b836131d6565b9150614c2282614bbb565b604082019050919050565b60006020820190508181036000830152614c4681614c0a565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614c83601c83614690565b9150614c8e82614c4d565b601c82019050919050565b6000819050919050565b6000819050919050565b614cbe614cb982614c99565b614ca3565b82525050565b6000614ccf82614c76565b9150614cdb8284614cad565b60208201915081905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614d206010836131d6565b9150614d2b82614cea565b602082019050919050565b60006020820190508181036000830152614d4f81614d13565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614d8c6019836131d6565b9150614d9782614d56565b602082019050919050565b60006020820190508181036000830152614dbb81614d7f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614e1e6032836131d6565b9150614e2982614dc2565b604082019050919050565b60006020820190508181036000830152614e4d81614e11565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614e8a6014836131d6565b9150614e9582614e54565b602082019050919050565b60006020820190508181036000830152614eb981614e7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614f256018836131d6565b9150614f3082614eef565b602082019050919050565b60006020820190508181036000830152614f5481614f18565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614f91601f836131d6565b9150614f9c82614f5b565b602082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006150236022836131d6565b915061502e82614fc7565b604082019050919050565b6000602082019050818103600083015261505281615016565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061508082615059565b61508a8185615064565b935061509a8185602086016131e7565b6150a381613211565b840191505092915050565b60006080820190506150c36000830187613312565b6150d06020830186613312565b6150dd60408301856133a8565b81810360608301526150ef8184615075565b905095945050505050565b6000815190506151098161313c565b92915050565b60006020828403121561512557615124613106565b5b6000615133848285016150fa565b91505092915050565b61514581614c99565b82525050565b61515481613fb0565b82525050565b600060808201905061516f600083018761513c565b61517c602083018661514b565b615189604083018561513c565b615196606083018461513c565b95945050505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006151d56020836131d6565b91506151e08261519f565b602082019050919050565b60006020820190508181036000830152615204816151c8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615241601c836131d6565b915061524c8261520b565b602082019050919050565b6000602082019050818103600083015261527081615234565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122035455164028110231c6773cbcab5fd75da3e672c8ada56372911c76c9fe7947a64736f6c63430008120033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.