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 Name:
DMXHero
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import './DMXHeroStaker.sol'; import './DMXAllowlist.sol'; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "operator-filter-registry/src/upgradeable/DefaultOperatorFiltererUpgradeable.sol"; contract DMXHero is ERC721Upgradeable, OwnableUpgradeable , DefaultOperatorFiltererUpgradeable { using ECDSA for bytes32; address public staker; address public store; address public allowlist; uint32 public totalSupply; uint32 public customSupply; uint32 public genesisSupply; uint32 public commonSupply; //TODO: assure minting authority for potential future Minter contract string metadataUrl; mapping(address => uint256) public minting_nonces; uint32 public totalBurned; address public turnInAddress; // Events event Mint(uint32 tokenId, address Recipient, uint NftType, uint StoreType); event TurnIn(uint32 tokenId, uint32 heroId); // OpenSea event Stake(uint256 indexed tokenId); event Unstake(uint256 indexed tokenId, uint256 stakedAtTimestamp, uint256 removedFromStakeAtTimestamp); event MetadataUpdate(uint256 _tokenId); event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); function emitStaked(uint32 tokenId) public { require(msg.sender == staker); emit Stake(tokenId); } function emitUnstaked(uint32 tokenId) public { require(msg.sender == staker); emit Unstake(tokenId,0, block.timestamp); //opensea does not use these last two arguments, but they may be required for this event to be seen } function refreshAllMetadata() public onlyOwner { emit BatchMetadataUpdate(1, type(uint256).max); } function initialize() public initializer { __ERC721_init("DMX", "DMX"); __Ownable_init(); totalSupply = 0; customSupply = 0; genesisSupply = 0; commonSupply = 0; } function setStaker(address Staker) public onlyOwner { staker = Staker; } function setStore(address Store) public onlyOwner { store = Store; } function setAllowlist(address AllowlistContract) public onlyOwner { allowlist = AllowlistContract; } function setTurnInAddress(address TurnInAddress) public onlyOwner { turnInAddress = TurnInAddress; } function mintGenesisNFT() public { DMXAllowlist allowlistContract = DMXAllowlist(address(allowlist)); require(allowlistContract.mintPhase() == DMXAllowlist.MintPhase.PUBLIC); require(genesisSupply < 10000); uint32 nextID = _getNextGenesisID(); genesisSupply++; totalSupply++; emit Mint(nextID, msg.sender, 1, 0); _safeMint(msg.sender, nextID); } function _completeGenesisMint() internal { uint32 nextID = _getNextGenesisID(); genesisSupply++; totalSupply++; emit Mint(nextID, msg.sender, 1,0); _safeMint(msg.sender, nextID); } function mintAllowgroupNFT(bytes32[] calldata _merkleProof, string calldata GroupName) public { DMXAllowlist allowlistContract = DMXAllowlist(address(allowlist)); allowlistContract.validateAndMintOnAllowgroup(msg.sender, _merkleProof, GroupName); _completeGenesisMint(); } function mintInvitelistNFT(bytes32[] calldata _merkleProof, uint quantity) public { DMXAllowlist allowlistContract = DMXAllowlist(address(allowlist)); allowlistContract.validateAndMintOnAllowlist(msg.sender, _merkleProof, DMXAllowlist.MintPhase.INVITATIONLIST); require(quantity <= allowlistContract.invitationlistMax()); for(uint i = 0; i < quantity; i++) _completeGenesisMint(); } function mintAllowlistNFT(bytes32[] calldata _merkleProof, uint quantity) public { DMXAllowlist allowlistContract = DMXAllowlist(address(allowlist)); allowlistContract.validateAndMintOnAllowlist(msg.sender, _merkleProof, DMXAllowlist.MintPhase.ALLOWLIST); require(quantity <= allowlistContract.allowlistMax()); for(uint i = 0; i < quantity; i++) _completeGenesisMint(); } function mintCustomNFT(address Recipient, uint Id) onlyOwner public { uint32 nextID = _getNextCustomID(); require(Id == nextID); customSupply++; totalSupply++; emit Mint(nextID, Recipient, 0, 0); _safeMint(Recipient, nextID); } function _completeCommonMint(address recipient, uint nft_type, uint store_type) internal { uint32 nextID = _getNextCommonID(); commonSupply++; totalSupply++; emit Mint(nextID, recipient, nft_type, store_type); _safeMint(recipient, nextID); } function mintCommonNFT(bytes32 eth_hash, bytes memory signature, uint256 nonce, address recipient) public { require((eth_hash.toEthSignedMessageHash().recover(signature) == owner())); //to eth signed message hash adds a text string that is added to the hash by wallets before producing the signature. //'\x19Ethereum Signed Message:\n' wallets do this as a safety measure against code injection attacks require(eth_hash == keccak256(abi.encodePacked(nonce, recipient)), "incorrect hash"); require(minting_nonces[recipient] + 1 == nonce, "incorrect nonce"); //nonce has to be a uint256, bc that is the kind of int that is encoded by web3 sha3, which is how our webserver will hash minting_nonces[recipient]++; _completeCommonMint(recipient, 2, 0); } function mintStoreNFT(address recipient, uint hero_type, uint nft_count) public { require(msg.sender == store, "only the store can mint"); for(uint i = 0; i < nft_count; i++) { _completeCommonMint(recipient,3,hero_type); } } function mintCompanyNFT(address recipient, uint nft_type, uint hero_type) public onlyOwner { _completeCommonMint(recipient,nft_type,hero_type); } function _getNextCustomID() internal view returns(uint32 id) { uint32 nextId = customSupply + 1; return (nextId <= 1000) ? nextId : _getNextCommonID(); } function _getNextGenesisID() internal view returns(uint32 id) { uint32 nextId = 1000 + genesisSupply + 1; require(nextId <= 11000); return nextId; } function _getNextCommonID() internal view returns(uint32 id) { if(customSupply <= 1000) return commonSupply + 11000 + 1 ; else return 11000 + commonSupply + customSupply - 1000; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function _baseURI() internal view override returns (string memory) { return metadataUrl; } function setMetadataURL(string memory url) public onlyOwner { metadataUrl = url; } function turnIn(uint32[] memory heroIds, uint32 heroId) public { require(heroIds.length <= 10, "Too many heroes being turned in"); for (uint i=0; i<heroIds.length; i++) { require(msg.sender == ownerOf(heroIds[i]), "You must own the heroes"); } require(msg.sender == ownerOf(heroId), "You must own the hero"); for (uint i=0; i<heroIds.length; i++) { uint32 tokenId = heroIds[i]; _transfer(msg.sender, turnInAddress, tokenId); emit TurnIn(tokenId, heroId); } } function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal virtual override { super._beforeTokenTransfer(from, to, tokenId, batchSize); if (to == address(0)) totalBurned++; } }
// 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.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.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/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 (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// 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 (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract DMXAllowlist is OwnableUpgradeable { struct AllowGroup { bytes32 merkleRoot; mapping(address => bool) claimed; } //mapping(string => AllowGroup) public allowgroups; uint allowgroup_count; mapping(string => AllowGroup) public allowgroups; MintPhase public mintPhase; bytes32 public allowlistMerkleRoot; bytes32 public invitelistMerkleRoot; address public hero; mapping(address => bool) public allowlist_claimed; mapping(address => bool) public invitelist_claimed; uint public invitationlistMax; uint public allowlistMax; //enum HeroType{ CUSTOM, GENESIS, COMMON } enum MintPhase{OFF, INVITATIONLIST, ALLOWLIST, PUBLIC} function initialize() public initializer { allowgroup_count = 0; mintPhase = MintPhase.OFF; invitationlistMax = 1; allowlistMax = 1; __Ownable_init(); } function setHero(address HeroContract) public onlyOwner { hero = HeroContract; } function setMintPhase(MintPhase mint_phase) public onlyOwner { mintPhase = mint_phase; } function setAllowlistMax(uint AllowListMax) public onlyOwner { allowlistMax = AllowListMax; } function setInvitationlistMax(uint InvitationListMax) public onlyOwner { invitationlistMax = InvitationListMax; } function validateAndMintOnAllowgroup(address MinterCandidate, bytes32[] calldata _merkleProof, string calldata GroupName) public { bytes32 leaf = keccak256(abi.encodePacked(MinterCandidate)); require(msg.sender == hero, "only the hero contract can call this function"); require(mintPhase == MintPhase.INVITATIONLIST, "not in invitationlist mode"); require(!allowgroups[GroupName].claimed[MinterCandidate], "slot already claimed"); require(MerkleProof.verify(_merkleProof, allowgroups[GroupName].merkleRoot, leaf), "ag merkle proof failed"); allowgroups[GroupName].claimed[MinterCandidate] = true; } function validateAndMintOnAllowlist(address MinterCandidate, bytes32[] calldata _merkleProof, MintPhase Phase) public { bytes32 leaf = keccak256(abi.encodePacked(MinterCandidate)); require(msg.sender == hero, "only the hero contract can call this function"); require(mintPhase == Phase, "not in invitationlist mode"); if(Phase == MintPhase.INVITATIONLIST) { require(!invitelist_claimed[MinterCandidate], "slot already claimed"); require(MerkleProof.verify(_merkleProof, invitelistMerkleRoot, leaf), "il merkle proof failed"); invitelist_claimed[MinterCandidate] = true; } else if(Phase == MintPhase.ALLOWLIST) { require(!allowlist_claimed[MinterCandidate], "slot already claimed"); require(MerkleProof.verify(_merkleProof, allowlistMerkleRoot, leaf), "al merkle proof failed"); allowlist_claimed[MinterCandidate] = true; } } function canAddressMintInvitationPhase(address MintingAddress, bytes32[] calldata _merkleProof) public view returns (bool can_mint) { bytes32 leaf = keccak256(abi.encodePacked(MintingAddress)); if(!invitelist_claimed[MintingAddress] && MerkleProof.verify(_merkleProof, invitelistMerkleRoot, leaf)) { return true; } return false; } function canAddressMintAllowlistPhase(address MintingAddress, bytes32[] calldata _merkleProof) public view returns (bool can_mint) { bytes32 leaf = keccak256(abi.encodePacked(MintingAddress)); if(!allowlist_claimed[MintingAddress] && MerkleProof.verify(_merkleProof, allowlistMerkleRoot, leaf)) { return true; } return false; } function canAddressMintAllowgroup(address MintingAddress, bytes32[] calldata _merkleProof, string calldata GroupName) public view returns (bool can_mint) { bytes32 leaf = keccak256(abi.encodePacked(MintingAddress)); if(!allowgroups[GroupName].claimed[MintingAddress] && MerkleProof.verify(_merkleProof, allowgroups[GroupName].merkleRoot, leaf)) { return true; } return false; } function setAllowlistMerkleRoot(bytes32 root) public onlyOwner { allowlistMerkleRoot = root; } function setInvitelistMerkleRoot(bytes32 root) public onlyOwner { invitelistMerkleRoot = root; } function resetAllowlistClaimed(address to_reset) public onlyOwner { allowlist_claimed [to_reset] = false; } function addNewAllowGroup(string calldata AllowgroupName, bytes32 root) public onlyOwner { AllowGroup storage newAllowGroup = allowgroups[AllowgroupName]; newAllowGroup.merkleRoot = root; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import './DMXHero.sol'; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract DMXHeroStaker is OwnableUpgradeable { using ECDSA for bytes32; //TODO: assure minting authority for potential future Minter contract mapping(uint32 => address) public stakedNfts; //nftId -> ownerAddress mapping(address => uint256) public unstaking_nonces; address public hero; event Stake(uint32 tokenId, address NftOwner); event Unstake(uint32 tokenId, address NftOwner); struct StakingData { uint32 nft_id; bool staked; address owner; } function isStaked(uint tokenId) public view returns(bool staked) { return stakedNfts[uint32(tokenId)] != address(0); } function initialize() public initializer { __Ownable_init(); } function setHero(address HeroContract) public onlyOwner { hero = HeroContract; } function getOwner() public pure returns (string memory owner) { return owner; } function _stake(uint32 nft_id) internal { // FIXME: Is it safe to use tx.origin here? // https://github.com/ethereum/solidity/issues/683 DMXHero dmxHero = DMXHero(address(hero)); require(dmxHero.ownerOf(nft_id) == tx.origin, "Caller must own the NFT."); require(stakedNfts[nft_id] == address(0), "Nft is already staked."); stakedNfts[nft_id] = tx.origin; emit Stake(nft_id, tx.origin); } function stakeNFT(uint32 nft_id) public { // FIXME: Is it safe to use tx.origin here? // https://github.com/ethereum/solidity/issues/683 _stake(nft_id); } function bulkStakeNFT(uint32[] memory nft_ids) public { uint32 i = 0; while(i < nft_ids.length) { _stake(nft_ids[i]); i++; } } function _unstake(uint32 nft_id) internal { DMXHero dmxHero = DMXHero(address(hero)); require(dmxHero.ownerOf(nft_id) == tx.origin, "Caller must own the NFT."); require(stakedNfts[nft_id] != address(0), "Nft is already unstaked."); address prevOwner = stakedNfts[nft_id]; stakedNfts[nft_id] = address(0); emit Unstake(uint32(nft_id), prevOwner); } function emulateStake(uint32 nft_id) public onlyOwner { DMXHero dmxHero = DMXHero(address(hero)); dmxHero.emitStaked(nft_id); } function emulateStakeBulk(uint32[] memory tokenIds) public onlyOwner { DMXHero dmxHero = DMXHero(address(hero)); uint32 i = 0; while(i < tokenIds.length) { dmxHero.emitStaked(tokenIds[i]); i++; } } function emulateUnstake(uint32 nft_id) public onlyOwner { DMXHero dmxHero = DMXHero(address(hero)); dmxHero.emitUnstaked(nft_id); } function emulateUnstakeBulk(uint32[] memory tokenIds) public onlyOwner { DMXHero dmxHero = DMXHero(address(hero)); uint32 i = 0; while(i < tokenIds.length) { dmxHero.emitUnstaked(tokenIds[i]); i++; } } function unstakeNFT(bytes32 eth_hash, bytes memory signature, uint256 nft_id, uint256 nonce, address nft_owner) public { require((eth_hash.toEthSignedMessageHash().recover(signature) == owner()), "Message was not signed by contract owner"); require(eth_hash == keccak256(abi.encodePacked(nft_id, nonce, nft_owner)), "Incorrect hash"); require(unstaking_nonces[nft_owner] + 1 == nonce, "Incorrect nonce"); _unstake(uint32(nft_id)); unstaking_nonces[nft_owner]++; } function bulkUnstakeNFT(bytes32 eth_hash, bytes memory signature, uint256[] memory nft_ids, uint256 nonce, address nft_owner) public { require((eth_hash.toEthSignedMessageHash().recover(signature) == owner()), "Message was not signed by contract owner"); require(eth_hash == keccak256(abi.encodePacked(abi.encodePacked(nft_ids), nonce, nft_owner)), "Incorrect hash"); require(unstaking_nonces[nft_owner] + 1 == nonce, "Incorrect nonce"); uint32 i = 0; while(i < nft_ids.length) { _unstake(uint32(nft_ids[i])); i++; } unstaking_nonces[nft_owner]++; } function getStakingData(uint32 nft_id) public view returns (StakingData memory data) { return StakingData(nft_id, (stakedNfts[nft_id] != address(0)), stakedNfts[nft_id]); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFiltererUpgradeable} from "./OperatorFiltererUpgradeable.sol"; import {CANONICAL_CORI_SUBSCRIPTION} from "../lib/Constants.sol"; /** * @title DefaultOperatorFiltererUpgradeable * @notice Inherits from OperatorFiltererUpgradeable and automatically subscribes to the default OpenSea subscription * when the init function is called. */ abstract contract DefaultOperatorFiltererUpgradeable is OperatorFiltererUpgradeable { /// @dev The upgradeable initialize function that should be called when the contract is being deployed. function __DefaultOperatorFilterer_init() internal onlyInitializing { OperatorFiltererUpgradeable.__OperatorFilterer_init(CANONICAL_CORI_SUBSCRIPTION, true); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "../IOperatorFilterRegistry.sol"; import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @title OperatorFiltererUpgradeable * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry when the init function is called. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFiltererUpgradeable is Initializable { /// @notice Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); /// @dev The upgradeable initialize function that should be called when the contract is being upgraded. function __OperatorFilterer_init(address subscriptionOrRegistrantToCopy, bool subscribe) internal onlyInitializing { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isRegistered(address(this))) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } } /** * @dev A helper modifier to check if the operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper modifier to check if the operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if the operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting or // upgraded contracts may specify their own OperatorFilterRegistry implementations, which may behave // differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
{ "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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"tokenId","type":"uint32"},{"indexed":false,"internalType":"address","name":"Recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"NftType","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"StoreType","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Stake","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":"uint32","name":"tokenId","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"heroId","type":"uint32"}],"name":"TurnIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakedAtTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"removedFromStakeAtTimestamp","type":"uint256"}],"name":"Unstake","type":"event"},{"inputs":[],"name":"allowlist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"commonSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"customSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"tokenId","type":"uint32"}],"name":"emitStaked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"tokenId","type":"uint32"}],"name":"emitUnstaked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"string","name":"GroupName","type":"string"}],"name":"mintAllowgroupNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintAllowlistNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"eth_hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mintCommonNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"nft_type","type":"uint256"},{"internalType":"uint256","name":"hero_type","type":"uint256"}],"name":"mintCompanyNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"Recipient","type":"address"},{"internalType":"uint256","name":"Id","type":"uint256"}],"name":"mintCustomNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintGenesisNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintInvitelistNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"hero_type","type":"uint256"},{"internalType":"uint256","name":"nft_count","type":"uint256"}],"name":"mintStoreNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minting_nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refreshAllMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"AllowlistContract","type":"address"}],"name":"setAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setMetadataURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"Staker","type":"address"}],"name":"setStaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"Store","type":"address"}],"name":"setStore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"TurnInAddress","type":"address"}],"name":"setTurnInAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"store","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":[{"internalType":"uint32[]","name":"heroIds","type":"uint32[]"},{"internalType":"uint32","name":"heroId","type":"uint32"}],"name":"turnIn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"turnInAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50615c8480620000216000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c8063715018a611610151578063b5bd495e116100c3578063c87b56dd11610087578063c87b56dd146106d3578063d89135cd14610703578063e985e9c514610721578063f2fde38b14610751578063f7c2742f1461076d578063fe169d261461078957610274565b8063b5bd495e14610655578063b6f9b91314610673578063b88d4fde14610691578063bed20a87146106ad578063c13ee144146106b757610274565b806395d89b411161011557806395d89b41146105a9578063975057e7146105c75780639a456e6d146105e5578063a22cb46514610601578063a29a43bb1461061d578063a86fb5281461063957610274565b8063715018a61461053f578063747daec51461054957806378faa1a7146105655780638129fc1c146105815780638da5cb5b1461058b57610274565b80633672da53116101ea5780634bbf179b116101ae5780634bbf179b1461046b57806350ea5dd81461048957806358bf3c7f146104a55780635ebaf1db146104c15780636352211e146104df57806370a082311461050f57610274565b80633672da53146103dd5780633780e9b8146103f95780633cc158e01461041557806342842e0e14610433578063459d146b1461044f57610274565b806309aa2be11161023c57806309aa2be11461032f57806318160ddd146103395780631e7d195a1461035757806323b872dd1461037357806326b030891461038f5780632b47da52146103bf57610274565b806301ffc9a71461027957806306fdde03146102a9578063081812fc146102c7578063087cbd40146102f7578063095ea7b314610313575b600080fd5b610293600480360381019061028e91906139ee565b6107a5565b6040516102a09190613a36565b60405180910390f35b6102b1610887565b6040516102be9190613ae1565b60405180910390f35b6102e160048036038101906102dc9190613b39565b610919565b6040516102ee9190613ba7565b60405180910390f35b610311600480360381019061030c9190613bee565b61095f565b005b61032d60048036038101906103289190613c1b565b6109ab565b005b6103376109c4565b005b610341610b90565b60405161034e9190613c7a565b60405180910390f35b610371600480360381019061036c9190613e09565b610ba6565b005b61038d60048036038101906103889190613e65565b610dcd565b005b6103a960048036038101906103a49190613bee565b610e1c565b6040516103b69190613ec7565b60405180910390f35b6103c7610e34565b6040516103d49190613ba7565b60405180910390f35b6103f760048036038101906103f29190613c1b565b610e5a565b005b610413600480360381019061040e9190613f93565b610f55565b005b61041d610ffe565b60405161042a9190613c7a565b60405180910390f35b61044d60048036038101906104489190613e65565b611014565b005b61046960048036038101906104649190614014565b611063565b005b610473611101565b6040516104809190613c7a565b60405180910390f35b6104a3600480360381019061049e9190613bee565b611117565b005b6104bf60048036038101906104ba9190613bee565b611163565b005b6104c96111af565b6040516104d69190613ba7565b60405180910390f35b6104f960048036038101906104f49190613b39565b6111d5565b6040516105069190613ba7565b60405180910390f35b61052960048036038101906105249190613bee565b61125b565b6040516105369190613ec7565b60405180910390f35b610547611312565b005b610563600480360381019061055e91906140f6565b611326565b005b61057f600480360381019061057a919061413f565b611341565b005b610589611482565b005b6105936116bc565b6040516105a09190613ba7565b60405180910390f35b6105b16116e6565b6040516105be9190613ae1565b60405180910390f35b6105cf611778565b6040516105dc9190613ba7565b60405180910390f35b6105ff60048036038101906105fa9190614276565b61179e565b005b61061b60048036038101906106169190614325565b611956565b005b61063760048036038101906106329190613bee565b61196f565b005b610653600480360381019061064e9190614365565b6119bb565b005b61065d6119d3565b60405161066a9190613c7a565b60405180910390f35b61067b6119e9565b6040516106889190613ba7565b60405180910390f35b6106ab60048036038101906106a691906143b8565b611a0f565b005b6106b5611a60565b005b6106d160048036038101906106cc919061413f565b611ac4565b005b6106ed60048036038101906106e89190613b39565b611c05565b6040516106fa9190613ae1565b60405180910390f35b61070b611c6d565b6040516107189190613c7a565b60405180910390f35b61073b6004803603810190610736919061443b565b611c83565b6040516107489190613a36565b60405180910390f35b61076b60048036038101906107669190613bee565b611d17565b005b61078760048036038101906107829190614365565b611d9a565b005b6107a3600480360381019061079e9190614014565b611e5a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610880575061087f82611eea565b5b9050919050565b606060658054610896906144aa565b80601f01602080910402602001604051908101604052809291908181526020018280546108c2906144aa565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b600061092482611f54565b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610967611f9f565b8060ca60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b816109b58161201d565b6109bf838361211a565b505050565b600060cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506003808111156109fe576109fd6144db565b5b8173ffffffffffffffffffffffffffffffffffffffff166317881cbf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d919061452f565b6003811115610a7f57610a7e6144db565b5b14610a8957600080fd5b61271060cb601c9054906101000a900463ffffffff1663ffffffff1610610aaf57600080fd5b6000610ab9612231565b905060cb601c81819054906101000a900463ffffffff1680929190610add9061458b565b91906101000a81548163ffffffff021916908363ffffffff1602179055505060cb601481819054906101000a900463ffffffff1680929190610b1e9061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550507f5dc238ae2706a98b704a1b162e778905803c092930a374f59bac8581b951c64b813360016000604051610b749493929190614637565b60405180910390a1610b8c338263ffffffff1661227e565b5050565b60cb60149054906101000a900463ffffffff1681565b600a82511115610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906146c8565b60405180910390fd5b60005b8251811015610ca057610c20838281518110610c0d57610c0c6146e8565b5b602002602001015163ffffffff166111d5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490614763565b60405180910390fd5b8080610c9890614783565b915050610bee565b50610cb08163ffffffff166111d5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490614817565b60405180910390fd5b60005b8251811015610dc8576000838281518110610d3e57610d3d6146e8565b5b60200260200101519050610d7b3360cf60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff168363ffffffff1661229c565b7fcc4d245f9e76fcdf5cda04ae0bc04dd7be9beef103a277e0273594e2ac97aaa98184604051610dac929190614837565b60405180910390a1508080610dc090614783565b915050610d20565b505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0b57610e0a3361201d565b5b610e16848484612595565b50505050565b60ce6020528060005260406000206000915090505481565b60cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e62611f9f565b6000610e6c6125f5565b90508063ffffffff168214610e8057600080fd5b60cb601881819054906101000a900463ffffffff1680929190610ea29061458b565b91906101000a81548163ffffffff021916908363ffffffff1602179055505060cb601481819054906101000a900463ffffffff1680929190610ee39061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550507f5dc238ae2706a98b704a1b162e778905803c092930a374f59bac8581b951c64b8184600080604051610f389493929190614860565b60405180910390a1610f50838263ffffffff1661227e565b505050565b600060cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636678978933878787876040518663ffffffff1660e01b8152600401610fbd95949392919061494d565b600060405180830381600087803b158015610fd757600080fd5b505af1158015610feb573d6000803e3d6000fd5b50505050610ff761263e565b5050505050565b60cc60009054906101000a900463ffffffff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611052576110513361201d565b5b61105d84848461271e565b50505050565b60c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110bd57600080fd5b8063ffffffff167f529f395783b74aeb16a02d6320297d8415f7312f2ff2c398cd0d70e30bebc6c96000426040516110f6929190614996565b60405180910390a250565b60cb601c9054906101000a900463ffffffff1681565b61111f611f9f565b8060cf60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61116b611f9f565b8060cb60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806111e18361273e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990614a0b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290614a9d565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61131a611f9f565b611324600061277b565b565b61132e611f9f565b8060cd908161133d9190614c5f565b5050565b600060cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166301c4657033868660026040518563ffffffff1660e01b81526004016113a89493929190614d79565b600060405180830381600087803b1580156113c257600080fd5b505af11580156113d6573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663979ed6666040518163ffffffff1660e01b8152600401602060405180830381865afa158015611425573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114499190614dce565b82111561145557600080fd5b60005b8281101561147b5761146861263e565b808061147390614783565b915050611458565b5050505050565b60008060019054906101000a900460ff161590508080156114b35750600160008054906101000a900460ff1660ff16105b806114e057506114c230612841565b1580156114df5750600160008054906101000a900460ff1660ff16145b5b61151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614e6d565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561155c576001600060016101000a81548160ff0219169083151502179055505b6115d06040518060400160405280600381526020017f444d5800000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f444d580000000000000000000000000000000000000000000000000000000000815250612864565b6115d86128c1565b600060cb60146101000a81548163ffffffff021916908363ffffffff160217905550600060cb60186101000a81548163ffffffff021916908363ffffffff160217905550600060cb601c6101000a81548163ffffffff021916908363ffffffff160217905550600060cc60006101000a81548163ffffffff021916908363ffffffff16021790555080156116b95760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516116b09190614ecb565b60405180910390a15b50565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060606680546116f5906144aa565b80601f0160208091040260200160405190810160405280929190818152602001828054611721906144aa565b801561176e5780601f106117435761010080835404028352916020019161176e565b820191906000526020600020905b81548152906001019060200180831161175157829003601f168201915b5050505050905090565b60ca60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117a66116bc565b73ffffffffffffffffffffffffffffffffffffffff166117d7846117c98761291a565b61294a90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146117f757600080fd5b818160405160200161180a929190614f4f565b604051602081830303815290604052805190602001208414611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890614fc7565b60405180910390fd5b81600160ce60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ae9190614fe7565b146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590615067565b60405180910390fd5b60ce60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061193e90614783565b91905055506119508160026000612971565b50505050565b816119608161201d565b61196a8383612a52565b505050565b611977611f9f565b8060c960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6119c3611f9f565b6119ce838383612971565b505050565b60cb60189054906101000a900463ffffffff1681565b60cf60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a4d57611a4c3361201d565b5b611a5985858585612a68565b5050505050565b611a68611f9f565b7f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff604051611aba929190615087565b60405180910390a1565b600060cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166301c4657033868660016040518563ffffffff1660e01b8152600401611b2b9493929190614d79565b600060405180830381600087803b158015611b4557600080fd5b505af1158015611b59573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663a2ed22806040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ba8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bcc9190614dce565b821115611bd857600080fd5b60005b82811015611bfe57611beb61263e565b8080611bf690614783565b915050611bdb565b5050505050565b6060611c1082611f54565b6000611c1a612aca565b90506000815111611c3a5760405180602001604052806000815250611c65565b80611c4484612b5c565b604051602001611c559291906150ec565b6040516020818303038152906040525b915050919050565b60cf60009054906101000a900463ffffffff1681565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d1f611f9f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590615182565b60405180910390fd5b611d978161277b565b50565b60ca60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e21906151ee565b60405180910390fd5b60005b81811015611e5457611e4184600385612971565b8080611e4c90614783565b915050611e2d565b50505050565b60c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611eb457600080fd5b8063ffffffff167f227a473b70d2f893cc7659219575c030a63b5743024fe1e0c1a680e708b1525a60405160405180910390a250565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611f5d81612c2a565b611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390614a0b565b60405180910390fd5b50565b611fa7612c6b565b73ffffffffffffffffffffffffffffffffffffffff16611fc56116bc565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120129061525a565b60405180910390fd5b565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612117576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161209492919061527a565b602060405180830381865afa1580156120b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d591906152b8565b61211657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161210d9190613ba7565b60405180910390fd5b5b50565b6000612125826111d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90615357565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166121b4612c6b565b73ffffffffffffffffffffffffffffffffffffffff1614806121e357506121e2816121dd612c6b565b611c83565b5b612222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612219906153e9565b60405180910390fd5b61222c8383612c73565b505050565b600080600160cb601c9054906101000a900463ffffffff166103e86122569190615409565b6122609190615409565b9050612af88163ffffffff16111561227757600080fd5b8091505090565b612298828260405180602001604052806000815250612d2c565b5050565b8273ffffffffffffffffffffffffffffffffffffffff166122bc826111d5565b73ffffffffffffffffffffffffffffffffffffffff1614612312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612309906154b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890615545565b60405180910390fd5b61238e8383836001612d87565b8273ffffffffffffffffffffffffffffffffffffffff166123ae826111d5565b73ffffffffffffffffffffffffffffffffffffffff1614612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb906154b3565b60405180910390fd5b6069600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125908383836001612e0f565b505050565b6125a66125a0612c6b565b82612e15565b6125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc906155d7565b60405180910390fd5b6125f083838361229c565b505050565b600080600160cb60189054906101000a900463ffffffff166126179190615409565b90506103e88163ffffffff16111561263657612631612eaa565b612638565b805b91505090565b6000612648612231565b905060cb601c81819054906101000a900463ffffffff168092919061266c9061458b565b91906101000a81548163ffffffff021916908363ffffffff1602179055505060cb601481819054906101000a900463ffffffff16809291906126ad9061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550507f5dc238ae2706a98b704a1b162e778905803c092930a374f59bac8581b951c64b8133600160006040516127039493929190614637565b60405180910390a161271b338263ffffffff1661227e565b50565b61273983838360405180602001604052806000815250611a0f565b505050565b60006067600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff166128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90615669565b60405180910390fd5b6128bd8282612f50565b5050565b600060019054906101000a900460ff16612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290790615669565b60405180910390fd5b612918612fc3565b565b60008160405160200161292d91906156f6565b604051602081830303815290604052805190602001209050919050565b60008060006129598585613024565b9150915061296681613075565b819250505092915050565b600061297b612eaa565b905060cc600081819054906101000a900463ffffffff168092919061299f9061458b565b91906101000a81548163ffffffff021916908363ffffffff1602179055505060cb601481819054906101000a900463ffffffff16809291906129e09061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550507f5dc238ae2706a98b704a1b162e778905803c092930a374f59bac8581b951c64b81858585604051612a34949392919061571c565b60405180910390a1612a4c848263ffffffff1661227e565b50505050565b612a64612a5d612c6b565b83836131db565b5050565b612a79612a73612c6b565b83612e15565b612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf906155d7565b60405180910390fd5b612ac484848484613347565b50505050565b606060cd8054612ad9906144aa565b80601f0160208091040260200160405190810160405280929190818152602001828054612b05906144aa565b8015612b525780601f10612b2757610100808354040283529160200191612b52565b820191906000526020600020905b815481529060010190602001808311612b3557829003601f168201915b5050505050905090565b606060006001612b6b846133a3565b01905060008167ffffffffffffffff811115612b8a57612b89613c9a565b5b6040519080825280601f01601f191660200182016040528015612bbc5781602001600182028036833780820191505090505b509050600082602001820190505b600115612c1f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612c1357612c12615761565b5b04945060008503612bca575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16612c4c8361273e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ce6836111d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612d3683836134f6565b612d436000848484613713565b612d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7990615802565b60405180910390fd5b505050565b612d938484848461389a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e095760cf600081819054906101000a900463ffffffff1680929190612de99061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550505b50505050565b50505050565b600080612e21836111d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e635750612e628185611c83565b5b80612ea157508373ffffffffffffffffffffffffffffffffffffffff16612e8984610919565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b60006103e860cb60189054906101000a900463ffffffff1663ffffffff1611612f00576001612af860cc60009054906101000a900463ffffffff16612eef9190615409565b612ef99190615409565b9050612f4d565b6103e860cb60189054906101000a900463ffffffff1660cc60009054906101000a900463ffffffff16612af8612f369190615409565b612f409190615409565b612f4a9190615822565b90505b90565b600060019054906101000a900460ff16612f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9690615669565b60405180910390fd5b8160659081612fae9190614c5f565b508060669081612fbe9190614c5f565b505050565b600060019054906101000a900460ff16613012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300990615669565b60405180910390fd5b61302261301d612c6b565b61277b565b565b60008060418351036130655760008060006020860151925060408601519150606086015160001a9050613059878285856138a0565b9450945050505061306e565b60006002915091505b9250929050565b60006004811115613089576130886144db565b5b81600481111561309c5761309b6144db565b5b03156131d857600160048111156130b6576130b56144db565b5b8160048111156130c9576130c86144db565b5b03613109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613100906158a6565b60405180910390fd5b6002600481111561311d5761311c6144db565b5b8160048111156131305761312f6144db565b5b03613170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316790615912565b60405180910390fd5b60036004811115613184576131836144db565b5b816004811115613197576131966144db565b5b036131d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ce906159a4565b60405180910390fd5b5b50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324090615a10565b60405180910390fd5b80606a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161333a9190613a36565b60405180910390a3505050565b61335284848461229c565b61335e84848484613713565b61339d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339490615802565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613401577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816133f7576133f6615761565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061343e576d04ee2d6d415b85acef8100000000838161343457613433615761565b5b0492506020810190505b662386f26fc10000831061346d57662386f26fc10000838161346357613462615761565b5b0492506010810190505b6305f5e1008310613496576305f5e100838161348c5761348b615761565b5b0492506008810190505b61271083106134bb5761271083816134b1576134b0615761565b5b0492506004810190505b606483106134de57606483816134d4576134d3615761565b5b0492506002810190505b600a83106134ed576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355c90615a7c565b60405180910390fd5b61356e81612c2a565b156135ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a590615ae8565b60405180910390fd5b6135bc600083836001612d87565b6135c581612c2a565b15613605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fc90615ae8565b60405180910390fd5b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461370f600083836001612e0f565b5050565b60006137348473ffffffffffffffffffffffffffffffffffffffff16612841565b1561388d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261375d612c6b565b8786866040518563ffffffff1660e01b815260040161377f9493929190615b5d565b6020604051808303816000875af19250505080156137bb57506040513d601f19601f820116820180604052508101906137b89190615bbe565b60015b61383d573d80600081146137eb576040519150601f19603f3d011682016040523d82523d6000602084013e6137f0565b606091505b506000815103613835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382c90615802565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613892565b600190505b949350505050565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156138db576000600391509150613979565b6000600187878787604051600081526020016040526040516139009493929190615c09565b6020604051602081039080840390855afa158015613922573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361397057600060019250925050613979565b80600092509250505b94509492505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139cb81613996565b81146139d657600080fd5b50565b6000813590506139e8816139c2565b92915050565b600060208284031215613a0457613a0361398c565b5b6000613a12848285016139d9565b91505092915050565b60008115159050919050565b613a3081613a1b565b82525050565b6000602082019050613a4b6000830184613a27565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a8b578082015181840152602081019050613a70565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ab382613a51565b613abd8185613a5c565b9350613acd818560208601613a6d565b613ad681613a97565b840191505092915050565b60006020820190508181036000830152613afb8184613aa8565b905092915050565b6000819050919050565b613b1681613b03565b8114613b2157600080fd5b50565b600081359050613b3381613b0d565b92915050565b600060208284031215613b4f57613b4e61398c565b5b6000613b5d84828501613b24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9182613b66565b9050919050565b613ba181613b86565b82525050565b6000602082019050613bbc6000830184613b98565b92915050565b613bcb81613b86565b8114613bd657600080fd5b50565b600081359050613be881613bc2565b92915050565b600060208284031215613c0457613c0361398c565b5b6000613c1284828501613bd9565b91505092915050565b60008060408385031215613c3257613c3161398c565b5b6000613c4085828601613bd9565b9250506020613c5185828601613b24565b9150509250929050565b600063ffffffff82169050919050565b613c7481613c5b565b82525050565b6000602082019050613c8f6000830184613c6b565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613cd282613a97565b810181811067ffffffffffffffff82111715613cf157613cf0613c9a565b5b80604052505050565b6000613d04613982565b9050613d108282613cc9565b919050565b600067ffffffffffffffff821115613d3057613d2f613c9a565b5b602082029050602081019050919050565b600080fd5b613d4f81613c5b565b8114613d5a57600080fd5b50565b600081359050613d6c81613d46565b92915050565b6000613d85613d8084613d15565b613cfa565b90508083825260208201905060208402830185811115613da857613da7613d41565b5b835b81811015613dd15780613dbd8882613d5d565b845260208401935050602081019050613daa565b5050509392505050565b600082601f830112613df057613def613c95565b5b8135613e00848260208601613d72565b91505092915050565b60008060408385031215613e2057613e1f61398c565b5b600083013567ffffffffffffffff811115613e3e57613e3d613991565b5b613e4a85828601613ddb565b9250506020613e5b85828601613d5d565b9150509250929050565b600080600060608486031215613e7e57613e7d61398c565b5b6000613e8c86828701613bd9565b9350506020613e9d86828701613bd9565b9250506040613eae86828701613b24565b9150509250925092565b613ec181613b03565b82525050565b6000602082019050613edc6000830184613eb8565b92915050565b600080fd5b60008083601f840112613efd57613efc613c95565b5b8235905067ffffffffffffffff811115613f1a57613f19613ee2565b5b602083019150836020820283011115613f3657613f35613d41565b5b9250929050565b60008083601f840112613f5357613f52613c95565b5b8235905067ffffffffffffffff811115613f7057613f6f613ee2565b5b602083019150836001820283011115613f8c57613f8b613d41565b5b9250929050565b60008060008060408587031215613fad57613fac61398c565b5b600085013567ffffffffffffffff811115613fcb57613fca613991565b5b613fd787828801613ee7565b9450945050602085013567ffffffffffffffff811115613ffa57613ff9613991565b5b61400687828801613f3d565b925092505092959194509250565b60006020828403121561402a5761402961398c565b5b600061403884828501613d5d565b91505092915050565b600080fd5b600067ffffffffffffffff82111561406157614060613c9a565b5b61406a82613a97565b9050602081019050919050565b82818337600083830152505050565b600061409961409484614046565b613cfa565b9050828152602081018484840111156140b5576140b4614041565b5b6140c0848285614077565b509392505050565b600082601f8301126140dd576140dc613c95565b5b81356140ed848260208601614086565b91505092915050565b60006020828403121561410c5761410b61398c565b5b600082013567ffffffffffffffff81111561412a57614129613991565b5b614136848285016140c8565b91505092915050565b6000806000604084860312156141585761415761398c565b5b600084013567ffffffffffffffff81111561417657614175613991565b5b61418286828701613ee7565b9350935050602061419586828701613b24565b9150509250925092565b6000819050919050565b6141b28161419f565b81146141bd57600080fd5b50565b6000813590506141cf816141a9565b92915050565b600067ffffffffffffffff8211156141f0576141ef613c9a565b5b6141f982613a97565b9050602081019050919050565b6000614219614214846141d5565b613cfa565b90508281526020810184848401111561423557614234614041565b5b614240848285614077565b509392505050565b600082601f83011261425d5761425c613c95565b5b813561426d848260208601614206565b91505092915050565b600080600080608085870312156142905761428f61398c565b5b600061429e878288016141c0565b945050602085013567ffffffffffffffff8111156142bf576142be613991565b5b6142cb87828801614248565b93505060406142dc87828801613b24565b92505060606142ed87828801613bd9565b91505092959194509250565b61430281613a1b565b811461430d57600080fd5b50565b60008135905061431f816142f9565b92915050565b6000806040838503121561433c5761433b61398c565b5b600061434a85828601613bd9565b925050602061435b85828601614310565b9150509250929050565b60008060006060848603121561437e5761437d61398c565b5b600061438c86828701613bd9565b935050602061439d86828701613b24565b92505060406143ae86828701613b24565b9150509250925092565b600080600080608085870312156143d2576143d161398c565b5b60006143e087828801613bd9565b94505060206143f187828801613bd9565b935050604061440287828801613b24565b925050606085013567ffffffffffffffff81111561442357614422613991565b5b61442f87828801614248565b91505092959194509250565b600080604083850312156144525761445161398c565b5b600061446085828601613bd9565b925050602061447185828601613bd9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144c257607f821691505b6020821081036144d5576144d461447b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061451757600080fd5b50565b6000815190506145298161450a565b92915050565b6000602082840312156145455761454461398c565b5b60006145538482850161451a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061459682613c5b565b915063ffffffff82036145ac576145ab61455c565b5b600182019050919050565b6000819050919050565b6000819050919050565b60006145e66145e16145dc846145b7565b6145c1565b613b03565b9050919050565b6145f6816145cb565b82525050565b6000819050919050565b600061462161461c614617846145fc565b6145c1565b613b03565b9050919050565b61463181614606565b82525050565b600060808201905061464c6000830187613c6b565b6146596020830186613b98565b61466660408301856145ed565b6146736060830184614628565b95945050505050565b7f546f6f206d616e79206865726f6573206265696e67207475726e656420696e00600082015250565b60006146b2601f83613a5c565b91506146bd8261467c565b602082019050919050565b600060208201905081810360008301526146e1816146a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f596f75206d757374206f776e20746865206865726f6573000000000000000000600082015250565b600061474d601783613a5c565b915061475882614717565b602082019050919050565b6000602082019050818103600083015261477c81614740565b9050919050565b600061478e82613b03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036147c0576147bf61455c565b5b600182019050919050565b7f596f75206d757374206f776e20746865206865726f0000000000000000000000600082015250565b6000614801601583613a5c565b915061480c826147cb565b602082019050919050565b60006020820190508181036000830152614830816147f4565b9050919050565b600060408201905061484c6000830185613c6b565b6148596020830184613c6b565b9392505050565b60006080820190506148756000830187613c6b565b6148826020830186613b98565b61488f6040830185614628565b61489c6060830184614628565b95945050505050565b600082825260208201905092915050565b600080fd5b82818337505050565b60006148d083856148a5565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115614903576149026148b6565b5b6020830292506149148385846148bb565b82840190509392505050565b600061492c8385613a5c565b9350614939838584614077565b61494283613a97565b840190509392505050565b60006060820190506149626000830188613b98565b81810360208301526149758186886148c4565b9050818103604083015261498a818486614920565b90509695505050505050565b60006040820190506149ab6000830185614628565b6149b86020830184613eb8565b9392505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006149f5601883613a5c565b9150614a00826149bf565b602082019050919050565b60006020820190508181036000830152614a24816149e8565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614a87602983613a5c565b9150614a9282614a2b565b604082019050919050565b60006020820190508181036000830152614ab681614a7a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614b1f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614ae2565b614b298683614ae2565b95508019841693508086168417925050509392505050565b6000614b5c614b57614b5284613b03565b6145c1565b613b03565b9050919050565b6000819050919050565b614b7683614b41565b614b8a614b8282614b63565b848454614aef565b825550505050565b600090565b614b9f614b92565b614baa818484614b6d565b505050565b5b81811015614bce57614bc3600082614b97565b600181019050614bb0565b5050565b601f821115614c1357614be481614abd565b614bed84614ad2565b81016020851015614bfc578190505b614c10614c0885614ad2565b830182614baf565b50505b505050565b600082821c905092915050565b6000614c3660001984600802614c18565b1980831691505092915050565b6000614c4f8383614c25565b9150826002028217905092915050565b614c6882613a51565b67ffffffffffffffff811115614c8157614c80613c9a565b5b614c8b82546144aa565b614c96828285614bd2565b600060209050601f831160018114614cc95760008415614cb7578287015190505b614cc18582614c43565b865550614d29565b601f198416614cd786614abd565b60005b82811015614cff57848901518255600182019150602085019450602081019050614cda565b86831015614d1c5784890151614d18601f891682614c25565b8355505b6001600288020188555050505b505050505050565b60048110614d4257614d416144db565b5b50565b6000819050614d5382614d31565b919050565b6000614d6382614d45565b9050919050565b614d7381614d58565b82525050565b6000606082019050614d8e6000830187613b98565b8181036020830152614da18185876148c4565b9050614db06040830184614d6a565b95945050505050565b600081519050614dc881613b0d565b92915050565b600060208284031215614de457614de361398c565b5b6000614df284828501614db9565b91505092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000614e57602e83613a5c565b9150614e6282614dfb565b604082019050919050565b60006020820190508181036000830152614e8681614e4a565b9050919050565b600060ff82169050919050565b6000614eb5614eb0614eab846145b7565b6145c1565b614e8d565b9050919050565b614ec581614e9a565b82525050565b6000602082019050614ee06000830184614ebc565b92915050565b6000819050919050565b614f01614efc82613b03565b614ee6565b82525050565b60008160601b9050919050565b6000614f1f82614f07565b9050919050565b6000614f3182614f14565b9050919050565b614f49614f4482613b86565b614f26565b82525050565b6000614f5b8285614ef0565b602082019150614f6b8284614f38565b6014820191508190509392505050565b7f696e636f72726563742068617368000000000000000000000000000000000000600082015250565b6000614fb1600e83613a5c565b9150614fbc82614f7b565b602082019050919050565b60006020820190508181036000830152614fe081614fa4565b9050919050565b6000614ff282613b03565b9150614ffd83613b03565b92508282019050808211156150155761501461455c565b5b92915050565b7f696e636f7272656374206e6f6e63650000000000000000000000000000000000600082015250565b6000615051600f83613a5c565b915061505c8261501b565b602082019050919050565b6000602082019050818103600083015261508081615044565b9050919050565b600060408201905061509c60008301856145ed565b6150a96020830184613eb8565b9392505050565b600081905092915050565b60006150c682613a51565b6150d081856150b0565b93506150e0818560208601613a6d565b80840191505092915050565b60006150f882856150bb565b915061510482846150bb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061516c602683613a5c565b915061517782615110565b604082019050919050565b6000602082019050818103600083015261519b8161515f565b9050919050565b7f6f6e6c79207468652073746f72652063616e206d696e74000000000000000000600082015250565b60006151d8601783613a5c565b91506151e3826151a2565b602082019050919050565b60006020820190508181036000830152615207816151cb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615244602083613a5c565b915061524f8261520e565b602082019050919050565b6000602082019050818103600083015261527381615237565b9050919050565b600060408201905061528f6000830185613b98565b61529c6020830184613b98565b9392505050565b6000815190506152b2816142f9565b92915050565b6000602082840312156152ce576152cd61398c565b5b60006152dc848285016152a3565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000615341602183613a5c565b915061534c826152e5565b604082019050919050565b6000602082019050818103600083015261537081615334565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006153d3603d83613a5c565b91506153de82615377565b604082019050919050565b60006020820190508181036000830152615402816153c6565b9050919050565b600061541482613c5b565b915061541f83613c5b565b9250828201905063ffffffff81111561543b5761543a61455c565b5b92915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061549d602583613a5c565b91506154a882615441565b604082019050919050565b600060208201905081810360008301526154cc81615490565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061552f602483613a5c565b915061553a826154d3565b604082019050919050565b6000602082019050818103600083015261555e81615522565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006155c1602d83613a5c565b91506155cc82615565565b604082019050919050565b600060208201905081810360008301526155f0816155b4565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000615653602b83613a5c565b915061565e826155f7565b604082019050919050565b6000602082019050818103600083015261568281615646565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006156bf601c836150b0565b91506156ca82615689565b601c82019050919050565b6000819050919050565b6156f06156eb8261419f565b6156d5565b82525050565b6000615701826156b2565b915061570d82846156df565b60208201915081905092915050565b60006080820190506157316000830187613c6b565b61573e6020830186613b98565b61574b6040830185613eb8565b6157586060830184613eb8565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006157ec603283613a5c565b91506157f782615790565b604082019050919050565b6000602082019050818103600083015261581b816157df565b9050919050565b600061582d82613c5b565b915061583883613c5b565b9250828203905063ffffffff8111156158545761585361455c565b5b92915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615890601883613a5c565b915061589b8261585a565b602082019050919050565b600060208201905081810360008301526158bf81615883565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006158fc601f83613a5c565b9150615907826158c6565b602082019050919050565b6000602082019050818103600083015261592b816158ef565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061598e602283613a5c565b915061599982615932565b604082019050919050565b600060208201905081810360008301526159bd81615981565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006159fa601983613a5c565b9150615a05826159c4565b602082019050919050565b60006020820190508181036000830152615a29816159ed565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615a66602083613a5c565b9150615a7182615a30565b602082019050919050565b60006020820190508181036000830152615a9581615a59565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ad2601c83613a5c565b9150615add82615a9c565b602082019050919050565b60006020820190508181036000830152615b0181615ac5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b2f82615b08565b615b398185615b13565b9350615b49818560208601613a6d565b615b5281613a97565b840191505092915050565b6000608082019050615b726000830187613b98565b615b7f6020830186613b98565b615b8c6040830185613eb8565b8181036060830152615b9e8184615b24565b905095945050505050565b600081519050615bb8816139c2565b92915050565b600060208284031215615bd457615bd361398c565b5b6000615be284828501615ba9565b91505092915050565b615bf48161419f565b82525050565b615c0381614e8d565b82525050565b6000608082019050615c1e6000830187615beb565b615c2b6020830186615bfa565b615c386040830185615beb565b615c456060830184615beb565b9594505050505056fea26469706673582212209133b5af9bfb2fe2bd4a9654830581fd680e2f970e4a780922344e3b8d3746b264736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102745760003560e01c8063715018a611610151578063b5bd495e116100c3578063c87b56dd11610087578063c87b56dd146106d3578063d89135cd14610703578063e985e9c514610721578063f2fde38b14610751578063f7c2742f1461076d578063fe169d261461078957610274565b8063b5bd495e14610655578063b6f9b91314610673578063b88d4fde14610691578063bed20a87146106ad578063c13ee144146106b757610274565b806395d89b411161011557806395d89b41146105a9578063975057e7146105c75780639a456e6d146105e5578063a22cb46514610601578063a29a43bb1461061d578063a86fb5281461063957610274565b8063715018a61461053f578063747daec51461054957806378faa1a7146105655780638129fc1c146105815780638da5cb5b1461058b57610274565b80633672da53116101ea5780634bbf179b116101ae5780634bbf179b1461046b57806350ea5dd81461048957806358bf3c7f146104a55780635ebaf1db146104c15780636352211e146104df57806370a082311461050f57610274565b80633672da53146103dd5780633780e9b8146103f95780633cc158e01461041557806342842e0e14610433578063459d146b1461044f57610274565b806309aa2be11161023c57806309aa2be11461032f57806318160ddd146103395780631e7d195a1461035757806323b872dd1461037357806326b030891461038f5780632b47da52146103bf57610274565b806301ffc9a71461027957806306fdde03146102a9578063081812fc146102c7578063087cbd40146102f7578063095ea7b314610313575b600080fd5b610293600480360381019061028e91906139ee565b6107a5565b6040516102a09190613a36565b60405180910390f35b6102b1610887565b6040516102be9190613ae1565b60405180910390f35b6102e160048036038101906102dc9190613b39565b610919565b6040516102ee9190613ba7565b60405180910390f35b610311600480360381019061030c9190613bee565b61095f565b005b61032d60048036038101906103289190613c1b565b6109ab565b005b6103376109c4565b005b610341610b90565b60405161034e9190613c7a565b60405180910390f35b610371600480360381019061036c9190613e09565b610ba6565b005b61038d60048036038101906103889190613e65565b610dcd565b005b6103a960048036038101906103a49190613bee565b610e1c565b6040516103b69190613ec7565b60405180910390f35b6103c7610e34565b6040516103d49190613ba7565b60405180910390f35b6103f760048036038101906103f29190613c1b565b610e5a565b005b610413600480360381019061040e9190613f93565b610f55565b005b61041d610ffe565b60405161042a9190613c7a565b60405180910390f35b61044d60048036038101906104489190613e65565b611014565b005b61046960048036038101906104649190614014565b611063565b005b610473611101565b6040516104809190613c7a565b60405180910390f35b6104a3600480360381019061049e9190613bee565b611117565b005b6104bf60048036038101906104ba9190613bee565b611163565b005b6104c96111af565b6040516104d69190613ba7565b60405180910390f35b6104f960048036038101906104f49190613b39565b6111d5565b6040516105069190613ba7565b60405180910390f35b61052960048036038101906105249190613bee565b61125b565b6040516105369190613ec7565b60405180910390f35b610547611312565b005b610563600480360381019061055e91906140f6565b611326565b005b61057f600480360381019061057a919061413f565b611341565b005b610589611482565b005b6105936116bc565b6040516105a09190613ba7565b60405180910390f35b6105b16116e6565b6040516105be9190613ae1565b60405180910390f35b6105cf611778565b6040516105dc9190613ba7565b60405180910390f35b6105ff60048036038101906105fa9190614276565b61179e565b005b61061b60048036038101906106169190614325565b611956565b005b61063760048036038101906106329190613bee565b61196f565b005b610653600480360381019061064e9190614365565b6119bb565b005b61065d6119d3565b60405161066a9190613c7a565b60405180910390f35b61067b6119e9565b6040516106889190613ba7565b60405180910390f35b6106ab60048036038101906106a691906143b8565b611a0f565b005b6106b5611a60565b005b6106d160048036038101906106cc919061413f565b611ac4565b005b6106ed60048036038101906106e89190613b39565b611c05565b6040516106fa9190613ae1565b60405180910390f35b61070b611c6d565b6040516107189190613c7a565b60405180910390f35b61073b6004803603810190610736919061443b565b611c83565b6040516107489190613a36565b60405180910390f35b61076b60048036038101906107669190613bee565b611d17565b005b61078760048036038101906107829190614365565b611d9a565b005b6107a3600480360381019061079e9190614014565b611e5a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610880575061087f82611eea565b5b9050919050565b606060658054610896906144aa565b80601f01602080910402602001604051908101604052809291908181526020018280546108c2906144aa565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b600061092482611f54565b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610967611f9f565b8060ca60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b816109b58161201d565b6109bf838361211a565b505050565b600060cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506003808111156109fe576109fd6144db565b5b8173ffffffffffffffffffffffffffffffffffffffff166317881cbf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d919061452f565b6003811115610a7f57610a7e6144db565b5b14610a8957600080fd5b61271060cb601c9054906101000a900463ffffffff1663ffffffff1610610aaf57600080fd5b6000610ab9612231565b905060cb601c81819054906101000a900463ffffffff1680929190610add9061458b565b91906101000a81548163ffffffff021916908363ffffffff1602179055505060cb601481819054906101000a900463ffffffff1680929190610b1e9061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550507f5dc238ae2706a98b704a1b162e778905803c092930a374f59bac8581b951c64b813360016000604051610b749493929190614637565b60405180910390a1610b8c338263ffffffff1661227e565b5050565b60cb60149054906101000a900463ffffffff1681565b600a82511115610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906146c8565b60405180910390fd5b60005b8251811015610ca057610c20838281518110610c0d57610c0c6146e8565b5b602002602001015163ffffffff166111d5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490614763565b60405180910390fd5b8080610c9890614783565b915050610bee565b50610cb08163ffffffff166111d5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490614817565b60405180910390fd5b60005b8251811015610dc8576000838281518110610d3e57610d3d6146e8565b5b60200260200101519050610d7b3360cf60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff168363ffffffff1661229c565b7fcc4d245f9e76fcdf5cda04ae0bc04dd7be9beef103a277e0273594e2ac97aaa98184604051610dac929190614837565b60405180910390a1508080610dc090614783565b915050610d20565b505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0b57610e0a3361201d565b5b610e16848484612595565b50505050565b60ce6020528060005260406000206000915090505481565b60cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e62611f9f565b6000610e6c6125f5565b90508063ffffffff168214610e8057600080fd5b60cb601881819054906101000a900463ffffffff1680929190610ea29061458b565b91906101000a81548163ffffffff021916908363ffffffff1602179055505060cb601481819054906101000a900463ffffffff1680929190610ee39061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550507f5dc238ae2706a98b704a1b162e778905803c092930a374f59bac8581b951c64b8184600080604051610f389493929190614860565b60405180910390a1610f50838263ffffffff1661227e565b505050565b600060cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636678978933878787876040518663ffffffff1660e01b8152600401610fbd95949392919061494d565b600060405180830381600087803b158015610fd757600080fd5b505af1158015610feb573d6000803e3d6000fd5b50505050610ff761263e565b5050505050565b60cc60009054906101000a900463ffffffff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611052576110513361201d565b5b61105d84848461271e565b50505050565b60c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110bd57600080fd5b8063ffffffff167f529f395783b74aeb16a02d6320297d8415f7312f2ff2c398cd0d70e30bebc6c96000426040516110f6929190614996565b60405180910390a250565b60cb601c9054906101000a900463ffffffff1681565b61111f611f9f565b8060cf60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61116b611f9f565b8060cb60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806111e18361273e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990614a0b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290614a9d565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61131a611f9f565b611324600061277b565b565b61132e611f9f565b8060cd908161133d9190614c5f565b5050565b600060cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166301c4657033868660026040518563ffffffff1660e01b81526004016113a89493929190614d79565b600060405180830381600087803b1580156113c257600080fd5b505af11580156113d6573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663979ed6666040518163ffffffff1660e01b8152600401602060405180830381865afa158015611425573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114499190614dce565b82111561145557600080fd5b60005b8281101561147b5761146861263e565b808061147390614783565b915050611458565b5050505050565b60008060019054906101000a900460ff161590508080156114b35750600160008054906101000a900460ff1660ff16105b806114e057506114c230612841565b1580156114df5750600160008054906101000a900460ff1660ff16145b5b61151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614e6d565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561155c576001600060016101000a81548160ff0219169083151502179055505b6115d06040518060400160405280600381526020017f444d5800000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f444d580000000000000000000000000000000000000000000000000000000000815250612864565b6115d86128c1565b600060cb60146101000a81548163ffffffff021916908363ffffffff160217905550600060cb60186101000a81548163ffffffff021916908363ffffffff160217905550600060cb601c6101000a81548163ffffffff021916908363ffffffff160217905550600060cc60006101000a81548163ffffffff021916908363ffffffff16021790555080156116b95760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516116b09190614ecb565b60405180910390a15b50565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060606680546116f5906144aa565b80601f0160208091040260200160405190810160405280929190818152602001828054611721906144aa565b801561176e5780601f106117435761010080835404028352916020019161176e565b820191906000526020600020905b81548152906001019060200180831161175157829003601f168201915b5050505050905090565b60ca60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117a66116bc565b73ffffffffffffffffffffffffffffffffffffffff166117d7846117c98761291a565b61294a90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146117f757600080fd5b818160405160200161180a929190614f4f565b604051602081830303815290604052805190602001208414611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890614fc7565b60405180910390fd5b81600160ce60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ae9190614fe7565b146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590615067565b60405180910390fd5b60ce60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061193e90614783565b91905055506119508160026000612971565b50505050565b816119608161201d565b61196a8383612a52565b505050565b611977611f9f565b8060c960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6119c3611f9f565b6119ce838383612971565b505050565b60cb60189054906101000a900463ffffffff1681565b60cf60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a4d57611a4c3361201d565b5b611a5985858585612a68565b5050505050565b611a68611f9f565b7f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff604051611aba929190615087565b60405180910390a1565b600060cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166301c4657033868660016040518563ffffffff1660e01b8152600401611b2b9493929190614d79565b600060405180830381600087803b158015611b4557600080fd5b505af1158015611b59573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663a2ed22806040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ba8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bcc9190614dce565b821115611bd857600080fd5b60005b82811015611bfe57611beb61263e565b8080611bf690614783565b915050611bdb565b5050505050565b6060611c1082611f54565b6000611c1a612aca565b90506000815111611c3a5760405180602001604052806000815250611c65565b80611c4484612b5c565b604051602001611c559291906150ec565b6040516020818303038152906040525b915050919050565b60cf60009054906101000a900463ffffffff1681565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d1f611f9f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590615182565b60405180910390fd5b611d978161277b565b50565b60ca60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e21906151ee565b60405180910390fd5b60005b81811015611e5457611e4184600385612971565b8080611e4c90614783565b915050611e2d565b50505050565b60c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611eb457600080fd5b8063ffffffff167f227a473b70d2f893cc7659219575c030a63b5743024fe1e0c1a680e708b1525a60405160405180910390a250565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611f5d81612c2a565b611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390614a0b565b60405180910390fd5b50565b611fa7612c6b565b73ffffffffffffffffffffffffffffffffffffffff16611fc56116bc565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120129061525a565b60405180910390fd5b565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612117576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161209492919061527a565b602060405180830381865afa1580156120b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d591906152b8565b61211657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161210d9190613ba7565b60405180910390fd5b5b50565b6000612125826111d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90615357565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166121b4612c6b565b73ffffffffffffffffffffffffffffffffffffffff1614806121e357506121e2816121dd612c6b565b611c83565b5b612222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612219906153e9565b60405180910390fd5b61222c8383612c73565b505050565b600080600160cb601c9054906101000a900463ffffffff166103e86122569190615409565b6122609190615409565b9050612af88163ffffffff16111561227757600080fd5b8091505090565b612298828260405180602001604052806000815250612d2c565b5050565b8273ffffffffffffffffffffffffffffffffffffffff166122bc826111d5565b73ffffffffffffffffffffffffffffffffffffffff1614612312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612309906154b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890615545565b60405180910390fd5b61238e8383836001612d87565b8273ffffffffffffffffffffffffffffffffffffffff166123ae826111d5565b73ffffffffffffffffffffffffffffffffffffffff1614612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb906154b3565b60405180910390fd5b6069600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125908383836001612e0f565b505050565b6125a66125a0612c6b565b82612e15565b6125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc906155d7565b60405180910390fd5b6125f083838361229c565b505050565b600080600160cb60189054906101000a900463ffffffff166126179190615409565b90506103e88163ffffffff16111561263657612631612eaa565b612638565b805b91505090565b6000612648612231565b905060cb601c81819054906101000a900463ffffffff168092919061266c9061458b565b91906101000a81548163ffffffff021916908363ffffffff1602179055505060cb601481819054906101000a900463ffffffff16809291906126ad9061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550507f5dc238ae2706a98b704a1b162e778905803c092930a374f59bac8581b951c64b8133600160006040516127039493929190614637565b60405180910390a161271b338263ffffffff1661227e565b50565b61273983838360405180602001604052806000815250611a0f565b505050565b60006067600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff166128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90615669565b60405180910390fd5b6128bd8282612f50565b5050565b600060019054906101000a900460ff16612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290790615669565b60405180910390fd5b612918612fc3565b565b60008160405160200161292d91906156f6565b604051602081830303815290604052805190602001209050919050565b60008060006129598585613024565b9150915061296681613075565b819250505092915050565b600061297b612eaa565b905060cc600081819054906101000a900463ffffffff168092919061299f9061458b565b91906101000a81548163ffffffff021916908363ffffffff1602179055505060cb601481819054906101000a900463ffffffff16809291906129e09061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550507f5dc238ae2706a98b704a1b162e778905803c092930a374f59bac8581b951c64b81858585604051612a34949392919061571c565b60405180910390a1612a4c848263ffffffff1661227e565b50505050565b612a64612a5d612c6b565b83836131db565b5050565b612a79612a73612c6b565b83612e15565b612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf906155d7565b60405180910390fd5b612ac484848484613347565b50505050565b606060cd8054612ad9906144aa565b80601f0160208091040260200160405190810160405280929190818152602001828054612b05906144aa565b8015612b525780601f10612b2757610100808354040283529160200191612b52565b820191906000526020600020905b815481529060010190602001808311612b3557829003601f168201915b5050505050905090565b606060006001612b6b846133a3565b01905060008167ffffffffffffffff811115612b8a57612b89613c9a565b5b6040519080825280601f01601f191660200182016040528015612bbc5781602001600182028036833780820191505090505b509050600082602001820190505b600115612c1f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612c1357612c12615761565b5b04945060008503612bca575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16612c4c8361273e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ce6836111d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612d3683836134f6565b612d436000848484613713565b612d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7990615802565b60405180910390fd5b505050565b612d938484848461389a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e095760cf600081819054906101000a900463ffffffff1680929190612de99061458b565b91906101000a81548163ffffffff021916908363ffffffff160217905550505b50505050565b50505050565b600080612e21836111d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e635750612e628185611c83565b5b80612ea157508373ffffffffffffffffffffffffffffffffffffffff16612e8984610919565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b60006103e860cb60189054906101000a900463ffffffff1663ffffffff1611612f00576001612af860cc60009054906101000a900463ffffffff16612eef9190615409565b612ef99190615409565b9050612f4d565b6103e860cb60189054906101000a900463ffffffff1660cc60009054906101000a900463ffffffff16612af8612f369190615409565b612f409190615409565b612f4a9190615822565b90505b90565b600060019054906101000a900460ff16612f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9690615669565b60405180910390fd5b8160659081612fae9190614c5f565b508060669081612fbe9190614c5f565b505050565b600060019054906101000a900460ff16613012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300990615669565b60405180910390fd5b61302261301d612c6b565b61277b565b565b60008060418351036130655760008060006020860151925060408601519150606086015160001a9050613059878285856138a0565b9450945050505061306e565b60006002915091505b9250929050565b60006004811115613089576130886144db565b5b81600481111561309c5761309b6144db565b5b03156131d857600160048111156130b6576130b56144db565b5b8160048111156130c9576130c86144db565b5b03613109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613100906158a6565b60405180910390fd5b6002600481111561311d5761311c6144db565b5b8160048111156131305761312f6144db565b5b03613170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316790615912565b60405180910390fd5b60036004811115613184576131836144db565b5b816004811115613197576131966144db565b5b036131d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ce906159a4565b60405180910390fd5b5b50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324090615a10565b60405180910390fd5b80606a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161333a9190613a36565b60405180910390a3505050565b61335284848461229c565b61335e84848484613713565b61339d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339490615802565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613401577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816133f7576133f6615761565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061343e576d04ee2d6d415b85acef8100000000838161343457613433615761565b5b0492506020810190505b662386f26fc10000831061346d57662386f26fc10000838161346357613462615761565b5b0492506010810190505b6305f5e1008310613496576305f5e100838161348c5761348b615761565b5b0492506008810190505b61271083106134bb5761271083816134b1576134b0615761565b5b0492506004810190505b606483106134de57606483816134d4576134d3615761565b5b0492506002810190505b600a83106134ed576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355c90615a7c565b60405180910390fd5b61356e81612c2a565b156135ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a590615ae8565b60405180910390fd5b6135bc600083836001612d87565b6135c581612c2a565b15613605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fc90615ae8565b60405180910390fd5b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461370f600083836001612e0f565b5050565b60006137348473ffffffffffffffffffffffffffffffffffffffff16612841565b1561388d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261375d612c6b565b8786866040518563ffffffff1660e01b815260040161377f9493929190615b5d565b6020604051808303816000875af19250505080156137bb57506040513d601f19601f820116820180604052508101906137b89190615bbe565b60015b61383d573d80600081146137eb576040519150601f19603f3d011682016040523d82523d6000602084013e6137f0565b606091505b506000815103613835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382c90615802565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613892565b600190505b949350505050565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156138db576000600391509150613979565b6000600187878787604051600081526020016040526040516139009493929190615c09565b6020604051602081039080840390855afa158015613922573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361397057600060019250925050613979565b80600092509250505b94509492505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139cb81613996565b81146139d657600080fd5b50565b6000813590506139e8816139c2565b92915050565b600060208284031215613a0457613a0361398c565b5b6000613a12848285016139d9565b91505092915050565b60008115159050919050565b613a3081613a1b565b82525050565b6000602082019050613a4b6000830184613a27565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a8b578082015181840152602081019050613a70565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ab382613a51565b613abd8185613a5c565b9350613acd818560208601613a6d565b613ad681613a97565b840191505092915050565b60006020820190508181036000830152613afb8184613aa8565b905092915050565b6000819050919050565b613b1681613b03565b8114613b2157600080fd5b50565b600081359050613b3381613b0d565b92915050565b600060208284031215613b4f57613b4e61398c565b5b6000613b5d84828501613b24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9182613b66565b9050919050565b613ba181613b86565b82525050565b6000602082019050613bbc6000830184613b98565b92915050565b613bcb81613b86565b8114613bd657600080fd5b50565b600081359050613be881613bc2565b92915050565b600060208284031215613c0457613c0361398c565b5b6000613c1284828501613bd9565b91505092915050565b60008060408385031215613c3257613c3161398c565b5b6000613c4085828601613bd9565b9250506020613c5185828601613b24565b9150509250929050565b600063ffffffff82169050919050565b613c7481613c5b565b82525050565b6000602082019050613c8f6000830184613c6b565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613cd282613a97565b810181811067ffffffffffffffff82111715613cf157613cf0613c9a565b5b80604052505050565b6000613d04613982565b9050613d108282613cc9565b919050565b600067ffffffffffffffff821115613d3057613d2f613c9a565b5b602082029050602081019050919050565b600080fd5b613d4f81613c5b565b8114613d5a57600080fd5b50565b600081359050613d6c81613d46565b92915050565b6000613d85613d8084613d15565b613cfa565b90508083825260208201905060208402830185811115613da857613da7613d41565b5b835b81811015613dd15780613dbd8882613d5d565b845260208401935050602081019050613daa565b5050509392505050565b600082601f830112613df057613def613c95565b5b8135613e00848260208601613d72565b91505092915050565b60008060408385031215613e2057613e1f61398c565b5b600083013567ffffffffffffffff811115613e3e57613e3d613991565b5b613e4a85828601613ddb565b9250506020613e5b85828601613d5d565b9150509250929050565b600080600060608486031215613e7e57613e7d61398c565b5b6000613e8c86828701613bd9565b9350506020613e9d86828701613bd9565b9250506040613eae86828701613b24565b9150509250925092565b613ec181613b03565b82525050565b6000602082019050613edc6000830184613eb8565b92915050565b600080fd5b60008083601f840112613efd57613efc613c95565b5b8235905067ffffffffffffffff811115613f1a57613f19613ee2565b5b602083019150836020820283011115613f3657613f35613d41565b5b9250929050565b60008083601f840112613f5357613f52613c95565b5b8235905067ffffffffffffffff811115613f7057613f6f613ee2565b5b602083019150836001820283011115613f8c57613f8b613d41565b5b9250929050565b60008060008060408587031215613fad57613fac61398c565b5b600085013567ffffffffffffffff811115613fcb57613fca613991565b5b613fd787828801613ee7565b9450945050602085013567ffffffffffffffff811115613ffa57613ff9613991565b5b61400687828801613f3d565b925092505092959194509250565b60006020828403121561402a5761402961398c565b5b600061403884828501613d5d565b91505092915050565b600080fd5b600067ffffffffffffffff82111561406157614060613c9a565b5b61406a82613a97565b9050602081019050919050565b82818337600083830152505050565b600061409961409484614046565b613cfa565b9050828152602081018484840111156140b5576140b4614041565b5b6140c0848285614077565b509392505050565b600082601f8301126140dd576140dc613c95565b5b81356140ed848260208601614086565b91505092915050565b60006020828403121561410c5761410b61398c565b5b600082013567ffffffffffffffff81111561412a57614129613991565b5b614136848285016140c8565b91505092915050565b6000806000604084860312156141585761415761398c565b5b600084013567ffffffffffffffff81111561417657614175613991565b5b61418286828701613ee7565b9350935050602061419586828701613b24565b9150509250925092565b6000819050919050565b6141b28161419f565b81146141bd57600080fd5b50565b6000813590506141cf816141a9565b92915050565b600067ffffffffffffffff8211156141f0576141ef613c9a565b5b6141f982613a97565b9050602081019050919050565b6000614219614214846141d5565b613cfa565b90508281526020810184848401111561423557614234614041565b5b614240848285614077565b509392505050565b600082601f83011261425d5761425c613c95565b5b813561426d848260208601614206565b91505092915050565b600080600080608085870312156142905761428f61398c565b5b600061429e878288016141c0565b945050602085013567ffffffffffffffff8111156142bf576142be613991565b5b6142cb87828801614248565b93505060406142dc87828801613b24565b92505060606142ed87828801613bd9565b91505092959194509250565b61430281613a1b565b811461430d57600080fd5b50565b60008135905061431f816142f9565b92915050565b6000806040838503121561433c5761433b61398c565b5b600061434a85828601613bd9565b925050602061435b85828601614310565b9150509250929050565b60008060006060848603121561437e5761437d61398c565b5b600061438c86828701613bd9565b935050602061439d86828701613b24565b92505060406143ae86828701613b24565b9150509250925092565b600080600080608085870312156143d2576143d161398c565b5b60006143e087828801613bd9565b94505060206143f187828801613bd9565b935050604061440287828801613b24565b925050606085013567ffffffffffffffff81111561442357614422613991565b5b61442f87828801614248565b91505092959194509250565b600080604083850312156144525761445161398c565b5b600061446085828601613bd9565b925050602061447185828601613bd9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144c257607f821691505b6020821081036144d5576144d461447b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061451757600080fd5b50565b6000815190506145298161450a565b92915050565b6000602082840312156145455761454461398c565b5b60006145538482850161451a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061459682613c5b565b915063ffffffff82036145ac576145ab61455c565b5b600182019050919050565b6000819050919050565b6000819050919050565b60006145e66145e16145dc846145b7565b6145c1565b613b03565b9050919050565b6145f6816145cb565b82525050565b6000819050919050565b600061462161461c614617846145fc565b6145c1565b613b03565b9050919050565b61463181614606565b82525050565b600060808201905061464c6000830187613c6b565b6146596020830186613b98565b61466660408301856145ed565b6146736060830184614628565b95945050505050565b7f546f6f206d616e79206865726f6573206265696e67207475726e656420696e00600082015250565b60006146b2601f83613a5c565b91506146bd8261467c565b602082019050919050565b600060208201905081810360008301526146e1816146a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f596f75206d757374206f776e20746865206865726f6573000000000000000000600082015250565b600061474d601783613a5c565b915061475882614717565b602082019050919050565b6000602082019050818103600083015261477c81614740565b9050919050565b600061478e82613b03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036147c0576147bf61455c565b5b600182019050919050565b7f596f75206d757374206f776e20746865206865726f0000000000000000000000600082015250565b6000614801601583613a5c565b915061480c826147cb565b602082019050919050565b60006020820190508181036000830152614830816147f4565b9050919050565b600060408201905061484c6000830185613c6b565b6148596020830184613c6b565b9392505050565b60006080820190506148756000830187613c6b565b6148826020830186613b98565b61488f6040830185614628565b61489c6060830184614628565b95945050505050565b600082825260208201905092915050565b600080fd5b82818337505050565b60006148d083856148a5565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115614903576149026148b6565b5b6020830292506149148385846148bb565b82840190509392505050565b600061492c8385613a5c565b9350614939838584614077565b61494283613a97565b840190509392505050565b60006060820190506149626000830188613b98565b81810360208301526149758186886148c4565b9050818103604083015261498a818486614920565b90509695505050505050565b60006040820190506149ab6000830185614628565b6149b86020830184613eb8565b9392505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006149f5601883613a5c565b9150614a00826149bf565b602082019050919050565b60006020820190508181036000830152614a24816149e8565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614a87602983613a5c565b9150614a9282614a2b565b604082019050919050565b60006020820190508181036000830152614ab681614a7a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614b1f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614ae2565b614b298683614ae2565b95508019841693508086168417925050509392505050565b6000614b5c614b57614b5284613b03565b6145c1565b613b03565b9050919050565b6000819050919050565b614b7683614b41565b614b8a614b8282614b63565b848454614aef565b825550505050565b600090565b614b9f614b92565b614baa818484614b6d565b505050565b5b81811015614bce57614bc3600082614b97565b600181019050614bb0565b5050565b601f821115614c1357614be481614abd565b614bed84614ad2565b81016020851015614bfc578190505b614c10614c0885614ad2565b830182614baf565b50505b505050565b600082821c905092915050565b6000614c3660001984600802614c18565b1980831691505092915050565b6000614c4f8383614c25565b9150826002028217905092915050565b614c6882613a51565b67ffffffffffffffff811115614c8157614c80613c9a565b5b614c8b82546144aa565b614c96828285614bd2565b600060209050601f831160018114614cc95760008415614cb7578287015190505b614cc18582614c43565b865550614d29565b601f198416614cd786614abd565b60005b82811015614cff57848901518255600182019150602085019450602081019050614cda565b86831015614d1c5784890151614d18601f891682614c25565b8355505b6001600288020188555050505b505050505050565b60048110614d4257614d416144db565b5b50565b6000819050614d5382614d31565b919050565b6000614d6382614d45565b9050919050565b614d7381614d58565b82525050565b6000606082019050614d8e6000830187613b98565b8181036020830152614da18185876148c4565b9050614db06040830184614d6a565b95945050505050565b600081519050614dc881613b0d565b92915050565b600060208284031215614de457614de361398c565b5b6000614df284828501614db9565b91505092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000614e57602e83613a5c565b9150614e6282614dfb565b604082019050919050565b60006020820190508181036000830152614e8681614e4a565b9050919050565b600060ff82169050919050565b6000614eb5614eb0614eab846145b7565b6145c1565b614e8d565b9050919050565b614ec581614e9a565b82525050565b6000602082019050614ee06000830184614ebc565b92915050565b6000819050919050565b614f01614efc82613b03565b614ee6565b82525050565b60008160601b9050919050565b6000614f1f82614f07565b9050919050565b6000614f3182614f14565b9050919050565b614f49614f4482613b86565b614f26565b82525050565b6000614f5b8285614ef0565b602082019150614f6b8284614f38565b6014820191508190509392505050565b7f696e636f72726563742068617368000000000000000000000000000000000000600082015250565b6000614fb1600e83613a5c565b9150614fbc82614f7b565b602082019050919050565b60006020820190508181036000830152614fe081614fa4565b9050919050565b6000614ff282613b03565b9150614ffd83613b03565b92508282019050808211156150155761501461455c565b5b92915050565b7f696e636f7272656374206e6f6e63650000000000000000000000000000000000600082015250565b6000615051600f83613a5c565b915061505c8261501b565b602082019050919050565b6000602082019050818103600083015261508081615044565b9050919050565b600060408201905061509c60008301856145ed565b6150a96020830184613eb8565b9392505050565b600081905092915050565b60006150c682613a51565b6150d081856150b0565b93506150e0818560208601613a6d565b80840191505092915050565b60006150f882856150bb565b915061510482846150bb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061516c602683613a5c565b915061517782615110565b604082019050919050565b6000602082019050818103600083015261519b8161515f565b9050919050565b7f6f6e6c79207468652073746f72652063616e206d696e74000000000000000000600082015250565b60006151d8601783613a5c565b91506151e3826151a2565b602082019050919050565b60006020820190508181036000830152615207816151cb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615244602083613a5c565b915061524f8261520e565b602082019050919050565b6000602082019050818103600083015261527381615237565b9050919050565b600060408201905061528f6000830185613b98565b61529c6020830184613b98565b9392505050565b6000815190506152b2816142f9565b92915050565b6000602082840312156152ce576152cd61398c565b5b60006152dc848285016152a3565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000615341602183613a5c565b915061534c826152e5565b604082019050919050565b6000602082019050818103600083015261537081615334565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006153d3603d83613a5c565b91506153de82615377565b604082019050919050565b60006020820190508181036000830152615402816153c6565b9050919050565b600061541482613c5b565b915061541f83613c5b565b9250828201905063ffffffff81111561543b5761543a61455c565b5b92915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061549d602583613a5c565b91506154a882615441565b604082019050919050565b600060208201905081810360008301526154cc81615490565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061552f602483613a5c565b915061553a826154d3565b604082019050919050565b6000602082019050818103600083015261555e81615522565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006155c1602d83613a5c565b91506155cc82615565565b604082019050919050565b600060208201905081810360008301526155f0816155b4565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000615653602b83613a5c565b915061565e826155f7565b604082019050919050565b6000602082019050818103600083015261568281615646565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006156bf601c836150b0565b91506156ca82615689565b601c82019050919050565b6000819050919050565b6156f06156eb8261419f565b6156d5565b82525050565b6000615701826156b2565b915061570d82846156df565b60208201915081905092915050565b60006080820190506157316000830187613c6b565b61573e6020830186613b98565b61574b6040830185613eb8565b6157586060830184613eb8565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006157ec603283613a5c565b91506157f782615790565b604082019050919050565b6000602082019050818103600083015261581b816157df565b9050919050565b600061582d82613c5b565b915061583883613c5b565b9250828203905063ffffffff8111156158545761585361455c565b5b92915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615890601883613a5c565b915061589b8261585a565b602082019050919050565b600060208201905081810360008301526158bf81615883565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006158fc601f83613a5c565b9150615907826158c6565b602082019050919050565b6000602082019050818103600083015261592b816158ef565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061598e602283613a5c565b915061599982615932565b604082019050919050565b600060208201905081810360008301526159bd81615981565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006159fa601983613a5c565b9150615a05826159c4565b602082019050919050565b60006020820190508181036000830152615a29816159ed565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615a66602083613a5c565b9150615a7182615a30565b602082019050919050565b60006020820190508181036000830152615a9581615a59565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ad2601c83613a5c565b9150615add82615a9c565b602082019050919050565b60006020820190508181036000830152615b0181615ac5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b2f82615b08565b615b398185615b13565b9350615b49818560208601613a6d565b615b5281613a97565b840191505092915050565b6000608082019050615b726000830187613b98565b615b7f6020830186613b98565b615b8c6040830185613eb8565b8181036060830152615b9e8184615b24565b905095945050505050565b600081519050615bb8816139c2565b92915050565b600060208284031215615bd457615bd361398c565b5b6000615be284828501615ba9565b91505092915050565b615bf48161419f565b82525050565b615c0381614e8d565b82525050565b6000608082019050615c1e6000830187615beb565b615c2b6020830186615bfa565b615c386040830185615beb565b615c456060830184615beb565b9594505050505056fea26469706673582212209133b5af9bfb2fe2bd4a9654830581fd680e2f970e4a780922344e3b8d3746b264736f6c63430008110033
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.