Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4973108 | 12 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
OperatorFilteredToken
Compiler Version
v0.8.25+commit.b61c2a91
ZkSolc Version
v1.5.12
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "./LockableRevealERC721EnumerableToken.sol"; import "operator-filter-registry/src/IOperatorFilterRegistry.sol"; contract OperatorFilteredToken is LockableRevealERC721EnumerableToken { error OperatorNotAllowed(address operator); bool public OSFiltering = true; address public DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); IOperatorFilterRegistry public OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address _galaxisRegistry) LockableRevealERC721EnumerableToken(_galaxisRegistry) { } function init(TokenConstructorConfig memory config, address _actualOwner) public virtual override { if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), DEFAULT_SUBSCRIPTION); } super.init(config,_actualOwner); } // Toggle to disable OS filtering function toggleOSFilterOperatorState() public onlyOwner() { OSFiltering = !OSFiltering; } function setApprovalForAll(address operator, bool approved) public override(ERC721, IERC721) { if(OSFiltering) { _checkFilterOperator(operator); } super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override(ERC721, IERC721) { if(OSFiltering) { _checkFilterOperator(operator); } super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) { if (OSFiltering && from != msg.sender) { _checkFilterOperator(msg.sender); } super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) { if (OSFiltering && from != msg.sender) { _checkFilterOperator(msg.sender); } super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override(ERC721, IERC721) { if (OSFiltering && from != msg.sender) { _checkFilterOperator(msg.sender); } super.safeTransferFrom(from, to, tokenId, data); } 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) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "./IToken.sol"; import "../interfaces/IRegistryConsumer.sol"; import "../interfaces/IRandomNumberProvider.sol"; import "../interfaces/IRandomNumberRequester.sol"; import "../extras/recovery/BlackHolePrevention.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "../overrides/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "../../@galaxis/registries/contracts/CommunityList.sol"; import "../../@galaxis/registries/contracts/CommunityRegistry.sol"; import "../../@galaxis/registries/contracts/UsesGalaxisRegistry.sol"; import "../../@galaxis/registries/contracts/Versionable/IVersionable.sol"; contract LockableRevealERC721EnumerableToken is IToken, ERC721Enumerable, Ownable, BlackHolePrevention, UsesGalaxisRegistry, IVersionable { function version() public pure returns (uint256) { return 2024040301; } using Strings for uint256; bytes32 public constant TOKEN_CONTRACT_GIVEAWAY = keccak256("TOKEN_CONTRACT_GIVEAWAY"); bytes32 public constant TOKEN_CONTRACT_ACCESS_SALE = keccak256("TOKEN_CONTRACT_ACCESS_SALE"); bytes32 public constant TOKEN_CONTRACT_ACCESS_ADMIN = keccak256("TOKEN_CONTRACT_ACCESS_ADMIN"); bytes32 public constant TOKEN_CONTRACT_ACCESS_LOCK = keccak256("TOKEN_CONTRACT_ACCESS_LOCK"); bytes32 public constant TOKEN_CONTRACT_ACCESS_REVEAL = keccak256("TOKEN_CONTRACT_ACCESS_REVEAL"); constructor(address _galaxisRegistry) UsesGalaxisRegistry(_galaxisRegistry){ setup("GOLDEN_TOKEN_CONTRACT","GT"); //_initialized = true; } string constant public REGISTRY_KEY_RANDOM_CONTRACT = "RANDOMV2_SSP"; string constant public USER_RANDOM = "USER_RANDOM"; bool constant public useCommunityRandom = true; uint256 public projectID; uint256 public maxSupply; uint256 public mintedSupply; // minted incrementally uint256 public mintedReserve; uint256 public reservedSupply; // includes giveaway supply uint256 public giveawaySupply; string public tokenPreRevealURI; string public tokenRevealURI; bool public transferLocked; bool public lastRevealRequested; mapping(uint16 => revealStruct) public reveals; mapping(uint256 => uint16) public requestToRevealId; string public revealURI; uint16 public currentRevealCount; string public contractURI; bool _initialized; bool public VRFShifting; string public chain; string private _name; string private _symbol; CommunityRegistry public myCommunityRegistry; using EnumerableSet for EnumerableSet.AddressSet; // onlyOwner can change contractControllers and transfer it's ownership // any contractController can setData EnumerableSet.AddressSet contractControllers; event contractControllerEvent(address _address, bool mode); EnumerableSet.AddressSet contractManagers; event contractManagerEvent(address _address, bool mode); event Locked(bool); event RandomProcessed(uint256 stage, uint256 randNumber, uint256 _shiftsBy, uint256 _start, uint256 _end); event ContractURIset(string contractURI); function init(TokenConstructorConfig memory config, address _actualOwner ) public virtual { require(!_initialized, "Token: Contract already initialized"); _name = config.erc721name; _symbol = config.erc721symbol; projectID = config.projectID; tokenPreRevealURI = config.tokenPreRevealURI; tokenRevealURI = config.tokenRevealURI; maxSupply = config.maxSupply; transferLocked = config.transferLocked; reservedSupply = config.reservedSupply; giveawaySupply = config.giveawaySupply; CommunityList COMMUNITY_LIST = CommunityList(galaxisRegistry.getRegistryAddress("COMMUNITY_LIST")); (,address crAddr,) = COMMUNITY_LIST.communities(uint32(projectID)); myCommunityRegistry = CommunityRegistry(crAddr); VRFShifting = config.VRFShifting; uint256 id; assembly { id := chainid() } chain = id.toString(); _transferOwnership(_actualOwner); _initialized = true; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. */ function _beforeTokenTransfer( address from, address to, uint256 _tokenId ) internal override { if(from != address(0)) { require(!transferLocked, "Token: Transfers are not enabled"); } super._beforeTokenTransfer(from, to, _tokenId); } /** * @dev Sale: mint cards. * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_ACCESS_SALE */ function mintIncrementalCards(uint256 numberOfCards, address recipient) external onlyAllowed(TOKEN_CONTRACT_ACCESS_SALE) { require(!lastRevealRequested, "Token: Cannot mint after last reveal"); require(mintedSupply + numberOfCards <= maxSupply - reservedSupply, "Token: This would exceed the number of cards available"); uint256 mintId = mintedSupply + 1; for (uint j = 0; j < numberOfCards; j++) { _mint(recipient, mintId++); } mintedSupply+=numberOfCards; } /** * @dev Admin: mint reserved cards. * Should only mint reserved AFTER the sale is over. * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_ACCESS_ADMIN */ function mintReservedCards(uint256 numberOfCards, address recipient) external onlyAllowed(TOKEN_CONTRACT_ACCESS_ADMIN) { require(lastRevealRequested, "Token: Last reveal must be requested first"); require(mintedReserve + numberOfCards <= reservedSupply - giveawaySupply, "Token: This would exceed the number of reserved cards available"); uint256 mintId = mintedSupply + mintedReserve + 1; for (uint j = 0; j < numberOfCards; j++) { _mint(recipient, mintId++); } mintedReserve+=numberOfCards; } /** * @dev DropRegistry util */ function getFirstGiveawayCardId() public view returns (uint256) { return mintedSupply + reservedSupply - giveawaySupply + 1; } /** * @dev DropRegistry: mint specific giveaway card. * Can only mint after reserve has been minted. * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_GIVEAWAY */ function mintGiveawayCard(uint256 _index, address _recipient) external onlyAllowed(TOKEN_CONTRACT_GIVEAWAY) { require(lastRevealRequested, "Token: Last reveal must be requested first"); require(mintedReserve == reservedSupply - giveawaySupply, "Token: Must mint reserved cards first"); uint256 firstIndex = getFirstGiveawayCardId(); require( _index >= firstIndex && _index < firstIndex + giveawaySupply, "Token: Card id not in range"); _mint(_recipient, _index); } /** * @dev Admin: set PreRevealURI * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_ACCESS_ADMIN */ function setPreRevealURI(string calldata _tokenPreRevealURI) external onlyAllowed(TOKEN_CONTRACT_ACCESS_ADMIN) { tokenPreRevealURI = _tokenPreRevealURI; } /** * @dev Admin: set RevealURI * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_ACCESS_ADMIN */ function setRevealURI(string calldata _tokenRevealURI) external onlyAllowed(TOKEN_CONTRACT_ACCESS_ADMIN) { tokenRevealURI = _tokenRevealURI; } function getRandomSource() internal view returns (IRandomNumberProvider) { // console.log("*",useCommunityRandom,address(myCommunityRegistry),myCommunityRegistry.getRegistryAddress(USER_RANDOM)); if (useCommunityRandom) { return IRandomNumberProvider(myCommunityRegistry.getRegistryAddress(USER_RANDOM)); } else { return IRandomNumberProvider(galaxisRegistry.getRegistryAddress(REGISTRY_KEY_RANDOM_CONTRACT)); } } /** * @dev Admin: reveal tokens starting at prev range end to current supply * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_ACCESS_REVEAL */ function revealAtCurrentSupply() external onlyAllowed(TOKEN_CONTRACT_ACCESS_REVEAL) { require(VRFShifting, "Token: VRF Shifting must be enabled"); require(!lastRevealRequested, "Token: Last reveal already requested"); require(reveals[currentRevealCount].RANGE_END < mintedSupply, "Token: Reveal request already exists"); // make sure we have minted at least 1 token, else process() will fail with modulo / div by 0 revealStruct storage currentReveal = reveals[++currentRevealCount]; // if previous RANGE_END does not exist, this is 0 currentReveal.RANGE_START = reveals[currentRevealCount-1].RANGE_END; currentReveal.RANGE_END = mintedSupply; require(currentReveal.RANGE_END - currentReveal.RANGE_START > 0, "Token: requires minted tokens for current range to be at least 1"); // // console.log(mintedSupply , reservedSupply , maxSupply); require(mintedSupply + reservedSupply < maxSupply, "Token: Please request LastReveal"); currentReveal.REQUEST_ID = getRandomSource().requestRandomNumberWithCallback(); requestToRevealId[currentReveal.REQUEST_ID] = currentRevealCount; } /** * @dev Admin: reveal tokens starting at prev range end to: * - if(!VRFShifting) then RANGE_END = maxSupply * - if(VRFShifting) then RANGE_END = maxSupply * * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_ACCESS_REVEAL */ function lastReveal() external onlyAllowed(TOKEN_CONTRACT_ACCESS_REVEAL) { require(!lastRevealRequested, "Token: Last reveal already requested"); require(reveals[currentRevealCount].RANGE_END < maxSupply, "Token: Reveal request already exists"); lastRevealRequested = true; revealStruct storage currentReveal = reveals[++currentRevealCount]; // if previous RANGE_END does not exist, this is 0 currentReveal.RANGE_START = reveals[currentRevealCount-1].RANGE_END; // Normal VRF Shifting process if(VRFShifting) { // since reservedSupply currentReveal.RANGE_END = mintedSupply + reservedSupply; // currentReveal.RANGE_END = maxSupply; require(currentReveal.RANGE_END - currentReveal.RANGE_START > 0, "Token: requires minted tokens for current range to be at least 1"); // console.log("241 ",address(getRandomSource())); currentReveal.REQUEST_ID = getRandomSource().requestRandomNumberWithCallback(); requestToRevealId[currentReveal.REQUEST_ID] = currentRevealCount; } else { require(mintedSupply > 0, "Token: requires minted tokens for current range to be at least 1"); // Non shifted token // Does not do a VRF call // Just sets max supply as revealed and emits RandomProcessed so Metadata Server ca pick it up and reveal things currentReveal.RANDOM_NUM = 0; currentReveal.SHIFT = 0; currentReveal.RANGE_START = 0; currentReveal.RANGE_END = maxSupply; emit RandomProcessed( currentRevealCount, currentReveal.RANDOM_NUM, currentReveal.SHIFT, currentReveal.RANGE_START, currentReveal.RANGE_END ); } } /** * @dev Chainlink VRF callback */ function process(uint256 _random, uint256 _requestId) external { require(VRFShifting, "Token: VRF Shifting must be enabled"); require( msg.sender == address(getRandomSource()), "Token: process() Unauthorised caller" ); // get reveal using _requestId uint16 thisRevealId = requestToRevealId[_requestId]; revealStruct storage thisReveal = reveals[thisRevealId]; require(!thisReveal.processed, "Token: reveal already processed."); if(thisReveal.REQUEST_ID == _requestId) { thisReveal.RANDOM_NUM = _random / 2; // Set msb to zero // in the very rare case where RANDOM_NUM is 0, use currentReveal.RANGE_END / 3 if(thisReveal.RANDOM_NUM == 0) { thisReveal.RANDOM_NUM = thisReveal.RANGE_END * (10 ** 5) / 3; } thisReveal.SHIFT = thisReveal.RANDOM_NUM % ( thisReveal.RANGE_END - thisReveal.RANGE_START ); // in the very rare case where the shifting result is 0, do it again but divide by 3 if(thisReveal.SHIFT == 0) { thisReveal.RANDOM_NUM = thisReveal.RANDOM_NUM / 3; thisReveal.SHIFT = thisReveal.RANDOM_NUM % ( thisReveal.RANGE_END - thisReveal.RANGE_START ); } thisReveal.processed = true; emit RandomProcessed( thisRevealId, thisReveal.RANDOM_NUM, thisReveal.SHIFT, thisReveal.RANGE_START, thisReveal.RANGE_END ); } else revert("Token: Incorrect requestId received"); } function findRevealRangeForN(uint256 n) public view returns (uint16) { for(uint16 i = 1; i <= currentRevealCount; i++) { if(n <= reveals[i].RANGE_END) { return i; } } return 0; } function uri(uint256 n) public view returns (uint256) { uint16 rangeId = findRevealRangeForN(n); // outside ranges if(rangeId == 0) { return n; } revealStruct memory currentReveal = reveals[rangeId]; uint256 shiftedN = n + currentReveal.SHIFT; if (shiftedN <= currentReveal.RANGE_END) { return shiftedN; } return currentReveal.RANGE_START + shiftedN - currentReveal.RANGE_END; } /** * @dev Reserved are always at the end of current minted */ function _reserved(uint256 _tokenId) public view returns (bool) { if(_tokenId > mintedSupply + mintedReserve && _tokenId <= mintedSupply + reservedSupply) { return true; } return false; } /** * @dev Get metadata server url for tokenId */ function tokenURI(uint256 _tokenId) public view override(IToken, ERC721) returns (string memory) { require(_exists(_tokenId) || _reserved(_tokenId), 'Token: Token does not exist'); if(VRFShifting) { uint16 rangeId = findRevealRangeForN(_tokenId); // outside ranges if(rangeId == 0) { return tokenPreRevealURI; } revealStruct memory currentReveal = reveals[rangeId]; // if random number was not set, return pre reveal // TODO: most likely remove this.. as we never get here.. we're already outside range if(currentReveal.RANDOM_NUM == 0) { return tokenPreRevealURI; } } uint256 newTokenId = uri(_tokenId); string memory folder = (newTokenId % 100).toString(); string memory file = newTokenId.toString(); string memory slash = "/"; return string.concat(tokenRevealURI, chain, slash, folder, slash, file); } /** * @dev Admin: Lock / Unlock transfers * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_ACCESS_LOCK */ function setTransferLock(bool _locked) external onlyAllowed(TOKEN_CONTRACT_ACCESS_LOCK) { transferLocked = _locked; emit Locked(_locked); } function hasRole(bytes32 key, address user) public view returns (bool) { return myCommunityRegistry.hasRole(key, user); } /** * @dev Admin: Allow / Dissalow addresses */ modifier onlyAllowed(bytes32 role) { require(isAllowed(role, msg.sender), "Token: Unauthorised"); _; } function isAllowed(bytes32 role, address user) public view returns (bool) { return( user == owner() || hasRole(role, user)); } function tellEverything() external view returns (TokenInfo memory) { revealStruct[] memory _reveals = new revealStruct[](currentRevealCount); for(uint16 i = 1; i <= currentRevealCount; i++) { _reveals[i - 1] = reveals[i]; } uint256 contractManagers_length = contractManagers.length(); address[] memory _managers = new address[](contractManagers_length); for(uint16 i = 0; i < contractManagers_length; i++) { _managers[i] = contractManagers.at(i); } uint256 contractControllers_length = contractControllers.length(); address[] memory _controllers = new address[](contractControllers_length); for(uint16 i = 0; i < contractControllers_length; i++) { _controllers[i] = contractControllers.at(i); } return TokenInfo( name(), symbol(), projectID, maxSupply, mintedSupply, mintedReserve, reservedSupply, giveawaySupply, tokenPreRevealURI, tokenRevealURI, transferLocked, lastRevealRequested, totalSupply(), _reveals, owner(), _managers, _controllers, version(), VRFShifting ); } function getTokenInfoForSale() external view returns (TokenInfoForSale memory) { return TokenInfoForSale( projectID, maxSupply, reservedSupply ); } function name() public view override returns (string memory) { return _name; } function symbol() public view override returns (string memory) { return _symbol; } /** * @dev Admin: set setContractURI * - DEFAULT_ADMIN_ROLE or TOKEN_CONTRACT_ACCESS_ADMIN */ function setContractURI(string memory _contractURI) external onlyAllowed(TOKEN_CONTRACT_ACCESS_ADMIN) { contractURI = _contractURI; emit ContractURIset(_contractURI); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; struct revealStruct { uint256 REQUEST_ID; uint256 RANDOM_NUM; uint256 SHIFT; uint256 RANGE_START; uint256 RANGE_END; bool processed; } struct TokenInfoForSale { uint256 projectID; uint256 maxSupply; uint256 reservedSupply; } struct TokenInfo { string name; string symbol; uint256 projectID; uint256 maxSupply; uint256 mintedSupply; uint256 mintedReserve; uint256 reservedSupply; uint256 giveawaySupply; string tokenPreRevealURI; string tokenRevealURI; bool transferLocked; bool lastRevealRequested; uint256 totalSupply; revealStruct[] reveals; address owner; address[] managers; address[] controllers; uint256 version; bool VRFShifting; } struct TokenConstructorConfig { uint256 projectID; uint256 maxSupply; string erc721name; string erc721symbol; string tokenPreRevealURI; string tokenRevealURI; bool transferLocked; uint256 reservedSupply; uint256 giveawaySupply; bool VRFShifting; } interface IToken { function init(TokenConstructorConfig memory config, address _actualOwner) external; function TOKEN_CONTRACT_GIVEAWAY() external returns (bytes32); function TOKEN_CONTRACT_ACCESS_SALE() external returns (bytes32); function TOKEN_CONTRACT_ACCESS_ADMIN() external returns (bytes32); function TOKEN_CONTRACT_ACCESS_LOCK() external returns (bytes32); function TOKEN_CONTRACT_ACCESS_REVEAL() external returns (bytes32); function mintIncrementalCards(uint256, address) external; function mintReservedCards(uint256, address) external; function mintGiveawayCard(uint256, address) external; function setPreRevealURI(string calldata) external; function setRevealURI(string calldata) external; function revealAtCurrentSupply() external; function lastReveal() external; function process(uint256, uint256) external; function uri(uint256) external view returns (uint256); function tokenURI(uint256) external view returns (string memory); function setTransferLock(bool) external; function hasRole(bytes32, address) external view returns (bool); function isAllowed(bytes32, address) external view returns (bool); function getFirstGiveawayCardId() external view returns (uint256); function tellEverything() external view returns (TokenInfo memory); function getTokenInfoForSale() external view returns (TokenInfoForSale memory); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; interface IRandomNumberProvider { function requestRandomNumber() external returns (uint256 requestId); function requestRandomNumberWithCallback() external returns (uint256); function isRequestComplete(uint256 requestId) external view returns (bool isCompleted); function randomNumber(uint256 requestId) external view returns (uint256 randomNum); function setAuth(address user, bool grant) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; interface IRegistryConsumer { function getRegistryAddress(string memory key) external view returns (address) ; function getRegistryBool(string memory key) external view returns (bool); function getRegistryUINT(string memory key) external view returns (uint256) ; function getRegistryString(string memory key) external view returns (string memory) ; function isAdmin(address user) external view returns (bool); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; interface IRandomNumberRequester { function process(uint256 rand, uint256 requestId) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "./ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "@openzeppelin/contracts/access/extensions/AccessControlEnumerable.sol"; import "./Versionable/IVersionable.sol"; contract CommunityList is AccessControlEnumerable, IVersionable { function version() external pure returns (uint256) { return 2024040301; } bytes32 public constant CONTRACT_ADMIN = keccak256("CONTRACT_ADMIN"); uint256 public numberOfEntries; struct community_entry { string name; address registry; uint32 id; } mapping(uint32 => community_entry) public communities; // community_id => record mapping(uint256 => uint32) public index; // entryNumber => community_id for enumeration event CommunityAdded(uint256 pos, string community_name, address community_registry, uint32 community_id); constructor() { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(CONTRACT_ADMIN,msg.sender); } function addCommunity(uint32 community_id, string memory community_name, address community_registry) external onlyRole(CONTRACT_ADMIN) { uint256 pos = numberOfEntries++; index[pos] = community_id; communities[community_id] = community_entry(community_name, community_registry, community_id); emit CommunityAdded(pos, community_name, community_registry, community_id); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract BlackHolePrevention is Ownable { using Address for address payable; // blackhole prevention methods constructor() Ownable(msg.sender) { } function retrieveETH() external onlyOwner { address payable sender = payable(msg.sender); sender.sendValue(address(this).balance); } function retrieveERC20(address _tracker, uint256 amount) external onlyOwner { IERC20(_tracker).transfer(msg.sender, amount); } function retrieve721(address _tracker, uint256 id) external onlyOwner { IERC721(_tracker).transferFrom(address(this), msg.sender, id); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "./IRegistry.sol"; contract UsesGalaxisRegistry { IRegistry immutable public galaxisRegistry; constructor(address _galaxisRegistry) { galaxisRegistry = IRegistry(_galaxisRegistry); } }
// 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: UNLICENSED pragma solidity 0.8.25; import "@openzeppelin/contracts/access/extensions/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/access/IAccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./Versionable/IVersionable.sol"; import "./UsesGalaxisRegistry.sol"; contract CommunityRegistry is AccessControlEnumerable, UsesGalaxisRegistry, IVersionable { function version() virtual external pure returns(uint256) { return 2024040401; } bytes32 public constant COMMUNITY_REGISTRY_ADMIN = keccak256("COMMUNITY_REGISTRY_ADMIN"); uint32 public community_id; string public community_name; mapping(bytes32 => address) addresses; mapping(bytes32 => uint256) uints; mapping(bytes32 => bool) booleans; mapping(bytes32 => string) strings; mapping (uint => string) public addressEntries; mapping (uint => string) public uintEntries; mapping (uint => string) public boolEntries; mapping (uint => string) public stringEntries; uint public numberOfAddresses; uint public numberOfUINTs; uint public numberOfBooleans; uint public numberOfStrings; bool initialised; bool public independant; event IndependanceDay(bool gain_independance); modifier onlyAdmin() { require( isUserCommunityAdmin(COMMUNITY_REGISTRY_ADMIN,msg.sender) ,"CommunityRegistry : Unauthorised"); _; } modifier onlyPropertyAdmin() { require( isUserCommunityAdmin(COMMUNITY_REGISTRY_ADMIN,msg.sender) || hasRole(COMMUNITY_REGISTRY_ADMIN,msg.sender) ,"CommunityRegistry : Unauthorised"); _; } function isUserCommunityAdmin(bytes32 role, address user) public view returns (bool) { if (hasRole(DEFAULT_ADMIN_ROLE,user) ) return true; // community_admin can do anything if (independant){ return( hasRole(role,user) ); } else { // for Factories return(roleManager().hasRole(role,user)); } } function roleManager() internal view returns (IAccessControlEnumerable) { address addr = galaxisRegistry.getRegistryAddress("ROLE_MANAGER"); // universal if (addr != address(0)) return IAccessControlEnumerable(addr); addr = galaxisRegistry.getRegistryAddress("MAINNET_CHAIN_IMPLEMENTER"); // mainnet if (addr != address(0)) return IAccessControlEnumerable(addr); addr = galaxisRegistry.getRegistryAddress("L2_RECEIVER"); // mainnet require(addr != address(0),"CommunityRegistry : no higher authority found"); return IAccessControlEnumerable(addr); } function grantRole(bytes32 key, address user) public override(AccessControl,IAccessControl) onlyAdmin { _grantRole(key,user); // need to be able to grant it } constructor ( address _galaxisRegistry, uint32 _community_id, address _community_admin, string memory _community_name ) UsesGalaxisRegistry(_galaxisRegistry){ _init(_community_id,_community_admin,_community_name); } function init( uint32 _community_id, address _community_admin, string memory _community_name ) external { _init(_community_id,_community_admin,_community_name); } function _init( uint32 _community_id, address _community_admin, string memory _community_name ) internal { require(!initialised,"This can only be called once"); initialised = true; community_id = _community_id; community_name = _community_name; _grantRole(DEFAULT_ADMIN_ROLE, _community_admin); // default admin = launchpad } event AdminUpdated(address user, bool isAdmin); event AppAdminChanged(address app,address user,bool state); //=== event AddressChanged(string key, address value); event UintChanged(string key, uint256 value); event BooleanChanged(string key, bool value); event StringChanged(string key, string value); function setIndependant(bool gain_independance) external onlyAdmin { if (independant != gain_independance) { independant = gain_independance; emit IndependanceDay(gain_independance); } } function setAdmin(address user,bool status ) external onlyAdmin { if (status) _grantRole(COMMUNITY_REGISTRY_ADMIN,user); else _revokeRole(COMMUNITY_REGISTRY_ADMIN,user); } function hash(string memory field) internal pure returns (bytes32) { return keccak256(abi.encode(field)); } function setRegistryAddress(string memory fn, address value) external onlyPropertyAdmin { bytes32 hf = hash(fn); addresses[hf] = value; addressEntries[numberOfAddresses++] = fn; emit AddressChanged(fn,value); } function setRegistryBool(string memory fn, bool value) external onlyPropertyAdmin { bytes32 hf = hash(fn); booleans[hf] = value; boolEntries[numberOfBooleans++] = fn; emit BooleanChanged(fn,value); } function setRegistryString(string memory fn, string memory value) external onlyPropertyAdmin { bytes32 hf = hash(fn); strings[hf] = value; stringEntries[numberOfStrings++] = fn; emit StringChanged(fn,value); } function setRegistryUINT(string memory fn, uint value) external onlyPropertyAdmin { bytes32 hf = hash(fn); uints[hf] = value; uintEntries[numberOfUINTs++] = fn; emit UintChanged(fn,value); } function getRegistryAddress(string memory key) external view returns (address) { return addresses[hash(key)]; } function getRegistryBool(string memory key) external view returns (bool) { return booleans[hash(key)]; } function getRegistryUINT(string memory key) external view returns (uint256) { return uints[hash(key)]; } function getRegistryString(string memory key) external view returns (string memory) { return strings[hash(key)]; } }
//SPDX-License-Identifier: Unlicensed pragma solidity 0.8.25; /** * @title IVersionable * @dev Interface for versionable contracts. */ interface IVersionable { /** * @notice Get the current version of the contract. * @return The current version. */ function version() external pure returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SafeCast} from "./math/SafeCast.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { using SafeCast for *; bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev The string being parsed contains characters that are not in scope of the given base. */ error StringsInvalidChar(); /** * @dev The string being parsed is not a properly formatted address. */ error StringsInvalidAddressFormat(); /** * @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; assembly ("memory-safe") { ptr := add(buffer, add(32, length)) } while (true) { ptr--; assembly ("memory-safe") { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal * representation, according to EIP-55. */ function toChecksumHexString(address addr) internal pure returns (string memory) { bytes memory buffer = bytes(toHexString(addr)); // hash the hex part of buffer (skip length + 2 bytes, length 40) uint256 hashValue; assembly ("memory-safe") { hashValue := shr(96, keccak256(add(buffer, 0x22), 40)) } for (uint256 i = 41; i > 1; --i) { // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f) if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) { // case shift by xoring with 0x20 buffer[i] ^= 0x20; } hashValue >>= 4; } return string(buffer); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } /** * @dev Parse a decimal string and returns the value as a `uint256`. * * Requirements: * - The string must be formatted as `[0-9]*` * - The result must fit into an `uint256` type */ function parseUint(string memory input) internal pure returns (uint256) { return parseUint(input, 0, bytes(input).length); } /** * @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `[0-9]*` * - The result must fit into an `uint256` type */ function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) { (bool success, uint256 value) = tryParseUint(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) { return _tryParseUintUncheckedBounds(input, 0, bytes(input).length); } /** * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid * character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseUint( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, uint256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseUintUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseUintUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, uint256 value) { bytes memory buffer = bytes(input); uint256 result = 0; for (uint256 i = begin; i < end; ++i) { uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i))); if (chr > 9) return (false, 0); result *= 10; result += chr; } return (true, result); } /** * @dev Parse a decimal string and returns the value as a `int256`. * * Requirements: * - The string must be formatted as `[-+]?[0-9]*` * - The result must fit in an `int256` type. */ function parseInt(string memory input) internal pure returns (int256) { return parseInt(input, 0, bytes(input).length); } /** * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `[-+]?[0-9]*` * - The result must fit in an `int256` type. */ function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) { (bool success, int256 value) = tryParseInt(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if * the result does not fit in a `int256`. * * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`. */ function tryParseInt(string memory input) internal pure returns (bool success, int256 value) { return _tryParseIntUncheckedBounds(input, 0, bytes(input).length); } uint256 private constant ABS_MIN_INT256 = 2 ** 255; /** * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid * character or if the result does not fit in a `int256`. * * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`. */ function tryParseInt( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, int256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseIntUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseIntUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, int256 value) { bytes memory buffer = bytes(input); // Check presence of a negative sign. bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty bool positiveSign = sign == bytes1("+"); bool negativeSign = sign == bytes1("-"); uint256 offset = (positiveSign || negativeSign).toUint(); (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end); if (absSuccess && absValue < ABS_MIN_INT256) { return (true, negativeSign ? -int256(absValue) : int256(absValue)); } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) { return (true, type(int256).min); } else return (false, 0); } /** * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`. * * Requirements: * - The string must be formatted as `(0x)?[0-9a-fA-F]*` * - The result must fit in an `uint256` type. */ function parseHexUint(string memory input) internal pure returns (uint256) { return parseHexUint(input, 0, bytes(input).length); } /** * @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `(0x)?[0-9a-fA-F]*` * - The result must fit in an `uint256` type. */ function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) { (bool success, uint256 value) = tryParseHexUint(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) { return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length); } /** * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an * invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseHexUint( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, uint256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseHexUintUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseHexUintUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, uint256 value) { bytes memory buffer = bytes(input); // skip 0x prefix if present bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty uint256 offset = hasPrefix.toUint() * 2; uint256 result = 0; for (uint256 i = begin + offset; i < end; ++i) { uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i))); if (chr > 15) return (false, 0); result *= 16; unchecked { // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check). // This guaratees that adding a value < 16 will not cause an overflow, hence the unchecked. result += chr; } } return (true, result); } /** * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`. * * Requirements: * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}` */ function parseAddress(string memory input) internal pure returns (address) { return parseAddress(input, 0, bytes(input).length); } /** * @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}` */ function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) { (bool success, address value) = tryParseAddress(input, begin, end); if (!success) revert StringsInvalidAddressFormat(); return value; } /** * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly * formatted address. See {parseAddress} requirements. */ function tryParseAddress(string memory input) internal pure returns (bool success, address value) { return tryParseAddress(input, 0, bytes(input).length); } /** * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly * formatted address. See {parseAddress} requirements. */ function tryParseAddress( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, address value) { if (end > bytes(input).length || begin > end) return (false, address(0)); bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty uint256 expectedLength = 40 + hasPrefix.toUint() * 2; // check that input is the correct length if (end - begin == expectedLength) { // length guarantees that this does not overflow, and value is at most type(uint160).max (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end); return (s, address(uint160(v))); } else { return (false, address(0)); } } function _tryParseChr(bytes1 chr) private pure returns (uint8) { uint8 value = uint8(chr); // Try to parse `chr`: // - Case 1: [0-9] // - Case 2: [a-f] // - Case 3: [A-F] // - otherwise not supported unchecked { if (value > 47 && value < 58) value -= 48; else if (value > 96 && value < 103) value -= 87; else if (value > 64 && value < 71) value -= 55; else return type(uint8).max; } return value; } /** * @dev Reads a bytes32 from a bytes array without bounds checking. * * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the * assembly block as such would prevent some optimizations. */ function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) { // This is not memory safe in the general case, but all calls to this private function are within bounds. assembly ("memory-safe") { value := mload(add(buffer, add(0x20, offset))) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.20; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position is the index of the value in the `values` array plus 1. // Position 0 is used to mean a value is not in the set. mapping(bytes32 value => uint256) _positions; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._positions[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We cache the value's position to prevent multiple reads from the same storage slot uint256 position = set._positions[value]; if (position != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 valueIndex = position - 1; uint256 lastIndex = set._values.length - 1; if (valueIndex != lastIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the lastValue to the index where the value to delete is set._values[valueIndex] = lastValue; // Update the tracked position of the lastValue (that was just moved) set._positions[lastValue] = position; } // Delete the slot where the moved value was stored set._values.pop(); // Delete the tracked position for the deleted slot delete set._positions[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._positions[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; assembly ("memory-safe") { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly ("memory-safe") { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly ("memory-safe") { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.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 ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings 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; bool private _initialized; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ // constructor(string memory name_, string memory symbol_) { // _name = name_; // _symbol = symbol_; // } function setup(string memory name_, string memory symbol_) public { require(!_initialized, "ERC721: Contract already initialized"); _name = name_; _symbol = symbol_; _initialized = true; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); 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: transfer caller is not owner nor 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: transfer caller is not owner nor 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 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 _owners[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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {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 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.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; interface IRegistry { function setRegistryAddress(string memory fn, address value) external ; function setRegistryBool(string memory fn, bool value) external ; function setRegistryUINT(string memory key) external returns (uint256) ; function setRegistryString(string memory fn, string memory value) external ; function setAdmin(address user,bool status ) external; function setAppAdmin(address app, address user, bool state) external; function getRegistryAddress(string memory key) external view returns (address) ; function getRegistryBool(string memory key) external view returns (bool); function getRegistryUINT(string memory key) external view returns (uint256) ; function getRegistryString(string memory key) external view returns (string memory) ; function isAdmin(address user) external view returns (bool) ; function isAppAdmin(address app, address user) external view returns (bool); function numberOfAddresses() external view returns(uint256); function addressEntries(uint256) external view returns(string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.2.0) (utils/Address.sol) pragma solidity ^0.8.20; import {Errors} from "./Errors.sol"; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert Errors.InsufficientBalance(address(this).balance, amount); } (bool success, bytes memory returndata) = recipient.call{value: amount}(""); if (!success) { _revert(returndata); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {Errors.FailedCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert Errors.InsufficientBalance(address(this).balance, value); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case * of an unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {Errors.FailedCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly ("memory-safe") { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert Errors.FailedCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/AccessControlEnumerable.sol) pragma solidity ^0.8.20; import {IAccessControlEnumerable} from "./IAccessControlEnumerable.sol"; import {AccessControl} from "../AccessControl.sol"; import {EnumerableSet} from "../../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 role => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual returns (uint256) { return _roleMembers[role].length(); } /** * @dev Return all accounts that have `role` * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function getRoleMembers(bytes32 role) public view virtual returns (address[] memory) { return _roleMembers[role].values(); } /** * @dev Overload {AccessControl-_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override returns (bool) { bool granted = super._grantRole(role, account); if (granted) { _roleMembers[role].add(account); } return granted; } /** * @dev Overload {AccessControl-_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override returns (bool) { bool revoked = super._revokeRole(role, account); if (revoked) { _roleMembers[role].remove(account); } return revoked; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC-165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC-721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC-721 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 ERC-721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.20; import {IERC721} from "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.20; /** * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeCast { /** * @dev Value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value); /** * @dev An int value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedIntToUint(int256 value); /** * @dev Value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedIntDowncast(uint8 bits, int256 value); /** * @dev An uint value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedUintToInt(uint256 value); /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits */ function toUint248(uint256 value) internal pure returns (uint248) { if (value > type(uint248).max) { revert SafeCastOverflowedUintDowncast(248, value); } return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits */ function toUint240(uint256 value) internal pure returns (uint240) { if (value > type(uint240).max) { revert SafeCastOverflowedUintDowncast(240, value); } return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits */ function toUint232(uint256 value) internal pure returns (uint232) { if (value > type(uint232).max) { revert SafeCastOverflowedUintDowncast(232, value); } return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { if (value > type(uint224).max) { revert SafeCastOverflowedUintDowncast(224, value); } return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits */ function toUint216(uint256 value) internal pure returns (uint216) { if (value > type(uint216).max) { revert SafeCastOverflowedUintDowncast(216, value); } return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits */ function toUint208(uint256 value) internal pure returns (uint208) { if (value > type(uint208).max) { revert SafeCastOverflowedUintDowncast(208, value); } return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits */ function toUint200(uint256 value) internal pure returns (uint200) { if (value > type(uint200).max) { revert SafeCastOverflowedUintDowncast(200, value); } return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits */ function toUint192(uint256 value) internal pure returns (uint192) { if (value > type(uint192).max) { revert SafeCastOverflowedUintDowncast(192, value); } return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits */ function toUint184(uint256 value) internal pure returns (uint184) { if (value > type(uint184).max) { revert SafeCastOverflowedUintDowncast(184, value); } return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits */ function toUint176(uint256 value) internal pure returns (uint176) { if (value > type(uint176).max) { revert SafeCastOverflowedUintDowncast(176, value); } return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits */ function toUint168(uint256 value) internal pure returns (uint168) { if (value > type(uint168).max) { revert SafeCastOverflowedUintDowncast(168, value); } return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits */ function toUint160(uint256 value) internal pure returns (uint160) { if (value > type(uint160).max) { revert SafeCastOverflowedUintDowncast(160, value); } return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits */ function toUint152(uint256 value) internal pure returns (uint152) { if (value > type(uint152).max) { revert SafeCastOverflowedUintDowncast(152, value); } return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits */ function toUint144(uint256 value) internal pure returns (uint144) { if (value > type(uint144).max) { revert SafeCastOverflowedUintDowncast(144, value); } return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits */ function toUint136(uint256 value) internal pure returns (uint136) { if (value > type(uint136).max) { revert SafeCastOverflowedUintDowncast(136, value); } return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { if (value > type(uint128).max) { revert SafeCastOverflowedUintDowncast(128, value); } return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits */ function toUint120(uint256 value) internal pure returns (uint120) { if (value > type(uint120).max) { revert SafeCastOverflowedUintDowncast(120, value); } return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits */ function toUint112(uint256 value) internal pure returns (uint112) { if (value > type(uint112).max) { revert SafeCastOverflowedUintDowncast(112, value); } return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits */ function toUint104(uint256 value) internal pure returns (uint104) { if (value > type(uint104).max) { revert SafeCastOverflowedUintDowncast(104, value); } return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { if (value > type(uint96).max) { revert SafeCastOverflowedUintDowncast(96, value); } return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits */ function toUint88(uint256 value) internal pure returns (uint88) { if (value > type(uint88).max) { revert SafeCastOverflowedUintDowncast(88, value); } return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits */ function toUint80(uint256 value) internal pure returns (uint80) { if (value > type(uint80).max) { revert SafeCastOverflowedUintDowncast(80, value); } return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits */ function toUint72(uint256 value) internal pure returns (uint72) { if (value > type(uint72).max) { revert SafeCastOverflowedUintDowncast(72, value); } return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { if (value > type(uint64).max) { revert SafeCastOverflowedUintDowncast(64, value); } return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits */ function toUint56(uint256 value) internal pure returns (uint56) { if (value > type(uint56).max) { revert SafeCastOverflowedUintDowncast(56, value); } return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits */ function toUint48(uint256 value) internal pure returns (uint48) { if (value > type(uint48).max) { revert SafeCastOverflowedUintDowncast(48, value); } return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits */ function toUint40(uint256 value) internal pure returns (uint40) { if (value > type(uint40).max) { revert SafeCastOverflowedUintDowncast(40, value); } return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { if (value > type(uint32).max) { revert SafeCastOverflowedUintDowncast(32, value); } return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits */ function toUint24(uint256 value) internal pure returns (uint24) { if (value > type(uint24).max) { revert SafeCastOverflowedUintDowncast(24, value); } return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { if (value > type(uint16).max) { revert SafeCastOverflowedUintDowncast(16, value); } return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits */ function toUint8(uint256 value) internal pure returns (uint8) { if (value > type(uint8).max) { revert SafeCastOverflowedUintDowncast(8, value); } return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { if (value < 0) { revert SafeCastOverflowedIntToUint(value); } return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(248, value); } } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(240, value); } } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(232, value); } } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(224, value); } } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(216, value); } } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(208, value); } } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(200, value); } } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(192, value); } } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(184, value); } } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(176, value); } } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(168, value); } } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(160, value); } } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(152, value); } } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(144, value); } } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(136, value); } } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(128, value); } } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(120, value); } } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(112, value); } } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(104, value); } } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(96, value); } } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(88, value); } } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(80, value); } } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(72, value); } } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(64, value); } } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(56, value); } } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(48, value); } } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(40, value); } } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(32, value); } } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(24, value); } } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(16, value); } } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(8, value); } } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive if (value > uint256(type(int256).max)) { revert SafeCastOverflowedUintToInt(value); } return int256(value); } /** * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump. */ function toUint(bool b) internal pure returns (uint256 u) { assembly ("memory-safe") { u := iszero(iszero(b)) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol) pragma solidity ^0.8.20; import {Panic} from "../Panic.sol"; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an success flag (no overflow). */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow). */ function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow). */ function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a success flag (no division by zero). */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero). */ function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * SafeCast.toUint(condition)); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. Panic.panic(Panic.DIVISION_BY_ZERO); } // The following calculation ensures accurate ceiling division without overflow. // Since a is non-zero, (a - 1) / b will not overflow. // The largest possible result occurs when (a - 1) / b is type(uint256).max, // but the largest value we can obtain is type(uint256).max - 1, which happens // when a = type(uint256).max and b = 1. unchecked { return SafeCast.toUint(a > 0) * ((a - 1) / b + 1); } } /** * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * * 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²⁵⁶ and mod 2²⁵⁶ - 1, then use // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2²⁵⁶ + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0. if (denominator <= prod1) { Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW)); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2²⁵⁶ / 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²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv ≡ 1 mod 2⁴. 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⁸ inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶ inverse *= 2 - denominator * inverse; // inverse mod 2³² inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴ inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸ inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶ // 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²⁵⁶. Since the preconditions guarantee that the outcome is // less than 2²⁵⁶, 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; } } /** * @dev 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) { return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0); } /** * @dev Calculate the modular multiplicative inverse of a number in Z/nZ. * * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0. * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible. * * If the input value is not inversible, 0 is returned. * * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}. */ function invMod(uint256 a, uint256 n) internal pure returns (uint256) { unchecked { if (n == 0) return 0; // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version) // Used to compute integers x and y such that: ax + ny = gcd(a, n). // When the gcd is 1, then the inverse of a modulo n exists and it's x. // ax + ny = 1 // ax = 1 + (-y)n // ax ≡ 1 (mod n) # x is the inverse of a modulo n // If the remainder is 0 the gcd is n right away. uint256 remainder = a % n; uint256 gcd = n; // Therefore the initial coefficients are: // ax + ny = gcd(a, n) = n // 0a + 1n = n int256 x = 0; int256 y = 1; while (remainder != 0) { uint256 quotient = gcd / remainder; (gcd, remainder) = ( // The old remainder is the next gcd to try. remainder, // Compute the next remainder. // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd // where gcd is at most n (capped to type(uint256).max) gcd - remainder * quotient ); (x, y) = ( // Increment the coefficient of a. y, // Decrement the coefficient of n. // Can overflow, but the result is casted to uint256 so that the // next value of y is "wrapped around" to a value between 0 and n - 1. x - y * int256(quotient) ); } if (gcd != 1) return 0; // No inverse exists. return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative. } } /** * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`. * * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that * `a**(p-2)` is the modular multiplicative inverse of a in Fp. * * NOTE: this function does NOT check that `p` is a prime greater than `2`. */ function invModPrime(uint256 a, uint256 p) internal view returns (uint256) { unchecked { return Math.modExp(a, p - 2, p); } } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m) * * Requirements: * - modulus can't be zero * - underlying staticcall to precompile must succeed * * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make * sure the chain you're using it on supports the precompiled contract for modular exponentiation * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, * the underlying function will succeed given the lack of a revert, but the result may be incorrectly * interpreted as 0. */ function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) { (bool success, uint256 result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m). * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying * to operate modulo 0 or if the underlying precompile reverted. * * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack * of a revert, but the result may be incorrectly interpreted as 0. */ function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) { if (m == 0) return (false, 0); assembly ("memory-safe") { let ptr := mload(0x40) // | Offset | Content | Content (Hex) | // |-----------|------------|--------------------------------------------------------------------| // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x60:0x7f | value of b | 0x<.............................................................b> | // | 0x80:0x9f | value of e | 0x<.............................................................e> | // | 0xa0:0xbf | value of m | 0x<.............................................................m> | mstore(ptr, 0x20) mstore(add(ptr, 0x20), 0x20) mstore(add(ptr, 0x40), 0x20) mstore(add(ptr, 0x60), b) mstore(add(ptr, 0x80), e) mstore(add(ptr, 0xa0), m) // Given the result < m, it's guaranteed to fit in 32 bytes, // so we can use the memory scratch space located at offset 0. success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20) result := mload(0x00) } } /** * @dev Variant of {modExp} that supports inputs of arbitrary length. */ function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) { (bool success, bytes memory result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Variant of {tryModExp} that supports inputs of arbitrary length. */ function tryModExp( bytes memory b, bytes memory e, bytes memory m ) internal view returns (bool success, bytes memory result) { if (_zeroBytes(m)) return (false, new bytes(0)); uint256 mLen = m.length; // Encode call args in result and move the free memory pointer result = abi.encodePacked(b.length, e.length, mLen, b, e, m); assembly ("memory-safe") { let dataPtr := add(result, 0x20) // Write result on top of args to avoid allocating extra memory. success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen) // Overwrite the length. // result.length > returndatasize() is guaranteed because returndatasize() == m.length mstore(result, mLen) // Set the memory pointer after the returned data. mstore(0x40, add(dataPtr, mLen)) } } /** * @dev Returns whether the provided byte array is zero. */ function _zeroBytes(bytes memory byteArray) private pure returns (bool) { for (uint256 i = 0; i < byteArray.length; ++i) { if (byteArray[i] != 0) { return false; } } return true; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * This method is based on Newton's method for computing square roots; the algorithm is restricted to only * using integer operations. */ function sqrt(uint256 a) internal pure returns (uint256) { unchecked { // Take care of easy edge cases when a == 0 or a == 1 if (a <= 1) { return a; } // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between // the current value as `ε_n = | x_n - sqrt(a) |`. // // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is // bigger than any uint256. // // By noticing that // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)` // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar // to the msb function. uint256 aa = a; uint256 xn = 1; if (aa >= (1 << 128)) { aa >>= 128; xn <<= 64; } if (aa >= (1 << 64)) { aa >>= 64; xn <<= 32; } if (aa >= (1 << 32)) { aa >>= 32; xn <<= 16; } if (aa >= (1 << 16)) { aa >>= 16; xn <<= 8; } if (aa >= (1 << 8)) { aa >>= 8; xn <<= 4; } if (aa >= (1 << 4)) { aa >>= 4; xn <<= 2; } if (aa >= (1 << 2)) { xn <<= 1; } // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1). // // We can refine our estimation by noticing that the middle of that interval minimizes the error. // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2). // This is going to be our x_0 (and ε_0) xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2) // From here, Newton's method give us: // x_{n+1} = (x_n + a / x_n) / 2 // // One should note that: // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a // = ((x_n² + a) / (2 * x_n))² - a // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²) // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²) // = (x_n² - a)² / (2 * x_n)² // = ((x_n² - a) / (2 * x_n))² // ≥ 0 // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n // // This gives us the proof of quadratic convergence of the sequence: // ε_{n+1} = | x_{n+1} - sqrt(a) | // = | (x_n + a / x_n) / 2 - sqrt(a) | // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) | // = | (x_n - sqrt(a))² / (2 * x_n) | // = | ε_n² / (2 * x_n) | // = ε_n² / | (2 * x_n) | // // For the first iteration, we have a special case where x_0 is known: // ε_1 = ε_0² / | (2 * x_0) | // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2))) // ≤ 2**(2*e-4) / (3 * 2**(e-1)) // ≤ 2**(e-3) / 3 // ≤ 2**(e-3-log2(3)) // ≤ 2**(e-4.5) // // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n: // ε_{n+1} = ε_n² / | (2 * x_n) | // ≤ (2**(e-k))² / (2 * 2**(e-1)) // ≤ 2**(2*e-2*k) / 2**e // ≤ 2**(e-2*k) xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5 xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9 xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18 xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36 xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72 // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either // sqrt(a) or sqrt(a) + 1. return xn - SafeCast.toUint(xn > a / xn); } } /** * @dev 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 + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; uint256 exp; unchecked { exp = 128 * SafeCast.toUint(value > (1 << 128) - 1); value >>= exp; result += exp; exp = 64 * SafeCast.toUint(value > (1 << 64) - 1); value >>= exp; result += exp; exp = 32 * SafeCast.toUint(value > (1 << 32) - 1); value >>= exp; result += exp; exp = 16 * SafeCast.toUint(value > (1 << 16) - 1); value >>= exp; result += exp; exp = 8 * SafeCast.toUint(value > (1 << 8) - 1); value >>= exp; result += exp; exp = 4 * SafeCast.toUint(value > (1 << 4) - 1); value >>= exp; result += exp; exp = 2 * SafeCast.toUint(value > (1 << 2) - 1); value >>= exp; result += exp; result += SafeCast.toUint(value > 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 + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; uint256 isGt; unchecked { isGt = SafeCast.toUint(value > (1 << 128) - 1); value >>= isGt * 128; result += isGt * 16; isGt = SafeCast.toUint(value > (1 << 64) - 1); value >>= isGt * 64; result += isGt * 8; isGt = SafeCast.toUint(value > (1 << 32) - 1); value >>= isGt * 32; result += isGt * 4; isGt = SafeCast.toUint(value > (1 << 16) - 1); value >>= isGt * 16; result += isGt * 2; result += SafeCast.toUint(value > (1 << 8) - 1); } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * int256(SafeCast.toUint(condition))); } } /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson. // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift, // taking advantage of the most significant (or "sign" bit) in two's complement representation. // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result, // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative). int256 mask = n >> 255; // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it. return uint256((n + mask) ^ mask); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC-721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC-721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; import {IERC721} from "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol) pragma solidity ^0.8.20; /** * @dev Collection of common custom errors used in multiple contracts * * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. * It is recommended to avoid relying on the error API for critical functionality. * * _Available since v5.1._ */ library Errors { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error InsufficientBalance(uint256 balance, uint256 needed); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedCall(); /** * @dev The deployment failed. */ error FailedDeployment(); /** * @dev A necessary precompile is missing. */ error MissingPrecompile(address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/IAccessControlEnumerable.sol) pragma solidity ^0.8.20; import {IAccessControl} from "../IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC-165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol) pragma solidity ^0.8.20; /** * @dev Helper library for emitting standardized panic codes. * * ```solidity * contract Example { * using Panic for uint256; * * // Use any of the declared internal constants * function foo() { Panic.GENERIC.panic(); } * * // Alternatively * function foo() { Panic.panic(Panic.GENERIC); } * } * ``` * * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. * * _Available since v5.1._ */ // slither-disable-next-line unused-state library Panic { /// @dev generic / unspecified error uint256 internal constant GENERIC = 0x00; /// @dev used by the assert() builtin uint256 internal constant ASSERT = 0x01; /// @dev arithmetic underflow or overflow uint256 internal constant UNDER_OVERFLOW = 0x11; /// @dev division or modulo by zero uint256 internal constant DIVISION_BY_ZERO = 0x12; /// @dev enum conversion error uint256 internal constant ENUM_CONVERSION_ERROR = 0x21; /// @dev invalid encoding in storage uint256 internal constant STORAGE_ENCODING_ERROR = 0x22; /// @dev empty array pop uint256 internal constant EMPTY_ARRAY_POP = 0x31; /// @dev array out of bounds access uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32; /// @dev resource error (too large allocation or too large array) uint256 internal constant RESOURCE_ERROR = 0x41; /// @dev calling invalid internal function uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51; /// @dev Reverts with a panic code. Recommended to use with /// the internal constants with predefined codes. function panic(uint256 code) internal pure { assembly ("memory-safe") { mstore(0x00, 0x4e487b71) mstore(0x20, code) revert(0x1c, 0x24) } } }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_galaxisRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":"string","name":"contractURI","type":"string"}],"name":"ContractURIset","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"","type":"bool"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"stage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"randNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_shiftsBy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_end","type":"uint256"}],"name":"RandomProcessed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"mode","type":"bool"}],"name":"contractControllerEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"mode","type":"bool"}],"name":"contractManagerEvent","type":"event"},{"inputs":[],"name":"DEFAULT_SUBSCRIPTION","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OSFiltering","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REGISTRY_KEY_RANDOM_CONTRACT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_CONTRACT_ACCESS_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_CONTRACT_ACCESS_LOCK","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_CONTRACT_ACCESS_REVEAL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_CONTRACT_ACCESS_SALE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_CONTRACT_GIVEAWAY","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USER_RANDOM","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VRFShifting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"_reserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"chain","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentRevealCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"findRevealRangeForN","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"galaxisRegistry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"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":"getFirstGiveawayCardId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenInfoForSale","outputs":[{"components":[{"internalType":"uint256","name":"projectID","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"reservedSupply","type":"uint256"}],"internalType":"struct TokenInfoForSale","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawaySupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"},{"internalType":"address","name":"user","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"projectID","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"erc721name","type":"string"},{"internalType":"string","name":"erc721symbol","type":"string"},{"internalType":"string","name":"tokenPreRevealURI","type":"string"},{"internalType":"string","name":"tokenRevealURI","type":"string"},{"internalType":"bool","name":"transferLocked","type":"bool"},{"internalType":"uint256","name":"reservedSupply","type":"uint256"},{"internalType":"uint256","name":"giveawaySupply","type":"uint256"},{"internalType":"bool","name":"VRFShifting","type":"bool"}],"internalType":"struct TokenConstructorConfig","name":"config","type":"tuple"},{"internalType":"address","name":"_actualOwner","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"user","type":"address"}],"name":"isAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastRevealRequested","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"mintGiveawayCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfCards","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mintIncrementalCards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfCards","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mintReservedCards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"myCommunityRegistry","outputs":[{"internalType":"contract CommunityRegistry","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"_random","type":"uint256"},{"internalType":"uint256","name":"_requestId","type":"uint256"}],"name":"process","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"projectID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"requestToRevealId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tracker","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"retrieve721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tracker","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"retrieveERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retrieveETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealAtCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"reveals","outputs":[{"internalType":"uint256","name":"REQUEST_ID","type":"uint256"},{"internalType":"uint256","name":"RANDOM_NUM","type":"uint256"},{"internalType":"uint256","name":"SHIFT","type":"uint256"},{"internalType":"uint256","name":"RANGE_START","type":"uint256"},{"internalType":"uint256","name":"RANGE_END","type":"uint256"},{"internalType":"bool","name":"processed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenPreRevealURI","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenRevealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_locked","type":"bool"}],"name":"setTransferLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tellEverything","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"projectID","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"mintedSupply","type":"uint256"},{"internalType":"uint256","name":"mintedReserve","type":"uint256"},{"internalType":"uint256","name":"reservedSupply","type":"uint256"},{"internalType":"uint256","name":"giveawaySupply","type":"uint256"},{"internalType":"string","name":"tokenPreRevealURI","type":"string"},{"internalType":"string","name":"tokenRevealURI","type":"string"},{"internalType":"bool","name":"transferLocked","type":"bool"},{"internalType":"bool","name":"lastRevealRequested","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"components":[{"internalType":"uint256","name":"REQUEST_ID","type":"uint256"},{"internalType":"uint256","name":"RANDOM_NUM","type":"uint256"},{"internalType":"uint256","name":"SHIFT","type":"uint256"},{"internalType":"uint256","name":"RANGE_START","type":"uint256"},{"internalType":"uint256","name":"RANGE_END","type":"uint256"},{"internalType":"bool","name":"processed","type":"bool"}],"internalType":"struct revealStruct[]","name":"reveals","type":"tuple[]"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address[]","name":"managers","type":"address[]"},{"internalType":"address[]","name":"controllers","type":"address[]"},{"internalType":"uint256","name":"version","type":"uint256"},{"internalType":"bool","name":"VRFShifting","type":"bool"}],"internalType":"struct TokenInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleOSFilterOperatorState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPreRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenRevealURI","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"uri","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCommunityRandom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000b0be739f8e6a1594c3acc51b35bcfdce6bf62b1422d6fe79883f738d3d500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a
Deployed Bytecode
0x0002000000000002001000000000000200010000000103550000006003100270000009df0030019d000009df033001970000000100200190000000230000c13d0000008004000039000000400040043f000000040030008c000000460000413d000000000201043b000000e002200270000009f10020009c000000480000213d00000a260020009c0000006a0000a13d00000a270020009c000001020000a13d00000a280020009c0000013c0000213d00000a2f0020009c000004940000a13d00000a300020009c000008980000613d00000a310020009c00000a7f0000613d00000a320020009c000000460000c13d0000000001000416000000000001004b000000460000c13d00000018010000390000048f0000013d0000000002000416000000000002004b000000460000c13d0000001f02300039000009e002200197000000a002200039000000400020043f0000001f0430018f000009e105300198000000a002500039000000340000613d000000a006000039000000000701034f000000007807043c0000000006860436000000000026004b000000300000c13d000000000004004b000000410000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c000000460000413d000000a00100043d000009e20010009c0000005d0000a13d00000000010000190000277800010430000009f20020009c0000007b0000a13d000009f30020009c000001130000a13d000009f40020009c0000014b0000213d000009fb0020009c000004a30000a13d000009fc0020009c000008b00000613d000009fd0020009c00000a900000613d000009fe0020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000000101000039000000800010043f00000a5a01000041000027770001042e0000000006000411000000000006004b000000a70000c13d000000400100043d000009ef02000041000000000021043500000004021000390000000000020435000009df0010009c000009df010080410000004001100210000009f0011001c7000027780001043000000a410020009c000000d20000213d00000a4e0020009c0000015a0000a13d00000a4f0020009c000003c30000a13d00000a500020009c000007d60000613d00000a510020009c000009320000613d00000a520020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000001401000039000001570000013d00000a0d0020009c000000f30000213d00000a1a0020009c000001fd0000a13d00000a1b0020009c000003f20000a13d00000a1c0020009c000007df0000613d00000a1d0020009c0000093c0000613d00000a1e0020009c000000460000c13d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000d00000002001d000009e20020009c000000460000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000c00000002001d000000000012004b000000460000c13d0000002301000039000000000101041a000000ff0010019000000fd50000c13d00000000020004110000000d0020006c0000109f0000c13d000000400100043d000000440210003900000ab103000041000000000032043500000024021000390000001903000039000002fd0000013d000d00000001001d0000000b01000039000000000201041a000009e303200197000000000363019f000000000031041b0000000001000414000009e205200197000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d020000390000000303000039000009e5040000412776276c0000040f0000000d010000290000000100200190000000460000613d000009e201100197000000800010043f000000400100043d000d00000001001d000009e60010009c000000cc0000213d0000000d020000290000004001200039000000400010043f00000015010000390000000002120436000009e701000041000b00000002001d0000000000120435000000400100043d000c00000001001d000009e60010009c000004e40000a13d00000ad001000041000000000010043f0000004101000039000000040010043f000009f001000041000027780001043000000a420020009c000002080000a13d00000a430020009c000003fb0000a13d00000a440020009c000007e40000613d00000a450020009c000009430000613d00000a460020009c000000460000c13d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000002401100370000000000201043b0000001a01000039000000000101041a0000ff000010019000000b4c0000c13d00000a6201000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f00000a7001000041000000c40010043f00000a6f01000041000000e40010043f00000ac501000041000027780001043000000a0e0020009c000002540000a13d00000a0f0020009c000004440000a13d00000a100020009c000008840000613d00000a110020009c0000095e0000613d00000a120020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000000e01000039000008940000013d00000a350020009c0000029e0000a13d00000a360020009c0000046c0000a13d00000a370020009c000008890000613d00000a380020009c000009db0000613d00000a390020009c000000460000c13d0000000001000416000000000001004b000000460000c13d00000abd01000041000000800010043f00000a5a01000041000027770001042e00000a010020009c000002c80000a13d00000a020020009c0000047e0000a13d00000a030020009c000008900000613d00000a040020009c000009e40000613d00000a050020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000001903000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000007930000c13d000000800010043f000000000004004b00000b1a0000613d000000000030043f000000000001004b000000000200001900000b1f0000613d00000a79030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000001340000413d00000b1f0000013d00000a290020009c000004c00000a13d00000a2a0020009c000008b50000613d00000a2b0020009c00000aa70000613d00000a2c0020009c000000460000c13d0000000001000416000000000001004b000000460000c13d000000000103001927761fee0000040f277621780000040f0000039d0000013d000009f50020009c000004d90000a13d000009f60020009c000008bb0000613d000009f70020009c00000aae0000613d000009f80020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000002301000039000000000101041a000000ff001001900000092d0000013d00000a550020009c000003080000213d00000a580020009c000005300000613d00000a590020009c000000460000c13d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000502043b000009e90050009c000000460000213d0000002302500039000000000032004b000000460000813d0000000406500039000000000261034f000000000402043b000009e90040009c000000cc0000213d0000001f0740003900000af3077001970000003f0770003900000af30770019700000ab90070009c000000cc0000213d00000024055000390000008007700039000000400070043f000000800040043f0000000005540019000000000035004b000000460000213d0000002005600039000000000651034f00000af3074001980000001f0840018f000000a0057000390000018a0000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000059004b000001860000c13d000000000008004b000001970000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000a00440003900000000000404350000002404100370000000000504043b000009e90050009c000000460000213d0000002304500039000000000034004b000000460000813d0000000407500039000000000471034f000000000604043b000009e90060009c000000cc0000213d0000001f0460003900000af3044001970000003f0440003900000af308400197000000400400043d0000000008840019000000000048004b00000000090000390000000109004039000009e90080009c000000cc0000213d0000000100900190000000cc0000c13d0000002409500039000000400080043f00000000056404360000000008960019000000000038004b000000460000213d0000002003700039000000000331034f00000af3076001980000001f0860018f0000000001750019000001c40000613d000000000903034f000000000a050019000000009b09043c000000000aba043600000000001a004b000001c00000c13d000000000008004b000001d10000613d000000000373034f0000000307800210000000000801043300000000087801cf000000000878022f000000000303043b0000010007700089000000000373022f00000000037301cf000000000383019f0000000000310435000000000165001900000000000104350000000601000039000000000301041a000000ff0030019000000ab50000c13d000000800300043d000009e90030009c000000cc0000213d000000000700041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f0000000100700190000007930000c13d000000200060008c000001f50000413d0000001f07300039000000050770027000000ae60770009a000000200030008c00000ae707004041000000000000043f0000001f06600039000000050660027000000ae60660009a000000000067004b000001f50000813d000000000007041b0000000107700039000000000067004b000001f10000413d0000001f0030008c0000198b0000a13d00000af307300198000000000000043f000019a20000c13d000000a00800003900000ae706000041000019b00000013d00000a210020009c000003110000213d00000a240020009c000005420000613d00000a250020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000001a010000390000092b0000013d00000a490020009c000003910000213d00000a4c0020009c000005a90000613d00000a4d0020009c000000460000c13d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000009e20020009c000000460000213d0000000b03000039000000000303041a000009e2043001970000000003000411000000000034004b00000d9f0000c13d00000adb04000041000000800040043f000000840030043f0000002401100370000000000101043b000000a40010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a61011001c72776276c0000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000002380000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000002340000c13d000000000006004b000002450000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000fbd0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000460000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000460000c13d000009860000013d00000a150020009c000003a10000213d00000a180020009c000005c80000613d00000a190020009c000000460000c13d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b000d00000001001d000009e20010009c000000460000213d0000000b01000039000000000101041a000009e2011001970000000002000411000000000021004b00000ac90000c13d00000a960100004100000000001004430000000d0100002900000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f000000010020019000001dc00000613d000000000101043b000000000001004b000000460000613d000000400300043d00000024013000390000000002000411000000000021043500000a9701000041000000000013043500000004013000390000000002000410000000000021043500000024010000390000000101100367000000000101043b00000044023000390000000000120435000009df0030009c000c00000003001d000009df01000041000000000103401900000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000a64011001c70000000d020000292776276c0000040f0000000100200190000012190000613d0000000c01000029000009e90010009c000000cc0000213d0000000c01000029000000400010043f0000000001000019000027770001042e00000a3c0020009c000003b10000213d00000a3f0020009c000007800000613d00000a400020009c000000460000c13d000000640030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000d00000002001d000009e20020009c000000460000213d0000002402100370000000000202043b000c00000002001d000009e20020009c000000460000213d000b00800000003d0000004401100370000000000101043b000a00000001001d0000002301000039000000000101041a000000ff00100190000002be0000613d00000000020004110000000d0020006b000011050000c13d0000000b040000290000002001400039000000400010043f00000000000404350000000d010000290000000c020000290000000a03000029277621e90000040f0000000001000019000027770001042e00000a080020009c000003ba0000213d00000a0b0020009c000007850000613d00000a0c0020009c000000460000c13d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b000c00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a000009e2001001980000000c0300002900000c220000c13d0000000e01000039000000000101041a0000000f02000039000000000202041a000000000012001a00000fb70000413d0000000002120019000000000032004b000002f70000813d0000001002000039000000000202041a000000000012001a00000fb70000413d0000000001120019000000000031004b00000c220000813d000000400100043d000000440210003900000a9203000041000000000032043500000024021000390000001b03000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a64011001c7000027780001043000000a560020009c0000072c0000613d00000a570020009c000000460000c13d0000000001000416000000000001004b000000460000c13d27761f060000040f000009360000013d00000a220020009c000007310000613d00000a230020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000000001000411000009e2011001970000000b02000039000000000202041a000009e202200197000000000021004b00000ace0000c13d00000080010000390000001402000039000000000202041a0000ff000020019000000c4c0000c13d0000001801000039000000000101041a0000ffff0110018f000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d0000000d02000039000000000202041a000000000101043b0000000401100039000000000101041a000000000021004b000010770000813d0000001403000039000000000103041a00000af40110019700000100011001bf000000000013041b0000001803000039000000000103041a0000ffff0210018f0000ffff0020008c00000fb70000613d00000a69011001970000000102200039000000000112019f000000000013041b000000000020043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000d00000001001d0000001801000039000000000101041a0000ffff0110018f000000010110008a0000ffff0010008c00000fb70000213d000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000401100039000000000101041a0000000d020000290000000302200039000000000012041b0000000e03000039000000000303041a0000001a04000039000000000404041a0000ff0000400190000017ae0000c13d000000000003004b000017ba0000613d0000000d030000290000000101300039000000000001041b0000000201300039000000000001041b000000000002041b00000004013000390000000d02000039000000000202041a000000000021041b0000001801000039000000000101041a000000400300043d000000800430003900000000002404350000ffff0110018f000000000113043600000060023000390000000000020435000000400230003900000000000204350000000000010435000009df0030009c000009df03008041000000400130021000000000020004140000197f0000013d00000a4a0020009c000007360000613d00000a4b0020009c000000460000c13d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b277620c00000040f000000000001004b0000000001000039000000010100c03900000a620000013d00000a160020009c0000073b0000613d00000a170020009c000000460000c13d0000000001000416000000000001004b000000460000c13d277623e40000040f0000002301000039000000000201041a00000af503200197000000ff0020019000000001033061bf000000000031041b0000000001000019000027770001042e00000a3d0020009c000007990000613d00000a3e0020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000001001000039000008940000013d00000a090020009c0000079e0000613d00000a0a0020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000000d01000039000008940000013d00000a530020009c000008c20000613d00000a540020009c000000460000c13d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000d00000002001d000009e20020009c000000460000213d0000002401100370000000000201043b0000002301000039000000000101041a000000ff00100190000c00000002001d00000de60000c13d000000000020043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a000009e201100198000010d20000c13d000000400100043d000000640210003900000ae2030000410000000000320435000000440210003900000ae30300004100000000003204350000002402100039000000290300003900000abe0000013d00000a1f0020009c000008cb0000613d00000a200020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000000c01000039000008940000013d00000a470020009c000008f00000613d00000a480020009c000000460000c13d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000009e90020009c000000460000213d0000002304200039000000000034004b000000460000813d000c00040020003d0000000c01100360000000000101043b000d00000001001d000009e90010009c000000460000213d0000002402200039000b00000002001d0000000d01200029000000000031004b000000460000213d0000000001000411000009e2011001970000000b02000039000000000202041a000009e202200197000000000021004b000011590000c13d0000001201000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000007930000c13d000000200020008c0000043a0000413d000000000010043f0000000d040000290000001f03400039000000050330027000000aa30330009a000000200040008c00000a85030040410000001f02200039000000050220027000000aa30220009a000000000023004b0000043a0000813d000000000003041b0000000103300039000000000023004b000004360000413d0000000d020000290000001f0020008c000011f00000a13d000000000010043f000000200200008a0000000d032001800000156c0000c13d00000a85020000410000000004000019000015780000013d00000a130020009c000009270000613d00000a140020009c000000460000c13d000000840030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000d00000002001d000009e20020009c000000460000213d0000002402100370000000000202043b000c00000002001d000009e20020009c000000460000213d0000006402100370000000000402043b000009e90040009c000000460000213d0000002302400039000000000032004b000000460000813d0000000402400039000000000121034f000000000201043b000000240140003927761ea70000040f00000044020000390000000102200367000000000302043b00000000040100190000000d010000290000000c02000029277621e90000040f0000000001000019000027770001042e00000a3a0020009c000009880000613d00000a3b0020009c000000460000c13d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b0000000902000039000000000302041a000000000031004b00000bce0000813d000000000020043f00000a720110009a000008940000013d00000a060020009c0000099c0000613d00000a070020009c000000460000c13d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b000000000010043f0000001601000039000000200010043f00000040020000390000000001000019277627390000040f000000000101041a0000ffff0110018f000000800010043f00000a5a01000041000027770001042e00000a330020009c00000a080000613d00000a340020009c000000460000c13d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b000009e20010009c000000460000213d277621240000040f00000a620000013d000009ff0020009c00000a370000613d00000a000020009c000000460000c13d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000009e20020009c000000460000213d0000002401100370000000000101043b000d00000001001d000009e20010009c000000460000213d000000000020043f0000000501000039000000200010043f00000040020000390000000001000019277627390000040f0000000d02000029277620da0000040f000000000101041a000000ff001001900000039e0000013d00000a2d0020009c00000a590000613d00000a2e0020009c000000460000c13d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000002402100370000000000202043b000009e20020009c000000460000213d0000000b03000039000000000303041a000000000323013f000009e20030019800000eae0000c13d00000080010000390000000102000039000000010220018f0000000000210435000000400110021000000a71011001c7000027770001042e000009f90020009c00000a690000613d000009fa0020009c000000460000c13d0000000001000416000000000001004b000000460000c13d0000002301000039000000000101041a000000080110027000000a8c0000013d0000000c020000290000004001200039000000400010043f00000002010000390000000002120436000009e80100004100000000001204350000000601000039000000000101041a000000ff0010019000000ab50000c13d000900000002001d0000000d010000290000000001010433000a00000001001d000009e90010009c000000cc0000213d000000000100041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b000007930000c13d000000200030008c0000051c0000413d000800000003001d000000000000043f0000000001000414000009df0010009c000009df01008041000000c001100210000009ea011001c70000801002000039277627710000040f0000000100200190000000460000613d0000000a030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000051c0000813d000000000002041b0000000102200039000000000012004b000005180000413d0000000a040000290000001f0040008c0000106b0000a13d000000000000043f0000000001000414000009df0010009c000009df01008041000000c001100210000009ea011001c70000801002000039277627710000040f0000000100200190000000460000613d000000200200008a0000000a02200180000000000101043b000013a90000c13d00000020030000390000000d06000029000013b60000013d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000201043b00000aec00200198000000460000c13d000000010100003900000aed0220019700000aee0020009c00000da40000213d00000af10020009c00000ab20000613d00000af20020009c00000ab20000613d00000da80000013d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000402043b000009e90040009c000000460000213d0000002302400039000000000032004b000000460000813d0000000405400039000000000251034f000000000202043b000009e90020009c000000cc0000213d0000001f0620003900000af3066001970000003f0660003900000af30660019700000ab90060009c000000cc0000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b000000460000213d0000002003500039000000000331034f00000af3042001980000001f0520018f000000a0014000390000056c0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000005680000c13d000000000005004b000005790000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000001000411000009e2011001970000000b02000039000000000202041a000009e202200197000000000021004b000012350000c13d000000800200043d000009e90020009c000000cc0000213d0000001901000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000007930000c13d000000200030008c000005a10000413d000000000010043f0000001f04200039000000050440027000000aba0440009a000000200020008c00000a79040040410000001f03300039000000050330027000000aba0330009a000000000034004b000005a10000813d000000000004041b0000000104400039000000000034004b0000059d0000413d0000001f0020008c0000171a0000a13d000000000010043f00000af304200198000017c40000c13d000000a00500003900000a7903000041000017d20000013d0000000001000416000000000001004b000000460000c13d0000001703000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000007930000c13d000000800010043f000000000004004b00000b1a0000613d000000000030043f000000000001004b000000000200001900000b1f0000613d00000adc030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000005c00000413d00000b1f0000013d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000009e90020009c000000460000213d000000000423004900000a980040009c000000460000213d000001440040008c000000460000413d000001c004000039000000400040043f0000000405200039000000000551034f000000000505043b000000800050043f0000002405200039000000000551034f000000000505043b000000a00050043f0000004405200039000000000651034f000000000606043b000009e90060009c000000460000213d00000000082600190000002306800039000000000036004b000000460000813d0000000407800039000000000671034f000000000606043b000009e90060009c000000cc0000213d0000001f0960003900000af3099001970000003f0990003900000af30990019700000a990090009c000000cc0000213d0000002408800039000001c009900039000000400090043f000001c00060043f0000000008860019000000000038004b000000460000213d0000002007700039000000000871034f00000af3096001980000001f0a60018f000001e007900039000006070000613d000001e00b000039000000000c08034f00000000cd0c043c000000000bdb043600000000007b004b000006030000c13d00000000000a004b000006140000613d000000000898034f0000000309a00210000000000a070433000000000a9a01cf000000000a9a022f000000000808043b0000010009900089000000000898022f00000000089801cf0000000008a8019f0000000000870435000001e0066000390000000000060435000000c00040043f0000002004500039000000000541034f000000000505043b000009e90050009c000000460000213d00000000072500190000002305700039000000000035004b000000460000813d0000000408700039000000000581034f000000000505043b000009e90050009c000000cc0000213d0000001f0650003900000af3066001970000003f0660003900000af309600197000000400600043d0000000009960019000000000069004b000000000a000039000000010a004039000009e90090009c000000cc0000213d0000000100a00190000000cc0000c13d000000240a700039000000400090043f00000000075604360000000009a50019000000000039004b000000460000213d0000002008800039000000000981034f00000af30a5001980000001f0b50018f0000000008a70019000006440000613d000000000c09034f000000000d07001900000000ce0c043c000000000ded043600000000008d004b000006400000c13d00000000000b004b000006510000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f000000000098043500000000055700190000000000050435000000e00060043f0000002004400039000000000541034f000000000505043b000009e90050009c000000460000213d00000000072500190000002305700039000000000035004b000000460000813d0000000408700039000000000581034f000000000505043b000009e90050009c000000cc0000213d0000001f0650003900000af3066001970000003f0660003900000af309600197000000400600043d0000000009960019000000000069004b000000000a000039000000010a004039000009e90090009c000000cc0000213d0000000100a00190000000cc0000c13d000000240a700039000000400090043f00000000075604360000000009a50019000000000039004b000000460000213d0000002008800039000000000981034f00000af30a5001980000001f0b50018f0000000008a70019000006810000613d000000000c09034f000000000d07001900000000ce0c043c000000000ded043600000000008d004b0000067d0000c13d00000000000b004b0000068e0000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f000000000098043500000000055700190000000000050435000001000060043f0000002004400039000000000541034f000000000505043b000009e90050009c000000460000213d00000000062500190000002302600039000000000032004b000000460000813d0000000407600039000000000271034f000000000202043b000009e90020009c000000cc0000213d0000001f0520003900000af3055001970000003f0550003900000af308500197000000400500043d0000000008850019000000000058004b00000000090000390000000109004039000009e90080009c000000cc0000213d0000000100900190000000cc0000c13d0000002409600039000000400080043f00000000062504360000000008920019000000000038004b000000460000213d0000002003700039000000000731034f00000af3082001980000001f0920018f0000000003860019000006be0000613d000000000a07034f000000000b06001900000000ac0a043c000000000bcb043600000000003b004b000006ba0000c13d000000000009004b000006cb0000613d000000000787034f0000000308900210000000000903043300000000098901cf000000000989022f000000000707043b0000010008800089000000000787022f00000000078701cf000000000797019f000000000073043500000000022600190000000000020435000001200050043f0000002002400039000000000321034f000000000303043b000000000003004b0000000004000039000000010400c039000000000043004b000000460000c13d000001400030043f0000002003200039000000000331034f000000000303043b000001600030043f0000004003200039000000000331034f000000000303043b000001800030043f0000006002200039000000000221034f000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000000460000c13d000001a00020043f0000002401100370000000000101043b000d00000001001d000009e20010009c000000460000213d0000002401000039000000000101041a00000a96020000410000000000200443000009e201100197000c00000001001d00000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f000000010020019000001dc00000613d000000000101043b000000000001004b00001b820000c13d0000001a01000039000000000101041a000000ff0010019000001bb60000c13d000000c00300043d0000000042030434000009e90020009c000000cc0000213d0000001c01000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000007930000c13d000000200050008c000007240000413d000000000010043f0000001f06200039000000050660027000000a9d0660009a000000200020008c00000a9e060040410000001f05500039000000050550027000000a9d0550009a000000000056004b000007240000813d000000000006041b0000000106600039000000000056004b000007200000413d000000200020008c00001bca0000413d000000000010043f00000af30620019800001bd50000c13d000000200500003900000a9e0400004100001be10000013d0000000001000416000000000001004b000000460000c13d0000000f01000039000008940000013d0000000001000416000000000001004b000000460000c13d27761f7a0000040f000009360000013d0000000001000416000000000001004b000000460000c13d0000000901000039000008940000013d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000009e90020009c000000460000213d0000002304200039000000000034004b000000460000813d000c00040020003d0000000c01100360000000000101043b000d00000001001d000009e90010009c000000460000213d0000002402200039000b00000002001d0000000d01200029000000000031004b000000460000213d0000000001000411000009e2011001970000000b02000039000000000202041a000009e202200197000000000021004b0000111e0000c13d0000001301000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000007930000c13d000000200020008c000007760000413d000000000010043f0000000d040000290000001f03400039000000050330027000000a950330009a000000200040008c00000a90030040410000001f02200039000000050220027000000a950220009a000000000023004b000007760000813d000000000003041b0000000103300039000000000023004b000007720000413d0000000d020000290000001f0020008c000011f00000a13d000000000010043f000000200200008a0000000d032001800000155f0000c13d00000a90020000410000000004000019000015780000013d0000000001000416000000000001004b000000460000c13d0000002401000039000008b90000013d0000000001000416000000000001004b000000460000c13d0000001b03000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f000000010050019000000b090000613d00000ad001000041000000000010043f0000002201000039000000040010043f000009f00100004100002778000104300000000001000416000000000001004b000000460000c13d277620ea0000040f00000a620000013d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000d00000002001d0000002401100370000000000101043b000c00000001001d000009e20010009c000000460000213d0000000001000411000009e2011001970000000b02000039000000000202041a000009e202200197000000000021004b00000dab0000c13d00000080010000390000001402000039000000000202041a0000ff000020019000000a500000613d0000001102000039000000000202041a0000001003000039000000000303041a000000000423004b00000fb70000413d0000000f05000039000000000505041a000000000045004b000011e70000c13d0000000e04000039000000000404041a000000000034001a00000fb70000413d0000000003340019000000000223004b00000fb70000413d00000af60020009c00000fb70000613d0000000d0020006b000016650000a13d0000000103300039000000000023004b00000fb70000a13d0000000d0030006b000016650000813d0000000c010000290000000d020000292776240c0000040f0000000001000019000027770001042e000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b277620560000040f00000a620000013d0000000001000416000000000001004b000000460000c13d0000001e01000039000008b90000013d0000000001000416000000000001004b000000460000c13d0000006001000039000000800010043f000000a00010043f000000c00000043f000000e00000043f000001000000043f000001200000043f000001400000043f000001600000043f000001800010043f000001a00010043f000001c00000043f000001e00000043f000002000000043f000002200010043f000002400000043f000002600010043f000002800010043f000002a00000043f000002c00000043f0000001801000039000000000101041a0000ffff0310019000000005013002100000003f0210003900000ad502200197000002e002200039000000400020043f000c00000003001d000002e00030043f00000b300000c13d0000002103000039000000000403041a000009e90040009c000000cc0000213d00000005064002100000003f0160003900000ad702100197000000400100043d0000000002210019000000000012004b00000000050000390000000105004039000009e90020009c000000cc0000213d0000000100500190000000cc0000c13d000000400020043f00000000054104360000001f0760018f00000000020000310000000102200367000000000006004b000008240000613d0000000006650019000000000802034f0000000009050019000000008a08043c0000000009a90436000000000069004b000008200000c13d000000000007004b000000000004004b000008380000613d0000000006000019000000000030043f0000000007010433000000000067004b0000107e0000a13d0000000507600210000000000757001900000ad80860009a000000000808041a000009e20880019700000000008704350000ffff0060008c00000fb70000613d00000001066000390000ffff0660018f000000000046004b000008280000413d0000001f04000039000000000504041a000009e90050009c000000cc0000213d00000005075002100000003f0370003900000ad706300197000000400300043d0000000006630019000000000036004b00000000080000390000000108004039000009e90060009c000000cc0000213d0000000100800190000000cc0000c13d000000400060043f00000000065304360000001f0870018f000000000007004b000008530000613d00000000077600190000000009060019000000002a02043c0000000009a90436000000000079004b0000084f0000c13d000000000008004b000000000005004b000008670000613d0000000002000019000000000040043f0000000007030433000000000027004b0000107e0000a13d0000000507200210000000000767001900000ad90820009a000000000808041a000009e20880019700000000008704350000ffff0020008c00000fb70000613d00000001022000390000ffff0220018f000000000052004b000008570000413d0000001c06000039000000000506041a000000010750019000000001025002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000445013f0000000100400190000007930000c13d000000400f00043d00000000042f0436000000000007004b000017650000613d000000000060043f000000000002004b00000000050000190000176a0000613d00000a9e0600004100000000050000190000000007540019000000000806041a000000000087043500000001066000390000002005500039000000000025004b0000087c0000413d0000176a0000013d0000000001000416000000000001004b000000460000c13d27761fb40000040f000009360000013d0000000001000416000000000001004b000000460000c13d00000ac201000041000000800010043f00000a5a01000041000027770001042e0000000001000416000000000001004b000000460000c13d0000001101000039000000000101041a000000800010043f00000a5a01000041000027770001042e0000000001000416000000000001004b000000460000c13d0000000b01000039000000000201041a000009e2032001970000000005000411000000000053004b00000b470000c13d000009e302200197000000000021041b0000000001000414000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d020000390000000303000039000009e50400004100000000060000192776276c0000040f0000000100200190000000460000613d000009860000013d0000000001000416000000000001004b000000460000c13d2776200c0000040f000009360000013d0000000001000416000000000001004b000000460000c13d0000000b01000039000000000101041a00000a8c0000013d0000000001000416000000000001004b000000460000c13d00000a5c01000041000000800010043f00000a5a01000041000027770001042e000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b2776201d0000040f00000a620000013d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b0000ffff0010008c000000460000213d000000000010043f0000001501000039000000200010043f00000040020000390000000001000019277627390000040f0000000502100039000000000202041a0000000403100039000000000303041a0000000304100039000000000404041a0000000205100039000000000505041a0000000106100039000000000606041a000000000101041a000000800010043f000000a00060043f000000c00050043f000000e00040043f000001000030043f000000ff002001900000000001000039000000010100c039000001200010043f00000ab201000041000027770001042e000000640030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000d00000002001d000009e20020009c000000460000213d0000002402100370000000000202043b000c00000002001d000009e20020009c000000460000213d00000000030004110000004401100370000000000201043b0000002301000039000000000101041a000000ff00100190000b00000002001d0000091e0000613d0000000d0030006b0000091e0000613d0000002401000039000000000101041a00000a96020000410000000000200443000009e201100197000a00000001001d00000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f000000010020019000001dc00000613d000000000101043b000000000001004b0000000b020000290000000003000411000012b80000c13d0000000001030019277624e90000040f277623f50000040f0000000d010000290000000c020000290000000b030000292776257e0000040f0000000001000019000027770001042e0000000001000416000000000001004b000000460000c13d0000001401000039000000000101041a0000ff00001001900000000001000039000000010100c039000000800010043f00000a5a01000041000027770001042e0000000001000416000000000001004b000000460000c13d27761f400000040f0000002002000039000000400300043d000d00000003001d000000000223043627761edf0000040f00000b260000013d0000000001000416000000000001004b000000460000c13d00000a6001000041000000800010043f00000a5a01000041000027770001042e000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000d00000002001d000009e20020009c000000460000213d0000002401100370000000000101043b0000000d02000029000000000002004b00000e530000c13d00000a6201000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f00000ad301000041000000c40010043f00000ad401000041000000e40010043f00000ac5010000410000277800010430000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b000000460000c13d0000000b01000039000000000101041a000009e2021001970000000001000411000000000021004b00000e730000c13d00000080010000390000001402000039000000000302041a00000af5033001970000000d04000029000000000343019f000000000032041b000000000041043500000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000121019f000009ea011001c70000800d02000039000000010300003900000a94040000412776276c0000040f0000000100200190000000460000613d0000000001000019000027770001042e0000000001000416000000000001004b000000460000c13d000000c001000039000000400010043f0000000c01000039000000800010043f00000ac601000041000000a00010043f0000002001000039000000c00010043f0000008001000039000000e00200003927761edf0000040f000000c00110008a000009df0010009c000009df01008041000000600110021000000ac7011001c7000027770001042e0000000001000416000000000001004b000000460000c13d0000000b01000039000000000101041a000009e2011001970000000002000411000000000021004b00000ac90000c13d00000a7b010000410000000000100443000000000100041000000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800a02000039277627710000040f000000010020019000001dc00000613d000000000101043b000d00000001001d00000a7b010000410000000000100443000000000100041000000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800a02000039277627710000040f000000010020019000001dc00000613d0000000002000410000000000101043b0000000d03000029000000000031004b000011ab0000813d000e00000002001d0000800a01000039000000240300003900000000040004150000000e0440008a000000050440021000000a7b020000412776274e0000040f00000a7f02000041000000400300043d00000000002304350000000402300039000000000012043500000024013000390000000d020000290000000000210435000009df0030009c000009df03008041000000400130021000000a80011001c70000277800010430000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b277620fd0000040f00000a620000013d0000000001000416000000000001004b000000460000c13d000000e001000039000000400010043f000000800000043f000000a00000043f000000c00000043f0000001002000039000000000202041a000d00000002001d0000000d02000039000000000202041a000c00000002001d0000000c02000039000000000202041a000b00000002001d27761e8a0000040f0000000b02000029000000e00020043f0000000c01000029000001000010043f0000000d01000029000001200010043f000000400100043d0000000002210436000001000300043d00000000003204350000004002100039000001200300043d0000000000320435000009df0010009c000009df01008041000000400110021000000a7a011001c7000027770001042e000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000900000002001d0000002401100370000000000101043b000c00000001001d000009e20010009c000000460000213d0000000001000411000009e2011001970000000b02000039000000000202041a000009e202200197000000000021004b00000ef40000c13d00000080010000390000001402000039000000000202041a0000ff000020019000000f9c0000c13d0000000e02000039000000000202041a000000090020002a00000fb70000413d0000001003000039000000000303041a0000000d04000039000000000404041a000000000434004b00000fb70000413d0000000903200029000000000043004b000011fe0000a13d000000640210003900000ac1030000410000000000320435000000440210003900000a760300004100000000003204350000002402100039000000360300003900000fa40000013d000000440030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000402100370000000000202043b000900000002001d0000002401100370000000000101043b000c00000001001d000009e20010009c000000460000213d0000000001000411000009e2011001970000000b02000039000000000202041a000009e202200197000000000021004b00000f2f0000c13d00000080010000390000001402000039000000000202041a0000ff000020019000000fad0000c13d000000640210003900000a77030000410000000000320435000000440210003900000a7803000041000000000032043500000024021000390000002a0300003900000fa40000013d000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b2776214b0000040f0000ffff0110018f000000400200043d0000000000120435000009df0020009c000009df02008041000000400120021000000a71011001c7000027770001042e000000240030008c000000460000413d0000000002000416000000000002004b000000460000c13d0000000401100370000000000101043b000009e20010009c000000460000213d0000000b02000039000000000202041a000009e2032001970000000002000411000000000023004b00000ac90000c13d000000000001004b000010500000c13d000009ef01000041000000800010043f000000840000043f00000a5e0100004100002778000104300000000001000416000000000001004b000000460000c13d0000000001000412001000000001001d000f00000000003d000080050100003900000044030000390000000004000415000000100440008a000000050440021000000aa7020000412776274e0000040f000009e201100197000000800010043f00000a5a01000041000027770001042e0000000001000416000000000001004b000000460000c13d0000000001000411000009e2011001970000000b02000039000000000202041a000009e202200197000000000021004b00000bda0000c13d0000001a01000039000000000101041a0000ff000010019000000c520000c13d000000640140003900000a6f020000410000000000210435000000440140003900000a700200004100000000002104350000002401400039000000230200003900000f930000013d0000000001000416000000000001004b000000460000c13d00000a9301000041000000800010043f00000a5a01000041000027770001042e0000000001000416000000000001004b000000460000c13d00000a5b01000041000000800010043f00000a5a01000041000027770001042e000000400100043d000000640210003900000ae4030000410000000000320435000000440210003900000ae503000041000000000032043500000024021000390000002403000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a67011001c7000027780001043000000a5d01000041000000800010043f000000840020043f00000a5e0100004100002778000104300000001e02000039000000000202041a00000a5f03000041000000800030043f00000a6003000041000000840030043f000000a40010043f0000000001000414000009e202200197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000aeb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ae70000c13d000000000006004b00000af80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000d930000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000460000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000460000c13d000000000003004b000003200000c13d000011930000013d000000800010043f000000000004004b00000b1a0000613d000000000030043f000000000001004b000000000200001900000b1f0000613d00000a91030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b00000b120000413d00000b1f0000013d00000af502200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000000800100003927761e950000040f000000400100043d000d00000001001d000000800200003927761ef10000040f0000000d020000290000000001210049000009df0010009c000009df010080410000006001100210000009df0020009c000009df020080410000004002200210000000000121019f000027770001042e0000000003000019000000c004200039000000400040043f000000a0042000390000000000040435000000800420003900000000000404350000006004200039000000000004043500000040042000390000000000040435000000200420003900000000000404350000000000020435000003000430003900000000002404350000002003300039000000000013004b00000d530000813d000000400200043d00000a840020009c00000b310000a13d000000cc0000013d00000a5d01000041000000800010043f000000840050043f00000a5e010000410000277800010430000d00000002001d0000001e01000039000000000101041a000000c002000039000000400020043f0000000b02000039000000800020043f00000a6b03000041000000a00030043f00000a6c04000041000000c00040043f0000002004000039000000c40040043f000000e40020043f000001040030043f000009e2021001970000010f0000043f0000000001000414000009df0010009c000009df01008041000000c00110021000000ac9011001c7277627710000040f000000c00a0000390000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000c0057001bf00000b720000613d000000000801034f000000008908043c000000000a9a043600000000005a004b00000b6e0000c13d000000000006004b00000b7f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000e470000613d0000001f01400039000000600210018f000000c001200039000000400010043f000000200030008c000000460000413d000000c00300043d000009e20030009c000000460000213d0000000004000411000000000034004b000012920000c13d0000000d01000029000000000010043f0000001601000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a0000ffff0110018f000c00000001001d000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000501043b0000000501500039000000000201041a000000ff00200190000017250000c13d000000000305041a0000000d0030006c000018040000c13d00000004030000390000000103300367000000000303043b00000001043002720000000106500039000000000046041b0000000403500039000000000303041a00000bc30000c13d00000acf043000d1000000000003004b00000bc10000613d00000000073400d900000acf0070009c00000fb70000c13d000000030440011a000000000046041b0000000307500039000000000707041a000000000973004b00000fb70000413d000019640000c13d00000ad001000041000000000010043f0000001201000039000000040010043f000009f001000041000027780001043000000a6201000041000000800010043f0000002001000039000000840010043f0000002c01000039000000a40010043f00000ac301000041000000c40010043f00000ac401000041000000e40010043f00000ac50100004100002778000104300000001e02000039000000000202041a00000a5f03000041000000800030043f00000a6003000041000000840030043f000000a40010043f0000000001000414000009e202200197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bf70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bf30000c13d000000000006004b00000c040000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000ee80000613d0000001f01400039000000600110018f00000080041001bf000000400040043f000000200030008c000000460000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b000000460000c13d000000000002004b00000a9a0000c13d00000a6202000041000000000024043500000084021001bf00000020030000390000000000320435000000c40210003900000a63030000410000000000320435000000a40110003900000013020000390000000000210435000000400140021000000a64011001c700002778000104300000001a01000039000000000101041a0000ff000010019000000f6a0000c13d0000001801000039000000000101041a000bffff00100194000010840000c13d000000400300043d000009e60030009c000000cc0000213d0000004001300039000000400010043f0000000c08000029000000644080011a000000090040008c00000001010000390000000201002039000000000213043600000000010000310000000101100367000000000501043b0000000000520435000000000503001900000001055020390000002105500039000000090040008c0000000a6440011a0000000306600210000000010550008a000000000705043300000a860770019700000a870660021f00000a8806600197000000000676019f000000000065043500000c3c0000213d00000a890080009c000013450000413d000000400700003900000a890480012a0000134e0000013d000000640210003900000a65030000410000000000320435000000440210003900000a660300004100000fa10000013d0000001401000039000000000101041a0000ff000010019000000f8b0000c13d0000001801000039000000000101041a0000ffff0110018f000d00000001001d000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d0000000e02000039000000000202041a000000000101043b0000000401100039000000000101041a000000000021004b000010770000813d0000000d010000290000ffff0010008c00000fb70000613d0000000d0100002900000001011000390000001803000039000000000203041a00000a6902200197000000000212019f000000000023041b000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000d00000001001d0000001801000039000000000101041a0000ffff0110018f000000010110008a0000ffff0010008c00000fb70000213d000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000401100039000000000201041a0000000d030000290000000301300039000000000021041b00000004033000390000000e01000039000000000101041a000000000013041b000000000012004b00000fb70000213d000000000021004b000017ba0000613d0000001002000039000000000202041a000000000012001a00000fb70000413d0000000002120019000000400100043d0000000d03000039000000000303041a000000000032004b000019880000813d000009e60010009c000000cc0000213d0000001e02000039000000000202041a000009e2022001970000004003100039000000400030043f000000200310003900000a6b0400004100000000004304350000000b04000039000000000041043500000a6c04000041000000400600043d0000000000460435000000040460003900000020050000390000000000540435000000000101043300000024046000390000000000140435000c00000006001d0000004404600039000000000001004b00000cd00000613d000000000500001900000000064500190000000007350019000000000707043300000000007604350000002005500039000000000015004b00000cc90000413d0000001f0310003900000af303300197000000000141001900000000000104350000004401300039000009df0010009c000009df0100804100000060011002100000000c03000029000009df0030009c000009df030080410000004003300210000000000131019f0000000003000414000009df0030009c000009df03008041000000c003300210000000000113019f277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900000cf20000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00000cee0000c13d000000000006004b00000cff0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001a140000613d0000001f01400039000000600110018f0000000c02100029000000000012004b00000000010000390000000101004039000b00000002001d000009e90020009c000000cc0000213d0000000100100190000000cc0000c13d0000000b01000029000000400010043f000000200030008c000000460000413d0000000c010000290000000002010433000009e20020009c000000460000213d00000a6d010000410000000b030000290000000000130435000009df0030009c000009df01000041000000000103401900000040011002100000000003000414000009df0030009c000009df03008041000000c003300210000000000113019f00000a6e011001c72776276c0000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900000d310000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00000d2d0000c13d000000000006004b00000d3e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001b760000613d0000001f01400039000000600110018f0000000b01100029000009e90010009c000000cc0000213d000000400010043f000000200030008c000000460000413d0000000b0100002900000000010104330000000d02000029000000000012041b0000001802000039000000000202041a000d00000002001d27761ffc0000040f0000000d020000290000ffff0220018f0000195c0000013d0000000102000039000d00000002001d000000000020043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000301043b0000000d06000029000000010160008a00000ad60010009c00000fb70000813d000000400200043d00000a840020009c000000cc0000213d000000c004200039000000400040043f000000000403041a00000000044204360000000105300039000000000505041a00000000005404350000000204300039000000000404041a000000400520003900000000004504350000000304300039000000000404041a000000600520003900000000004504350000000404300039000000000404041a00000080052000390000000000450435000000a0042000390000000503300039000000000303041a000000ff003001900000000003000039000000010300c0390000000000340435000002e00300043d000000000013004b0000107e0000a13d000000050310021000000300033000390000000000230435000002e00200043d000000000012004b0000107e0000a13d0000ffff0060008c00000fb70000613d00000001016000390000ffff0210018f0000000c0020006c00000d540000a13d000008060000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d9a0000c13d000016520000013d00000a5d01000041000000800010043f000000840030043f00000a5e01000041000027780001043000000aef0020009c00000ab20000613d00000af00020009c00000ab20000613d000000800000043f00000a5a01000041000027770001042e0000001e02000039000000000202041a00000a5f03000041000000800030043f00000a5b03000041000000840030043f000000a40010043f0000000001000414000009e202200197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000dc80000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000dc40000c13d000000000006004b00000dd50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000fc90000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000460000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000460000c13d000000000003004b000007b30000c13d000011930000013d0000002401000039000000000101041a00000a96020000410000000000200443000009e201100197000b00000001001d00000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f000000010020019000001dc00000613d000000000101043b000000000001004b0000000c02000029000003d80000613d000000400300043d000a00000003001d00000024013000390000000d02000029000000000021043500000aae0100004100000000001304350000000001000410000009e20110019700000004023000390000000000120435000009df0030009c000009df01000041000000000103401900000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000a80011001c70000000b02000029277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0b0000290000000a0570002900000e210000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000e1d0000c13d000000000006004b00000e2e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000012a00000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000009e90010009c000000cc0000213d0000000100200190000000cc0000c13d000000400010043f000000200030008c000000460000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000000460000c13d000000000002004b0000000c02000029000003d80000c13d000010330000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e4e0000c13d000016520000013d000c00000001001d000000000020043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a0000000c0010006b000011a10000813d0000000d01000029000000000010043f0000000701000039000000200010043f00000040020000390000000001000019277627390000040f0000000c02000029000000000020043f000000200010043f00000000010000190000004002000039277627390000040f000000000101041a00000a620000013d0000001e02000039000000000202041a00000a5f03000041000000800030043f00000a9303000041000000840030043f000000a40010043f0000000001000414000009e202200197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e900000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e8c0000c13d000000000006004b00000e9d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000010380000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000460000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000460000c13d000000000003004b000009720000c13d000011930000013d0000001e03000039000000000303041a0000000401100370000000000101043b00000a5f04000041000000800040043f000000840010043f000000a40020043f0000000001000414000009e202300197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ecc0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ec80000c13d000000000006004b00000ed90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000010440000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000460000413d000000800300043d000000000003004b0000000002000039000000010200c039000000000023004b000000460000c13d000004d40000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000eef0000c13d000016520000013d0000001e02000039000000000202041a00000a5f03000041000000800030043f00000abd03000041000000840030043f000000a40010043f0000000001000414000009e202200197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f110000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f0d0000c13d000000000006004b00000f1e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000010530000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000460000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000460000c13d000000000003004b00000a1d0000c13d000011930000013d0000001e02000039000000000202041a00000a5f03000041000000800030043f00000a5c03000041000000840030043f000000a40010043f0000000001000414000009e202200197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f4c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f480000c13d000000000006004b00000f590000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000105f0000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000460000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000460000c13d000000000003004b00000a4c0000c13d000011930000013d0000001801000039000000000101041a000bffff00100194000010de0000c13d0000001205000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000114013f0000000100100190000007930000c13d000000400100043d0000000003210436000000000006004b000014b60000613d000000000050043f000000000002004b0000000004000019000014bb0000613d00000a850500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00000f830000413d000014bb0000013d000000640140003900000a65020000410000000000210435000000440140003900000a6602000041000000000021043500000024014000390000002402000039000000000021043500000a62010000410000000000140435000000040140003900000020020000390000000000210435000000400140021000000a67011001c70000277800010430000000640210003900000abe030000410000000000320435000000440210003900000abf03000041000000000032043500000024021000390000002403000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000000400110021000000a67011001c700002778000104300000000f02000039000000000202041a000000090020002a00000fb70000413d0000001103000039000000000303041a0000001004000039000000000404041a000000000434004b000010f90000813d00000ad001000041000000000010043f0000001101000039000000040010043f000009f00100004100002778000104300000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fc40000c13d000016520000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fd00000c13d000016520000013d0000002401000039000000000101041a00000a96020000410000000000200443000009e201100197000b00000001001d00000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f000000010020019000001dc00000613d000000000101043b000000000001004b0000009d0000613d000000400300043d000a00000003001d00000024013000390000000d02000029000000000021043500000aae0100004100000000001304350000000001000410000009e20110019700000004023000390000000000120435000009df0030009c000009df01000041000000000103401900000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000a80011001c70000000b02000029277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0b0000290000000a057000290000100f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000100b0000c13d000000000006004b0000101c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000015330000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000009e90010009c000000cc0000213d0000000100200190000000cc0000c13d000000400010043f000000200030008c000000460000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000000460000c13d000000000002004b0000009d0000c13d00000aaf02000041000000000021043500000004021000390000000d03000029000015250000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000103f0000c13d000016520000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000104b0000c13d000016520000013d277624d40000040f0000000001000019000027770001042e0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000105a0000c13d000016520000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010660000c13d000016520000013d000000000004004b0000000001000019000010700000613d0000000b010000290000000001010433000000030240021000000af60220027f00000af602200167000000000121016f0000000102400210000000000121019f000013c30000013d000000400100043d000000640210003900000ab3030000410000000000320435000000440210003900000ab40300004100000abb0000013d00000ad001000041000000000010043f0000003201000039000000040010043f000009f00100004100002778000104300000000101000039000d00000001001d000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000401100039000000000101041a0000000c0010006c000014070000813d0000000d010000290000ffff0010008c00000fb70000613d00000001011000390000ffff0110018f0000000b0010006c000010850000a13d00000c2a0000013d000000000020043f0000000501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000d02000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000201041a00000af5022001970000000c03000029000000000232019f000000000021041b000000400100043d0000000000310435000009df0010009c000009df0100804100000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f000009ea011001c70000800d02000039000000030300003900000ab00400004100000000050004110000000d060000292776276c0000040f0000000100200190000000460000613d000009860000013d0000000d0010006b000011b30000c13d000000400100043d000000640210003900000ae0030000410000000000320435000000440210003900000ae10300004100000000003204350000002402100039000000210300003900000abe0000013d0000000101000039000d00000001001d000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000401100039000000000101041a0000000c0010006c0000146a0000813d0000000d010000290000ffff0010008c00000fb70000613d00000001011000390000ffff0110018f0000000b0010006c000010df0000a13d00000f6e0000013d0000000903200029000000000043004b000012090000a13d000000640210003900000a75030000410000000000320435000000440210003900000a7603000041000000000032043500000024021000390000003f0300003900000fa40000013d0000002401000039000000000101041a00000a96020000410000000000200443000009e201100197000900000001001d00000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f000000010020019000001dc00000613d000000400200043d000b00000002001d000000000101043b000000000001004b000014d50000c13d0000000b0100002900000ac80010009c000000cc0000213d000002be0000013d0000001e02000039000000000202041a00000a5f03000041000000800030043f00000a5c03000041000000840030043f000000a40010043f0000000001000414000009e202200197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000113b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011370000c13d000000000006004b000011480000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000012860000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000460000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000460000c13d000000000003004b000007590000c13d000011930000013d0000001e02000039000000000202041a00000a5f03000041000000800030043f00000a5c03000041000000840030043f000000a40010043f0000000001000414000009e202200197000009df0010009c000009df01008041000000c00110021000000a61011001c7277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011760000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011720000c13d000000000006004b000011830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000012ac0000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000460000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000460000c13d000000000003004b0000041d0000c13d00000a6203000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900000a63040000410000000000430435000000a40220003900000013030000390000000000320435000000400110021000000a64011001c70000277800010430000000400100043d000000640210003900000ad1030000410000000000320435000000440210003900000ad203000041000000000032043500000024021000390000002b0300003900000abe0000013d0000000001000414000009df0010009c000009df01008041000000c001100210000000000003004b000013070000c13d00000000020004110000130b0000013d0000000002000411000000000012004b000014420000c13d0000000c01000029000000000010043f0000000401000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000201041a000009e3022001970000000d022001af000000000021041b0000000c01000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a000009e205100198000003e80000613d0000000001000414000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d02000039000000040300003900000adf040000410000000d060000290000000c070000292776276c0000040f0000000100200190000000460000613d000009860000013d000000640210003900000a81030000410000000000320435000000440210003900000a820300004100000000003204350000002402100039000000250300003900000fa40000013d0000000d0000006b0000000002000019000011f70000613d0000000c0200002900000020022000390000000102200367000000000202043b0000000d05000029000000030350021000000af60330027f00000af603300167000000000332016f0000000102500210000015870000013d000000010400008a000000000042004b00000fb70000613d000000090000006b0000158b0000c13d000000000023004b00000fb70000413d0000000e01000039000000000031041b0000000001000019000027770001042e0000000e04000039000000000404041a000000000024001a00000fb70000413d0000000005240019000000010400008a000000000045004b00000fb70000613d000000090000006b000016380000c13d000000000023004b00000fb70000413d0000000f01000039000000000031041b0000000001000019000027770001042e00000060061002700000001f0460018f000009e105600198000000400200043d0000000003520019000012250000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000012210000c13d000009df06600197000000000004004b000012330000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000006001600210000016600000013d0000001e02000039000000000202041a000000400400043d000d00000004001d0000002403400039000000000013043500000a5f010000410000000000140435000000040140003900000a5c030000410000000000310435000009df0040009c000009df01000041000000000104401900000040011002100000000003000414000009df0030009c000009df03008041000000c003300210000000000113019f00000a80011001c7000009e202200197277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0b0000290000000d057000290000125c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000012580000c13d000000000006004b000012690000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000015270000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000009e90010009c000000cc0000213d0000000100200190000000cc0000c13d000000400010043f000000200030008c000000460000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000000460000c13d000000000002004b000005820000c13d000000440210003900000a6303000041000000000032043500000024021000390000001303000039000002fd0000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000128d0000c13d000016520000013d00000a62030000410000000000310435000000e40320003900000024040000390000000000430435000000c4032000390000002004000039000000000043043500000104032001bf00000aca040000410000000000430435000001240220003900000acb0300004100000fa90000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012a70000c13d000016520000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012b30000c13d000016520000013d000000400400043d000900000004001d00000aae0100004100000000001404350000000001000410000009e20110019700000004024000390000000000120435000009e2023001970000002401400039000800000002001d0000000000210435000009df0040009c000009df01000041000000000104401900000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000a80011001c70000000a02000029277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090b0000290000000905700029000012e00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000012dc0000c13d000000000006004b000012ed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000153f0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000009e90010009c000000cc0000213d0000000100200190000000cc0000c13d000000400010043f000000200030008c000000460000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000000460000c13d000000000002004b0000000b0200002900000000030004110000091e0000c13d000015210000013d000009e4011001c70000800902000039000000000400041100000000050000192776276c0000040f0000006003100270000009df053001980000131e0000c13d000000600300003900000080040000390000000100200190000009860000c13d0000000001030433000000000001004b000015570000c13d000000400100043d00000a7e020000410000000000210435000009df0010009c000009df01008041000000400110021000000a6e011001c700002778000104300000001f03500039000009e0033001970000003f0330003900000a7d04300197000000400300043d0000000004430019000000000034004b00000000060000390000000106004039000009e90040009c000000cc0000213d0000000100600190000000cc0000c13d000000400040043f0000001f0650018f0000000004530436000009e1075001980000000005740019000013370000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000013330000c13d000000000006004b000013110000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000013110000013d00000a8b0080009c000000000408001900000a8a0440212a0000000007000039000000200700203900000a8c0040009c00000010077081bf00000a8d0440819700000a8c0440812a00000a8e0040009c0000000807708039000009e90440819700000a8e0440812a000027100040008c0000000407708039000009df04408197000027100440811a000000640040008c00000002077080390000ffff0440818f000000640440811a000000090040008c000000010770203900000af3087001970000005f0580003900000af309500197000000400600043d0000000005690019000000000095004b00000000090000390000000109004039000009e90050009c000000cc0000213d0000000100900190000000cc0000c13d000000400050043f00000001057000390000000005560436000000200880003900000af3098001980000001f0880018f000013750000613d0000000009950019000000000a050019000000001b01043c000000000aba043600000000009a004b000013710000c13d000000000008004b000000000176001900000021011000390000000c09000029000000090090008c0000000a7990011a0000000307700210000000010110008a000000000801043300000a860880019700000a870770021f00000a8807700197000000000787019f0000000000710435000013790000213d000000400800043d000009e60080009c000000cc0000213d0000004001800039000000400010043f0000000101000039000000000718043600000a8f010000410000000000170435000000130c000039000000000b0c041a000000010db001900000000109b002700000007f0990618f0000001f0090008c0000000001000039000000010100203900000000011b013f0000000100100190000007930000c13d000000400100043d000000200a10003900000000000d004b000017910000613d0000000000c0043f000000000009004b000017930000613d00000a900b000041000000000c000019000000000dac0019000000000e0b041a0000000000ed0435000000010bb00039000000200cc0003900000000009c004b000013a10000413d000017930000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000d0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000013af0000c13d0000000a05000029000000000052004b000013c10000813d0000000302500210000000f80220018f00000af60220027f00000af60220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf0000000c02000029000000000010041b0000000001020433000d00000001001d000009e90010009c000000cc0000213d0000000101000039000000000101041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000007930000c13d000b00000003001d000000200030008c000013f30000413d0000000101000039000000000010043f0000000001000414000009df0010009c000009df01008041000000c001100210000009ea011001c70000801002000039277627710000040f0000000100200190000000460000613d0000000d030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000b010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000013f30000813d000000000002041b0000000102200039000000000012004b000013ef0000413d0000000d010000290000001f0010008c0000154b0000a13d0000000101000039000000000010043f0000000001000414000009df0010009c000009df01008041000000c001100210000009ea011001c70000801002000039277627710000040f0000000100200190000000460000613d000000200200008a0000000d02200180000000000101043b000017300000c13d00000020030000390000173d0000013d0000000d0000006b00000c2a0000613d0000000d01000029000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000400200043d00000a840020009c000000cc0000213d000000000501043b000000c001200039000000400010043f000000000105041a00000000011204360000000103500039000000000303041a00000000003104350000000201500039000000000401041a000000400120003900000000004104350000000301500039000000000101041a000000600320003900000000001304350000000403500039000000000303041a00000080062000390000000000360435000000a0022000390000000505500039000000000505041a000000ff005001900000000005000039000000010500c03900000000005204350000000c02000029000000000024001a00000fb70000413d000c00000024001d0000000c0030006b00000c2a0000a13d0000000c02000029000000000021001a00000fb70000413d0000000001210019000000000031004b00000fb70000413d000c00000031005100000c2a0000013d000000000010043f0000000501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000002000411000009e202200197000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a000000ff00100190000011b60000c13d000000400100043d000000640210003900000add030000410000000000320435000000440210003900000ade0300004100000000003204350000002402100039000000380300003900000abe0000013d0000000d01000029000000000001004b00000f6e0000613d000000000010043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000400200043d00000a840020009c000000cc0000213d000000000101043b000000c003200039000000400030043f000000000301041a00000000033204360000000104100039000000000404041a00000000004304350000000203100039000000000303041a000000400520003900000000003504350000000303100039000000000303041a000000600520003900000000003504350000000403100039000000000303041a00000080052000390000000000350435000000a0022000390000000501100039000000000101041a000000ff001001900000000001000039000000010100c0390000000000120435000000000004004b00000c260000c13d0000001205000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000114013f0000000100100190000007930000c13d000000400100043d0000000003210436000000000006004b000014b60000613d000000000050043f000000000002004b0000000004000019000014bb0000613d00000a850500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000014ae0000413d000014bb0000013d00000af5044001970000000000430435000000000002004b000000200400003900000000040060390000003f0240003900000af3022001970000000004120019000000000024004b00000000020000390000000102004039000009e90040009c000000cc0000213d00000000030400190000000100200190000000cc0000c13d000d00000003001d000000400030043f0000002002000039000000000223043627761edf0000040f0000000d020000290000000001210049000009df0010009c000009df01008041000009df0020009c000009df0200804100000060011002100000004002200210000000000121019f000027770001042e00000aae010000410000000b0300002900000000001304350000000001000410000009e201100197000000040230003900000000001204350000000001000411000009e2021001970000002401300039000800000002001d0000000000210435000009df0030009c000009df01000041000000000103401900000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000a80011001c70000000902000029277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b05700029000014fc0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b000014f80000c13d000000000006004b000015090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000016470000613d0000001f01400039000000600210018f0000000b01200029000000000021004b00000000020000390000000102004039000009e90010009c000000cc0000213d0000000100200190000000cc0000c13d000000400010043f000000200030008c000000460000413d0000000b020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000460000c13d000000000002004b0000195f0000c13d00000aaf020000410000000000210435000000040210003900000008030000290000000000320435000000650000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000152e0000c13d000016520000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000153a0000c13d000016520000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015460000c13d000016520000013d0000000d0000006b0000000001000019000015500000613d000000090100002900000000010104330000000d04000029000000030240021000000af60220027f00000af602200167000000000121016f00000001024002100000174b0000013d000009df0040009c000009df040080410000004002400210000009df0010009c000009df010080410000006001100210000000000121019f000027780001043000000a9002000041000000010500036700000000040000190000000b070000290000000006740019000000000665034f000000000606043b000000000062041b00000001022000390000002004400039000000000034004b000015630000413d000015780000013d00000a8502000041000000010500036700000000040000190000000b070000290000000006740019000000000665034f000000000606043b000000000062041b00000001022000390000002004400039000000000034004b000015700000413d0000000d0030006c000015840000813d0000000d030000290000000303300210000000f80330018f00000af60330027f00000af6033001670000000b044000290000000104400367000000000404043b000000000334016f000000000032041b00000001020000390000000d030000290000000103300210000000000223019f000000000021041b0000000001000019000027770001042e00000001032000390000000c0000006b0000163b0000613d000a00000000001d000000010030003a00000fb70000413d000d00000003001d000000000030043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a000009e200100198000018a50000c13d0000000901000039000000000101041a000b00000001001d0000000d01000029000000000010043f0000000a01000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000b03000029000000000031041b000009e90030009c000000cc0000213d00000001013000390000000902000039000000000012041b00000a720130009a0000000d02000029000000000021041b0000000c01000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a000b00000001001d0000000c01000029000000000010043f0000000701000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000d02000029000000000021041b000000000020043f0000000801000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000b02000029000000000021041b0000000c01000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000201041a000000010220003a0000000d0300002900000fb70000613d000000000021041b000000000030043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000201041a000009e3022001970000000c06000029000000000262019f000000000021041b0000000001000414000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d02000039000000040300003900000a730400004100000000050000190000000d070000292776276c0000040f0000000100200190000000460000613d0000000d0300002900000001033000390000000a020000290000000102200039000a00000002001d000000090020006c0000158f0000413d0000000e01000039000000000201041a0000000903200029000000000023004b00000fb70000413d000012050000013d00000001035000390000000c0000006b000016700000c13d000000000043004b00000fb70000613d000000440210003900000a7403000041000000000032043500000a6202000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000119d0000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000164e0000c13d000000000005004b0000165f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000009df0020009c000009df020080410000004002200210000000000112019f0000277800010430000000440210003900000a8303000041000000000032043500000024021000390000001b03000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000119d0000013d000a00000000001d000000010030003a00000fb70000413d000d00000003001d000000000030043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a000009e200100198000018a50000c13d0000000901000039000000000101041a000b00000001001d0000000d01000029000000000010043f0000000a01000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000b03000029000000000031041b000009e90030009c000000cc0000213d00000001013000390000000902000039000000000012041b00000a720130009a0000000d02000029000000000021041b0000000c01000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000101041a000b00000001001d0000000c01000029000000000010043f0000000701000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000d02000029000000000021041b000000000020043f0000000801000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b0000000b02000029000000000021041b0000000c01000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000201041a000000010220003a0000000d0300002900000fb70000613d000000000021041b000000000030043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d000000000101043b000000000201041a000009e3022001970000000c06000029000000000262019f000000000021041b0000000001000414000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d02000039000000040300003900000a730400004100000000050000190000000d070000292776276c0000040f0000000100200190000000460000613d0000000d0300002900000001033000390000000a020000290000000102200039000a00000002001d000000090020006c000016710000413d0000000f01000039000000000201041a0000000903200029000000000023004b00000fb70000413d000012150000013d000000000002004b00000000030000190000171e0000613d000000a00300043d000000030420021000000af60440027f00000af604400167000000000343016f0000000102200210000000000223019f000017dd0000013d000000400100043d000000440210003900000acc03000041000000000032043500000a620200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000003020000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000c0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000017360000c13d0000000d0020006c000017480000813d0000000d020000290000000302200210000000f80220018f00000af60220027f00000af6022001670000000c033000290000000003030433000000000223016f000000000021041b0000000d0100002900000001011002100000000102000039000000000121019f0000000104000039000000000014041b0000000603000039000000000103041a00000af50110019700000001011001bf000000000013041b0000002301000039000000000201041a000009eb02200197000009ec022001c7000000000021041b0000002401000039000000000201041a000009e302200197000009ed022001c7000000000021041b000000800100043d00000140000004430000016000100443000000200100003900000100001004430000012000400443000009ee01000041000027770001042e00000af5055001970000000000540435000000000002004b000000200500003900000000050060390000003f0450003900000af3044001970000000005f40019000000000045004b00000000040000390000000104004039000009e90050009c000000cc0000213d0000000100400190000000cc0000c13d000000400050043f0000001d08000039000000000708041a000000010970019000000001047002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000667013f0000000100600190000007930000c13d0000000006450436000000000009004b0000184b0000613d000000000080043f000000000004004b0000000007000019000018500000613d00000aa10800004100000000070000190000000009760019000000000a08041a0000000000a9043500000001088000390000002007700039000000000047004b000017890000413d000018500000013d00000af50bb001970000000000ba04350000001b0d000039000000000c0d041a000000010ec00190000000010bc002700000007f0bb0618f0000001f00b0008c000000000f000039000000010f002039000000000ffc013f0000000100f00190000007930000c13d00000000099a001900000000000e004b0000180e0000613d0000000000d0043f00000000000b004b000018100000613d00000a910a000041000000000c000019000000000d9c0019000000000e0a041a0000000000ed0435000000010aa00039000000200cc000390000000000bc004b000017a60000413d000018100000013d0000001002000039000000000202041a000000000032001a00000fb70000413d00000000023200190000000d030000290000000403300039000000000023041b000000000021004b00000fb70000213d000000000012004b000018ac0000c13d000000400100043d000000640210003900000ab7030000410000000000320435000000440210003900000ab80300004100000000003204350000002402100039000000400300003900000abe0000013d00000a79030000410000002006000039000000010540008a000000050550027000000abb0550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b000017c90000c13d000000a005700039000000000024004b000017db0000813d0000000304200210000000f80440018f00000af60440027f00000af6044001670000000005050433000000000445016f000000000043041b000000010220021000000001022001bf000000000021041b0000002002000039000000400100043d0000000003210436000000800200043d00000000002304350000004003100039000000000002004b000017ee0000613d00000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000024004b000017e70000413d0000001f0420003900000af304400197000000000232001900000000000204350000004002400039000009df0020009c000009df020080410000006002200210000009df0010009c000009df010080410000004001100210000000000112019f0000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f000009e4011001c70000800d02000039000000010300003900000abc04000041000009830000013d000000400100043d000000640210003900000acd030000410000000000320435000000440210003900000ace0300004100000000003204350000002402100039000000230300003900000abe0000013d00000af50ac001970000000000a9043500000000099b0019000000000a08043300000000000a004b0000181c0000613d000000000b000019000000000c9b0019000000000d7b0019000000000d0d04330000000000dc0435000000200bb000390000000000ab004b000018150000413d00000000099a001900000000000904350000000003030433000000000003004b000018290000613d000000000a000019000000000b9a0019000000000c2a0019000000000c0c04330000000000cb0435000000200aa0003900000000003a004b000018220000413d000000000293001900000000000204350000000003080433000000000003004b000018360000613d00000000080000190000000009280019000000000a780019000000000a0a04330000000000a904350000002008800039000000000038004b0000182f0000413d000000000223001900000000000204350000000003060433000000000003004b000018430000613d000000000600001900000000072600190000000008560019000000000808043300000000008704350000002006600039000000000036004b0000183c0000413d000000000223001900000000000204350000000002120049000000200320008a00000000003104350000001f0220003900000af302200197000014bd0000013d00000af5077001970000000000760435000000000004004b000000200700003900000000070060390000003f0470003900000af304400197000000000e54001900000000004e004b00000000040000390000000104004039000009e900e0009c000000cc0000213d0000000100400190000000cc0000c13d0000004000e0043f00000ada00e0009c000000cc0000213d0000001a04000039000000000404041a000900000004001d0000000904000039000000000404041a000800000004001d0000001404000039000000000404041a000a00000004001d0000000b04000039000000000404041a000700000004001d0000000c04000039000000000404041a0000000d06000039000000000606041a0000000e07000039000000000707041a0000000f08000039000000000908041a0000001008000039000000000808041a000000110a000039000000000a0a041a000002600be000390000004000b0043f000000e00be00039000d0000000b001d0000000000ab0435000000c00ae00039000c0000000a001d00000000008a0435000000a008e00039000b00000008001d00000000009804350000008009e000390000000000790435000000600be0003900000000006b0435000000400ce0003900000000004c0435000000000ffe043600000000005f04350000001206000039000000000d06041a0000000107d00190000000010ad002700000007f0aa0618f0000001f00a0008c0000000004000039000000010400203900000000044d013f0000000100400190000007930000c13d000000400500043d0000000004a50436000000000007004b000019e40000613d000000000060043f00000000000a004b000000000d000019000019e90000613d00000a8506000041000000000d0000190000000007d40019000000000806041a00000000008704350000000106600039000000200dd000390000000000ad004b0000189d0000413d000019e90000013d000000400100043d000000440210003900000ac003000041000000000032043500000024021000390000001c03000039000002fd0000013d000000400300043d000009e60030009c000000cc0000213d0000001e01000039000000000101041a000009e2021001970000004001300039000000400010043f000000200130003900000a6b0400004100000000004104350000000b04000039000000000043043500000a6c04000041000000400600043d0000000000460435000000040460003900000020050000390000000000540435000000000303043300000024046000390000000000340435000c00000006001d0000004404600039000000000003004b000018ce0000613d000000000500001900000000064500190000000007150019000000000707043300000000007604350000002005500039000000000035004b000018c70000413d0000001f0130003900000af301100197000000000343001900000000000304350000004401100039000009df0010009c000009df0100804100000060011002100000000c03000029000009df0030009c000009df030080410000004003300210000000000131019f0000000003000414000009df0030009c000009df03008041000000c003300210000000000113019f277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c05700029000018f00000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b000018ec0000c13d000000000006004b000018fd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000019960000613d0000001f01400039000000600110018f0000000c02100029000000000012004b00000000010000390000000101004039000b00000002001d000009e90020009c000000cc0000213d0000000100100190000000cc0000c13d0000000b01000029000000400010043f000000200030008c000000460000413d0000000c010000290000000002010433000009e20020009c000000460000213d00000a6d010000410000000b030000290000000000130435000009df0030009c000009df01000041000000000103401900000040011002100000000003000414000009df0030009c000009df03008041000000c003300210000000000113019f00000a6e011001c72776276c0000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b057000290000192f0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b0000192b0000c13d000000000006004b0000193c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001b6a0000613d0000001f01400039000000600110018f0000000b01100029000009e90010009c000000cc0000213d000000400010043f000000200030008c000000460000413d0000000b0100002900000000010104330000000d02000029000000000012041b0000001802000039000000000202041a000d00000002001d000000000010043f0000001601000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000000460000613d0000000d020000290000ffff0220018f000000000101043b000000000301041a00000a6903300197000015870000013d000b00000001001d0000000b0100002900000ac80010009c000000cc0000213d000002be0000013d00000000809400d90000000205500039000000000085041b000000000008004b0000196d0000c13d000000030440011a000000000046041b00000000809400d9000000000085041b00000af50220019700000001022001bf000000000021041b000000400100043d000000800210003900000000003204350000006002100039000000000072043500000040021000390000000000820435000000200210003900000000004204350000000c020000290000000000210435000009df0010009c000009df0100804100000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000ab5011001c70000800d02000039000000010300003900000ab604000041000009830000013d000000440210003900000a6a03000041000017280000013d000000000003004b00000000060000190000198f0000613d000000a00600043d000000030730021000000af60770027f00000af607700167000000000676016f0000000103300210000000000336019f000019bb0000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000199d0000c13d000016520000013d00000ae7060000410000002009000039000000010870008a000000050880027000000ae80880009a000000000a09001900000080099000390000000009090433000000000096041b0000002009a000390000000106600039000000000086004b000019a70000c13d000000a008a00039000000000037004b000019b90000813d0000000307300210000000f80770018f00000af60770027f00000af6077001670000000008080433000000000778016f000000000076041b000000010330021000000001033001bf000000000030041b0000000006040433000009e90060009c000000cc0000213d0000000103000039000000000803041a000000010080019000000001078002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000898013f0000000100800190000007930000c13d000000200070008c000019dc0000413d0000000108000039000000000080043f0000001f08600039000000050880027000000ae90880009a000000200060008c00000aea080040410000001f07700039000000050770027000000ae90770009a000000000078004b000019dc0000813d000000000008041b0000000108800039000000000078004b000019d80000413d000000200060008c00001a200000413d000000000030043f00000af30760019800001a2a0000c13d000000200500003900000aea0200004100001a360000013d00000af506d00197000000000064043500000000000a004b000000200d000039000000000d0060390000003f04d0003900000af3064001970000000004560019000000000064004b00000000060000390000000106004039000009e90040009c000000cc0000213d0000000100600190000000cc0000c13d000000400040043f0000010004e00039000600000004001d00000000005404350000001306000039000000000d06041a0000000107d00190000000010ad002700000007f0aa0618f0000001f00a0008c0000000004000039000000010400203900000000044d013f0000000100400190000007930000c13d000000400500043d0000000004a50436000000000007004b00001a4a0000613d000000000060043f00000000000a004b000000000d00001900001a4f0000613d00000a9006000041000000000d0000190000000007d40019000000000806041a00000000008704350000000106600039000000200dd000390000000000ad004b00001a0c0000413d00001a4f0000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a1b0000c13d000016520000013d000000000006004b000000000200001900001a430000613d000000030260021000000af60220027f00000af6022001670000000004050433000000000224016f000000010460021000001a420000013d00000aea020000410000002005000039000000010870008a000000050880027000000aeb0880009a00000000094500190000000009090433000000000092041b00000020055000390000000102200039000000000082004b00001a2f0000c13d000000000067004b00001a400000813d0000000307600210000000f80770018f00000af60770027f00000af60770016700000000044500190000000004040433000000000474016f000000000042041b00000001026002100000000004030019000000000242019f000000000023041b000000000201041a00000af50220019700000001022001bf000000000021041b0000000001000019000027770001042e00000af506d00197000000000064043500000000000a004b000000200d000039000000000d0060390000003f04d0003900000af3064001970000000004560019000000000064004b00000000060000390000000106004039000009e90040009c000000cc0000213d0000000100600190000000cc0000c13d0000000706000029000009e206600197000000400040043f0000022007e0003900000ac204000041000700000007001d00000000004704350000020004e00039000500000004001d0000000000340435000001e003e00039000400000003001d0000000000130435000001c001e00039000300000001001d0000000000610435000001a003e00039000002e001000039000200000003001d00000000001304350000018003e000390000000801000029000100000003001d00000000001304350000012003e00039000000000053043500000009010000290000ff00001001900000000001000039000000010100c0390000024004e00039000900000004001d00000000001404350000000a040000290000ff00004001900000000001000039000000010100c039000001600ae0003900000000001a0435000000ff004001900000000001000039000000010100c0390000014004e0003900000000001404350000002005000039000000400100043d000000000551043600000000060e043300000260070000390000000000750435000002800710003900000000d50604340000000000570435000002a00e100039000000000005004b00001a990000613d00000000060000190000000007e6001900000000086d0019000000000808043300000000008704350000002006600039000000000056004b00001a920000413d0000000006e5001900000000000604350000001f0550003900000af30550019700000000060f04330000004007100039000002800850003900000000008704350000000007e50019000000005f060434000000000ef7043600000000000f004b00001aae0000613d00000000060000190000000007e6001900000000086500190000000008080433000000000087043500000020066000390000000000f6004b00001aa70000413d0000000005ef0019000000000005043500000000050c04330000006006100039000000000056043500000000050b0433000000800610003900000000005604350000000005090433000000a00610003900000000005604350000000b050000290000000005050433000000c00610003900000000005604350000000c050000290000000005050433000000e00610003900000000005604350000000d050000290000000005050433000001000610003900000000005604350000001f05f0003900000af3055001970000000005e500190000000006150049000000200660008a000001200710003900000006080000290000000008080433000000000067043500000000760804340000000005650436000000000006004b00001ada0000613d00000000080000190000000009580019000000000b870019000000000b0b04330000000000b904350000002008800039000000000068004b00001ad30000413d000000000756001900000000000704350000001f0660003900000af30660019700000000075600190000000005170049000000200550008a00000000030304330000014006100039000000000056043500000000560304340000000003670436000000000006004b00001af00000613d000000000700001900000000083700190000000009750019000000000909043300000000009804350000002007700039000000000067004b00001ae90000413d000000000536001900000000000504350000000004040433000000000004004b0000000004000039000000010400c0390000016005100039000000000045043500000000040a0433000000000004004b0000000004000039000000010400c0390000018005100039000000000045043500000001040000290000000004040433000001a00510003900000000004504350000001f0460003900000af30240019700000000023200190000000003120049000000200430008a000001c00510003900000002030000290000000003030433000000000045043500000000040304330000000002420436000000000004004b00001b2d0000613d0000000006000019000000200330003900000000050304330000000087050434000000000772043600000000080804330000000000870435000000400750003900000000070704330000004008200039000000000078043500000060075000390000000007070433000000600820003900000000007804350000008007500039000000000707043300000080082000390000000000780435000000a0055000390000000005050433000000000005004b0000000005000039000000010500c039000000a0072000390000000000570435000000c0022000390000000106600039000000000046004b00001b100000413d00000003030000290000000003030433000009e203300197000001e00410003900000000003404350000000003120049000000200430008a000000040300002900000000030304330000020005100039000000000045043500000000040304330000000002420436000000000004004b00001b440000613d000000000500001900000020033000390000000006030433000009e20660019700000000026204360000000105500039000000000045004b00001b3d0000413d0000000003120049000000200430008a000000050300002900000000030304330000022005100039000000000045043500000000040304330000000002420436000000000004004b00001b560000613d000000000500001900000020033000390000000006030433000009e20660019700000000026204360000000105500039000000000045004b00001b4f0000413d000000070300002900000000030304330000024004100039000000000034043500000009030000290000000003030433000000000003004b0000000003000039000000010300c039000002600410003900000000003404350000000002120049000009df0020009c000009df020080410000006002200210000009df0010009c000009df010080410000004001100210000000000112019f000027770001042e0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b710000c13d000016520000013d0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b7d0000c13d000016520000013d0000002301000039000000000101041a000b00000001001d00000a960100004100000000001004430000000c0100002900000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f000000010020019000001dc00000613d000000000101043b000000000001004b000000460000613d0000000b010000290000000801100270000009e201100197000000400300043d0000002402300039000000000012043500000a9a0100004100000000001304350000000001000410000009e20110019700000004023000390000000000120435000009df0030009c000b00000003001d000009df01000041000000000103401900000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000a80011001c70000000c020000292776276c0000040f000000010020019000001bbd0000613d0000000b01000029000009e90010009c000000cc0000213d0000000b01000029000000400010043f000007000000013d000000400100043d000000640210003900000a9b030000410000000000320435000000440210003900000a9c030000410000180a0000013d00000060061002700000001f0460018f000009e105600198000000400200043d0000000003520019000012250000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001bc50000c13d000012250000013d000000000002004b000000000300001900001bed0000613d000000030320021000000af60330027f00000af6033001670000000004040433000000000334016f0000000102200210000000000323019f00001bed0000013d00000a9e040000410000002005000039000000010760008a000000050770027000000a9f0770009a00000000083500190000000008080433000000000084041b00000020055000390000000104400039000000000074004b00001bda0000c13d000000000026004b00001beb0000813d0000000306200210000000f80660018f00000af60660027f00000af60660016700000000033500190000000003030433000000000363016f000000000034041b000000010220021000000001032001bf000000000031041b000000e00300043d0000000042030434000009e90020009c000000cc0000213d0000001d01000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000007930000c13d000000200050008c00001c0e0000413d000000000010043f0000001f06200039000000050660027000000aa00660009a000000200020008c00000aa1060040410000001f05500039000000050550027000000aa00550009a000000000056004b00001c0e0000813d000000000006041b0000000106600039000000000056004b00001c0a0000413d000000200020008c00001c160000413d000000000010043f00000af30620019800001c210000c13d000000200500003900000aa10400004100001c2d0000013d000000000002004b000000000300001900001c390000613d000000030320021000000af60330027f00000af6033001670000000004040433000000000334016f0000000102200210000000000323019f00001c390000013d00000aa1040000410000002005000039000000010760008a000000050770027000000aa20770009a00000000083500190000000008080433000000000084041b00000020055000390000000104400039000000000074004b00001c260000c13d000000000026004b00001c370000813d0000000306200210000000f80660018f00000af60660027f00000af60660016700000000033500190000000003030433000000000363016f000000000034041b000000010220021000000001032001bf000000000031041b0000000c02000039000000800100043d000000000012041b000001000300043d0000000042030434000009e90020009c000000cc0000213d0000001201000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000007930000c13d000000200050008c00001c5d0000413d000000000010043f0000001f06200039000000050660027000000aa30660009a000000200020008c00000a85060040410000001f05500039000000050550027000000aa30550009a000000000056004b00001c5d0000813d000000000006041b0000000106600039000000000056004b00001c590000413d000000200020008c00001c650000413d000000000010043f00000af30620019800001c700000c13d000000200500003900000a850400004100001c7c0000013d000000000002004b000000000300001900001c880000613d000000030320021000000af60330027f00000af6033001670000000004040433000000000334016f0000000102200210000000000323019f00001c880000013d00000a85040000410000002005000039000000010760008a000000050770027000000aa40770009a00000000083500190000000008080433000000000084041b00000020055000390000000104400039000000000074004b00001c750000c13d000000000026004b00001c860000813d0000000306200210000000f80660018f00000af60660027f00000af60660016700000000033500190000000003030433000000000363016f000000000034041b000000010220021000000001032001bf000000000031041b000001200300043d0000000042030434000009e90020009c000000cc0000213d0000001301000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000007930000c13d000000200050008c00001ca90000413d000000000010043f0000001f06200039000000050660027000000a950660009a000000200020008c00000a90060040410000001f05500039000000050550027000000a950550009a000000000056004b00001ca90000813d000000000006041b0000000106600039000000000056004b00001ca50000413d000000200020008c00001cb10000413d000000000010043f00000af30620019800001cbc0000c13d000000200500003900000a900400004100001cc80000013d000000000002004b000000000300001900001cd40000613d000000030320021000000af60330027f00000af6033001670000000004040433000000000334016f0000000102200210000000000323019f00001cd40000013d00000a90040000410000002005000039000000010760008a000000050770027000000aa50770009a00000000083500190000000008080433000000000084041b00000020055000390000000104400039000000000074004b00001cc10000c13d000000000026004b00001cd20000813d0000000306200210000000f80660018f00000af60660027f00000af60660016700000000033500190000000003030433000000000363016f000000000034041b000000010220021000000001032001bf000000000031041b0000000d01000039000000a00200043d000000000021041b0000001401000039000000000201041a00000af502200197000001400300043d000000000003004b000000010220c1bf000000000021041b0000001001000039000001600200043d000000000021041b0000001101000039000001800200043d000000000021041b00000aa601000041000000400300043d000000440230003900000000001204350000000e010000390000002402300039000000000012043500000a6c0100004100000000001304350000002002000039000b00000003001d0000000401300039000c00000002001d000000000021043500000aa70100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000009df0010009c000009df01008041000000c00110021000000aa8011001c70000800502000039277627710000040f000000010020019000001dc00000613d000000000201043b0000000b01000029000009df0010009c000009df0100804100000040011002100000000003000414000009df0030009c000009df03008041000000c003300210000000000113019f00000a64011001c7000009e202200197277627710000040f0000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001d1d0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001d190000c13d000000000006004b00001d2a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001dc10000613d0000001f01400039000000600110018f0000000b02100029000000000012004b00000000010000390000000101004039000a00000002001d000009e90020009c000000cc0000213d0000000100100190000000cc0000c13d0000000a01000029000000400010043f000000200030008c000000460000413d0000000b010000290000000002010433000009e20020009c000000460000213d0000000c01000039000000000101041a00000aa9030000410000000a040000290000000003340436000b00000003001d000009df0110019700000004034000390000000000130435000009df0040009c000009df01000041000000000104401900000040011002100000000003000414000009df0030009c000009df03008041000000c003300210000000000113019f000009f0011001c7277627710000040f00000060031002700000001f0530018f000009e108300197000009df033001970000000100200190000000000481034f000000030250021000001dcd0000613d0000000a06800029000000000008004b00001d630000613d0000000a07000029000000001801043c0000000007870436000000000067004b00001d5f0000c13d000000000005004b00001d6e0000613d000000000106043300000000012101cf000000000121022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000112019f00000000001604350000001f01300039000009e0011001970000000a04100029000009e90040009c000000cc0000213d000000400040043f000000600030008c000000460000413d0000000a010000290000000001010433000009e90010009c000000460000213d0000000a033000290000000a011000290000001f02100039000000000032004b000000460000813d0000000021010434000009e90010009c000000cc0000213d0000001f0510003900000af3055001970000003f0550003900000af3055001970000000005450019000009e90050009c000000cc0000213d000000400050043f00000000041404360000000005210019000000000035004b000000460000213d000000000001004b00001d980000613d000000000300001900000000054300190000000006230019000000000606043300000000006504350000002003300039000000000013004b00001d910000413d000000000141001900000000000104350000000b010000290000000001010433000009e20010009c000000460000213d0000000a0200002900000040022000390000000002020433000009df0020009c000000460000213d0000001e02000039000000000302041a000009e303300197000000000113019f000000000012041b0000001a03000039000000000103041a00000af401100197000001a00200043d000000000002004b000001000110c1bf000000000013041b00000aaa0100004100000000001004430000000001000414000009df0010009c000009df01008041000000c00110021000000aab011001c70000800b02000039277627710000040f000000010020019000001dc00000613d000000000201043b00000a890020009c00001de70000413d000000400300003900000a890120012a00001df00000013d000000000001042f0000001f0530018f000009e106300198000000400200043d0000000004620019000016520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001dc80000c13d000016520000013d000000400600043d0000000007860019000000000008004b00001dd60000613d0000000008060019000000001901043c0000000008980436000000000078004b00001dd20000c13d000000000005004b00001de10000613d000000000107043300000000012101cf000000000121022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000112019f00000000001704350000006001300210000009df0060009c000009df060080410000004002600210000000000112019f000027780001043000000a8b0020009c000000000102001900000a8a0110212a0000000003000039000000200300203900000a8c0010009c00000010033081bf00000a8d0110819700000a8c0110812a00000a8e0010009c0000000803308039000009e90110819700000a8e0110812a000027100010008c0000000403308039000009df01108197000027100110811a000000640010008c00000002033080390000ffff0110818f000000640110811a000000090010008c000000010330203900000af3053001970000005f0150003900000af306100197000000400100043d0000000004160019000000000064004b00000000060000390000000106004039000009e90040009c000000cc0000213d0000000100600190000000cc0000c13d000000400040043f00000001043000390000000004410436000000200550003900000af3065001980000001f0550018f00001e190000613d0000000006640019000000000700003100000001077003670000000008040019000000007907043c0000000008980436000000000068004b00001e150000c13d000000000005004b00000000033100190000002103300039000000090020008c0000000a5220011a0000000305500210000000010330008a000000000603043300000a860660019700000a870550021f00000a8805500197000000000565019f000000000053043500001e1c0000213d0000000003010433000009e90030009c000000cc0000213d0000001b02000039000000000602041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000007930000c13d000000200050008c00001e460000413d000000000020043f0000001f06300039000000050660027000000aac0660009a000000200030008c00000a91060040410000001f05500039000000050550027000000aac0550009a000000000056004b00001e460000813d000000000006041b0000000106600039000000000056004b00001e420000413d000000200030008c00001e650000413d000000000020043f00000af30530019800000a910400004100001e580000613d000c00200000003d000000010650008a000000050660027000000aad0660009a0000000c0800002900000000071800190000000007070433000000000074041b000c00200080003d0000000104400039000000000064004b00001e500000c13d000000000035004b00001e620000813d0000000305300210000000f80550018f00000af60550027f00000af6055001670000000c011000290000000001010433000000000151016f000000000014041b000000010130021000000001011001bf00001e6f0000013d000000000003004b000000000100001900001e6f0000613d000000030130021000000af60110027f00000af6011001670000000004040433000000000114016f0000000103300210000000000131019f000000000012041b0000000d01000029000009e2061001970000000b01000039000000000201041a000009e303200197000000000363019f000000000031041b0000000001000414000009e205200197000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d020000390000000303000039000009e5040000412776276c0000040f0000000100200190000000460000613d0000001a02000039000000000102041a00000af50110019700000001011001bf000000000012041b0000000001000019000027770001042e00000af70010009c00001e8f0000813d0000006001100039000000400010043f000000000001042d00000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300000001f0220003900000af3022001970000000001120019000000000021004b00000000020000390000000102004039000009e90010009c00001ea10000213d000000010020019000001ea10000c13d000000400010043f000000000001042d00000ad001000041000000000010043f0000004101000039000000040010043f000009f001000041000027780001043000000af80020009c00001ed70000813d00000000040100190000001f0120003900000af3011001970000003f0110003900000af305100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000009e90050009c00001ed70000213d000000010070019000001ed70000c13d000000400050043f00000000052104360000000007420019000000000037004b00001edd0000213d00000af3062001980000001f0720018f0000000104400367000000000365001900001ec70000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00001ec30000c13d000000000007004b00001ed40000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300000000001000019000027780001043000000000430104340000000001320436000000000003004b00001eeb0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00001ee40000413d000000000213001900000000000204350000001f0230003900000af3022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00001f000000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00001ef90000413d000000000312001900000000000304350000001f0220003900000af3022001970000000001120019000000000001042d0000001c05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b00001f340000c13d000000400100043d0000000003210436000000000006004b00001f210000613d000000000050043f000000000002004b00001f270000613d00000a9e0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00001f190000413d00001f280000013d00000af5044001970000000000430435000000000002004b0000002004000039000000000400603900001f280000013d00000000040000190000003f0240003900000af3032001970000000002130019000000000032004b00000000030000390000000103004039000009e90020009c00001f3a0000213d000000010030019000001f3a0000c13d000000400020043f000000000001042d00000ad001000041000000000010043f0000002201000039000000040010043f000009f001000041000027780001043000000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300000001305000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b00001f6e0000c13d000000400100043d0000000003210436000000000006004b00001f5b0000613d000000000050043f000000000002004b00001f610000613d00000a900500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00001f530000413d00001f620000013d00000af5044001970000000000430435000000000002004b0000002004000039000000000400603900001f620000013d00000000040000190000003f0240003900000af3032001970000000002130019000000000032004b00000000030000390000000103004039000009e90020009c00001f740000213d000000010030019000001f740000c13d000000400020043f000000000001042d00000ad001000041000000000010043f0000002201000039000000040010043f000009f001000041000027780001043000000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300000001d05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b00001fa80000c13d000000400100043d0000000003210436000000000006004b00001f950000613d000000000050043f000000000002004b00001f9b0000613d00000aa10500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00001f8d0000413d00001f9c0000013d00000af5044001970000000000430435000000000002004b0000002004000039000000000400603900001f9c0000013d00000000040000190000003f0240003900000af3032001970000000002130019000000000032004b00000000030000390000000103004039000009e90020009c00001fae0000213d000000010030019000001fae0000c13d000000400020043f000000000001042d00000ad001000041000000000010043f0000002201000039000000040010043f000009f001000041000027780001043000000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300000001205000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b00001fe20000c13d000000400100043d0000000003210436000000000006004b00001fcf0000613d000000000050043f000000000002004b00001fd50000613d00000a850500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00001fc70000413d00001fd60000013d00000af5044001970000000000430435000000000002004b0000002004000039000000000400603900001fd60000013d00000000040000190000003f0240003900000af3032001970000000002130019000000000032004b00000000030000390000000103004039000009e90020009c00001fe80000213d000000010030019000001fe80000c13d000000400020043f000000000001042d00000ad001000041000000000010043f0000002201000039000000040010043f000009f001000041000027780001043000000ad001000041000000000010043f0000004101000039000000040010043f000009f001000041000027780001043000000a980010009c00001ffa0000213d000000430010008c00001ffa0000a13d00000001010003670000002402100370000000000202043b000009e20020009c00001ffa0000213d0000000401100370000000000101043b000000000001042d00000000010000190000277800010430000000000010043f0000001601000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f00000001002001900000200a0000613d000000000101043b000000000001042d00000000010000190000277800010430000000400100043d00000af90010009c000020170000813d0000004002100039000000400020043f000000200210003900000a6b0300004100000000003204350000000b020000390000000000210435000000000001042d00000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000020400000613d000000000101043b000000000101041a000009e200100198000020420000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000020400000613d000000000101043b000000000101041a000009e201100197000000000001042d00000000010000190000277800010430000000400100043d000000640210003900000afa030000410000000000320435000000440210003900000afb03000041000000000032043500000024021000390000002c03000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a67011001c7000027780001043000030000000000020000001802000039000000000202041a0001ffff00200194000020770000613d0000000102000039000200000001001d000300000002001d000000000020043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000020b20000613d000000000101043b0000000401100039000000000201041a0000000201000029000000000012004b000020780000813d00000003020000290000ffff0020008c000020b40000613d00000001022000390000ffff0220018f000000010020006c0000205d0000a13d000000000001042d0000000302000029000000000002004b000020770000613d000000000020043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000020b20000613d000000400200043d00000afc0020009c000020ba0000813d000000000501043b000000c001200039000000400010043f000000000105041a00000000011204360000000103500039000000000303041a00000000003104350000000201500039000000000401041a000000400120003900000000004104350000000301500039000000000701041a000000600320003900000000007304350000000403500039000000000303041a00000080062000390000000000360435000000a0022000390000000505500039000000000505041a000000ff005001900000000005000039000000010500c03900000000005204350000000201000029000000000014001a000020b40000413d0000000001140019000000000031004b000020770000a13d000000000017001a000020b40000413d0000000001170019000000000031004b000020b40000413d0000000001310049000000000001042d0000000001000019000027780001043000000ad001000041000000000010043f0000001101000039000000040010043f000009f001000041000027780001043000000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300000000e02000039000000000202041a0000000f03000039000000000303041a000000000023001a000020d40000413d0000000003230019000000000013004b0000000003000019000020d20000813d0000001003000039000000000303041a000000000023001a000020d40000413d0000000002230019000000000012004b00000000030000390000000103008039000000010130018f000000000001042d00000ad001000041000000000010043f0000001101000039000000040010043f000009f0010000410000277800010430000009e202200197000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000020e80000613d000000000101043b000000000001042d000000000100001900002778000104300000000e01000039000000000101041a0000001002000039000000000302041a000000000013001a0000001102000039000020f80000413d0000000001130019000000000302041a000000000131004b000020f80000413d000000010110003a000020f80000613d000000000001042d00000ad001000041000000000010043f000000040020043f000009f0010000410000277800010430000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f00000001002001900000210e0000613d000000000101043b000000000101041a000009e201100198000021100000613d000000000001042d00000000010000190000277800010430000000400100043d000000640210003900000ae2030000410000000000320435000000440210003900000ae303000041000000000032043500000024021000390000002903000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a67011001c70000277800010430000009e201100198000021350000613d000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000021490000613d000000000101043b000000000101041a000000000001042d000000400100043d000000640210003900000ad4030000410000000000320435000000440210003900000ad303000041000000000032043500000024021000390000002a03000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a67011001c70000277800010430000000000100001900002778000104300004000000000002000200000001001d0000001801000039000000000101041a0001ffff001001940000216d0000613d0000000102000039000300000002001d000400000002001d000000000020043f0000001501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000021700000613d000000000101043b0000000401100039000000000101041a000000020010006c0000216e0000813d00000004010000290000ffff0010008c000021720000613d0000000101100039000300000001001d0000ffff0210018f000000010020006c000021530000a13d000300000000001d0000000301000029000000000001042d0000000001000019000027780001043000000ad001000041000000000010043f0000001101000039000000040010043f000009f001000041000027780001043000010000000000020000001e03000039000000000303041a000009e202200197000000400500043d000100000005001d0000002404500039000000000024043500000a5f02000041000000000025043500000004025000390000000000120435000009df0050009c000009df01000041000000000105401900000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000a80011001c7000009e202300197277627710000040f000000010b0000290000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000021a00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000219c0000c13d000000000006004b000021ad0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000021c50000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000009e90010009c000021e30000213d0000000100200190000021e30000c13d000000400010043f0000001f0030008c000021c30000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000021c30000c13d000000000001042d000000000100001900002778000104300000001f0530018f000009e106300198000000400200043d0000000004620019000021d00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021cc0000c13d000000000005004b000021dd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000009df0020009c000009df020080410000004002200210000000000112019f000027780001043000000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300008000000000002000300000004001d000800000003001d000700000002001d000400000001001d000609e20010019b0000002301000039000000000101041a000000ff00100190000022560000613d0000000002000411000000060020006b000022560000613d0000002401000039000000000101041a00000a96020000410000000000200443000009e201100197000500000001001d00000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f00000001002001900000233a0000613d000000000101043b000000000001004b000022560000613d000000400300043d000200000003001d00000aae0100004100000000001304350000000001000410000009e201100197000000040230003900000000001204350000000001000411000009e2021001970000002401300039000100000002001d0000000000210435000009df0030009c000009df01000041000000000103401900000040011002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000a80011001c70000000502000029277627710000040f000000020b0000290000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000022320000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000222e0000c13d000000000006004b0000223f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000023620000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000009e90010009c000023c40000213d0000000100200190000023c40000c13d000000400010043f0000001f0030008c000023380000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000023380000c13d000000000002004b000023800000613d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000023380000613d000000000101043b000000000101041a000009e2001001980000233b0000613d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000023380000613d000000000101043b000000000101041a000009e201100198000023450000613d0000000002000411000509e20020019b000000050010006b000022bc0000613d000000000010043f0000000501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000023380000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000023380000613d000000000101043b000000000101041a000000ff00100190000022bc0000c13d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000023380000613d000000000101043b000000000101041a000009e200100198000023d30000613d0000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000023380000613d000000000101043b000000000101041a000009e201100197000000050010006c000023da0000c13d0000000401000029000000070200002900000008030000292776257e0000040f00000a96010000410000000000100443000000070100002900000004001004430000000001000414000009df0010009c000009df01008041000000c00110021000000a7c011001c70000800202000039277627710000040f00000001002001900000233a0000613d000000000101043b000000000001004b000023370000613d000000400700043d00000064017000390000008002000039000400000002001d000000000021043500000044017000390000000802000029000000000021043500000024017000390000000602000029000000000021043500000aff0100004100000000001704350000000401700039000000050200002900000000002104350000008402700039000000030100002900000000310104340000000000120435000000a402700039000000000001004b000022ef0000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b000022e80000413d0000001f0310003900000af30330019700000000012100190000000000010435000000a401300039000009df0010009c000009df010080410000006001100210000009df0070009c000009df0200004100000000020740190000004002200210000000000121019f0000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f0000000702000029000009e202200197000800000007001d2776276c0000040f000000080b0000290000006003100270000009df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000023150000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000023110000c13d000000000006004b000023220000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000023590000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000009e90020009c000023c40000213d0000000100100190000023c40000c13d000000400020043f000000200030008c000023380000413d00000000010b043300000aec00100198000023380000c13d00000aed0110019700000aff0010009c0000235d0000c13d000000000001042d00000000010000190000277800010430000000000001042f000000400100043d000000640210003900000afa030000410000000000320435000000440210003900000b0003000041000000000032043500000024021000390000002c030000390000234e0000013d000000400100043d000000640210003900000ae2030000410000000000320435000000440210003900000ae303000041000000000032043500000024021000390000002903000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a67011001c70000277800010430000000000003004b0000238a0000c13d0000006002000039000023b10000013d00000a620100004100000000001204350000000401200039000800000002001d000023b90000013d0000001f0530018f000009e106300198000000400200043d00000000046200190000236d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023690000c13d000000000005004b0000237a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000009df0020009c000009df020080410000004002200210000000000112019f000027780001043000000aaf020000410000000000210435000000040210003900000001030000290000000000320435000009df0010009c000009df010080410000004001100210000009f0011001c700002778000104300000001f02300039000009e0022001970000003f0220003900000a7d04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000009e90040009c000023c40000213d0000000100500190000023c40000c13d000000400040043f0000001f0430018f0000000006320436000009e105300198000400000006001d0000000003560019000023a40000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b000023a00000c13d000000000004004b000023b10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000023ca0000c13d000000400200043d000800000002001d00000a6201000041000000000012043500000004012000392776272b0000040f00000008020000290000000001210049000009df0010009c000009df010080410000006001100210000009df0020009c000009df020080410000004002200210000000000121019f000027780001043000000ad001000041000000000010043f0000004101000039000000040010043f000009f00100004100002778000104300000000402000029000009df0020009c000009df020080410000004002200210000009df0010009c000009df010080410000006001100210000000000121019f0000277800010430000000400100043d000000640210003900000afa030000410000000000320435000000440210003900000afb03000041000023410000013d000000400100043d000000640210003900000afd030000410000000000320435000000440210003900000afe030000410000000000320435000000240210003900000031030000390000234e0000013d0000000b01000039000000000101041a000009e2021001970000000001000411000000000012004b000023eb0000c13d000000000001042d000000400200043d00000a5d03000041000000000032043500000004032000390000000000130435000009df0020009c000009df020080410000004001200210000009f0011001c70000277800010430000000000001004b000023f80000613d000000000001042d000000400100043d000000640210003900000afd030000410000000000320435000000440210003900000afe03000041000000000032043500000024021000390000003103000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a67011001c700002778000104300003000000000002000209e20010019c000024ac0000613d000300000002001d000000000020043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000024aa0000613d000000000101043b000000000101041a000009e200100198000024b70000c13d0000000901000039000000000101041a000100000001001d0000000301000029000000000010043f0000000a01000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000024aa0000613d000000000101043b0000000102000029000000000021041b00000af80020009c000024c80000813d00000001012000390000000903000039000000000013041b00000a720120009a0000000302000029000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000024aa0000613d000000000101043b000000000101041a000100000001001d0000000201000029000000000010043f0000000701000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000024aa0000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000024aa0000613d000000000101043b0000000302000029000000000021041b000000000020043f0000000801000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000024aa0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000024aa0000613d000000000101043b000000000201041a000000010220003a000024ce0000613d000000000021041b0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000024aa0000613d000000000101043b000000000201041a000009e3022001970000000206000029000000000262019f000000000021041b0000000001000414000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d02000039000000040300003900000a7304000041000000000500001900000003070000292776276c0000040f0000000100200190000024aa0000613d000000000001042d00000000010000190000277800010430000000400100043d000000440210003900000a7403000041000000000032043500000a620200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000024c20000013d000000400100043d000000440210003900000ac003000041000000000032043500000024021000390000001c03000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a64011001c7000027780001043000000ad001000041000000000010043f0000004101000039000000040010043f000009f001000041000027780001043000000ad001000041000000000010043f0000001101000039000000040010043f000009f0010000410000277800010430000009e2061001970000000b01000039000000000201041a000009e303200197000000000363019f000000000031041b0000000001000414000009e205200197000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d020000390000000303000039000009e5040000412776276c0000040f0000000100200190000024e70000613d000000000001042d000000000100001900002778000104300002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000025570000613d000000000101043b000000000101041a000009e200100198000025590000613d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000025570000613d000000000101043b000000000101041a000009e201100198000025630000613d0000000102000029000009e202200197000000000012004b000025130000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000025570000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000025570000613d000000000101043b000000000101041a000000ff01100190000025320000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000025570000613d000000000101043b000000000101041a000009e200100198000025770000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000025570000613d000000000101043b000000000101041a000009e201100197000000010010006c00000000010000390000000101006039000000000001042d00000000010000190000277800010430000000400100043d000000640210003900000afa030000410000000000320435000000440210003900000b0003000041000000000032043500000024021000390000002c030000390000256c0000013d000000400100043d000000640210003900000ae2030000410000000000320435000000440210003900000ae303000041000000000032043500000024021000390000002903000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a67011001c70000277800010430000000400100043d000000640210003900000afa030000410000000000320435000000440210003900000afb030000410000255f0000013d0006000000000002000300000002001d000400000001001d000600000003001d000000000030043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000101041a000509e20010019c000026f30000613d0000000401000029000009e201100197000000050010006b000026fd0000c13d0000000301000029000409e20010019c000027070000613d0000001401000039000000000101041a000000ff001001900000271b0000c13d0000000402000029000000050020006b000026760000613d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000101041a000300000001001d000000000001004b000026ed0000613d0000000601000029000000000010043f0000000801000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d00000003020000290003000100200092000000000101043b000000000101041a000000030010006c0000260f0000613d000200000001001d0000000501000029000000000010043f0000000701000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000101041a000100000001001d0000000501000029000000000010043f0000000701000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b0000000102000029000000000021041b000000000020043f0000000801000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b0000000202000029000000000021041b0000000601000029000000000010043f0000000801000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000001041b0000000501000029000000000010043f0000000701000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000001041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000101041a000300000001001d0000000401000029000000000010043f0000000701000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b0000000602000029000000000021041b000000000020043f0000000801000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b0000000302000029000000000021041b0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000201041a000009e302200197000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000101041a000009e205100198000026f30000613d0000000001000414000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d02000039000000040300003900000adf04000041000000000600001900000006070000292776276c0000040f0000000100200190000026eb0000613d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000201041a000000000002004b000026ed0000613d000000010220008a000000000021041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000201041a000000010220003a000026ed0000613d000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000009df0010009c000009df01008041000000c00110021000000a68011001c70000801002000039277627710000040f0000000100200190000026eb0000613d000000000101043b000000000201041a000009e3022001970000000406000029000000000262019f000000000021041b0000000001000414000009df0010009c000009df01008041000000c001100210000009e4011001c70000800d02000039000000040300003900000a7304000041000000050500002900000006070000292776276c0000040f0000000100200190000026eb0000613d000000000001042d0000000001000019000027780001043000000ad001000041000000000010043f0000001101000039000000040010043f000009f0010000410000277800010430000000400100043d000000640210003900000ae2030000410000000000320435000000440210003900000ae303000041000000000032043500000024021000390000002903000039000027100000013d000000400100043d000000640210003900000b01030000410000000000320435000000440210003900000b0203000041000000000032043500000024021000390000002503000039000027100000013d000000400100043d000000640210003900000b04030000410000000000320435000000440210003900000b0503000041000000000032043500000024021000390000002403000039000000000032043500000a62020000410000000000210435000000040210003900000020030000390000000000320435000009df0010009c000009df01008041000000400110021000000a67011001c70000277800010430000000400100043d000000440210003900000b0303000041000000000032043500000a6202000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000009df0010009c000009df01008041000000400110021000000a64011001c70000277800010430000000600210003900000b06030000410000000000320435000000400210003900000b07030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000009df0010009c000009df010080410000004001100210000009df0020009c000009df020080410000006002200210000000000112019f0000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f000009e4011001c70000801002000039277627710000040f00000001002001900000274c0000613d000000000101043b000000000001042d0000000001000019000027780001043000000000050100190000000000200443000000050030008c0000275c0000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000027540000413d000009df0030009c000009df0300804100000060013002100000000002000414000009df0020009c000009df02008041000000c002200210000000000112019f00000b08011001c70000000002050019277627710000040f00000001002001900000276b0000613d000000000101043b000000000001042d000000000001042f0000276f002104210000000102000039000000000001042d0000000002000019000000000001042d00002774002104230000000102000039000000000001042d0000000002000019000000000001042d0000277600000432000027770001042e000027780001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffffbf474f4c44454e5f544f4b454e5f434f4e545241435400000000000000000000004754000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb601000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e00000002000000000000000000000000000000800000010000000000000000001e4fbdf700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000c763e5a000000000000000000000000000000000000000000000000000000000e941932400000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000fbd106f800000000000000000000000000000000000000000000000000000000fbd106f900000000000000000000000000000000000000000000000000000000fc83b82700000000000000000000000000000000000000000000000000000000fd6a382e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f9c0611c00000000000000000000000000000000000000000000000000000000ea09e47200000000000000000000000000000000000000000000000000000000ea09e47300000000000000000000000000000000000000000000000000000000ea9d682400000000000000000000000000000000000000000000000000000000ee198b9700000000000000000000000000000000000000000000000000000000e941932500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000d5b014c200000000000000000000000000000000000000000000000000000000e288e73200000000000000000000000000000000000000000000000000000000e288e73300000000000000000000000000000000000000000000000000000000e7713baa00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000d5b014c300000000000000000000000000000000000000000000000000000000dbd5fd9b00000000000000000000000000000000000000000000000000000000d255fe0200000000000000000000000000000000000000000000000000000000d255fe0300000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000c763e5a100000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000a4b744e100000000000000000000000000000000000000000000000000000000afa88e5400000000000000000000000000000000000000000000000000000000bcc0f72400000000000000000000000000000000000000000000000000000000bcc0f72500000000000000000000000000000000000000000000000000000000bff3561800000000000000000000000000000000000000000000000000000000c1bd8cf900000000000000000000000000000000000000000000000000000000afa88e5500000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000a811a37a00000000000000000000000000000000000000000000000000000000a811a37b00000000000000000000000000000000000000000000000000000000abb8def300000000000000000000000000000000000000000000000000000000a4b744e200000000000000000000000000000000000000000000000000000000a5b3abfb0000000000000000000000000000000000000000000000000000000098f5b237000000000000000000000000000000000000000000000000000000009d759d5e000000000000000000000000000000000000000000000000000000009d759d5f000000000000000000000000000000000000000000000000000000009e0f001800000000000000000000000000000000000000000000000000000000a22cb4650000000000000000000000000000000000000000000000000000000098f5b238000000000000000000000000000000000000000000000000000000009c30ea510000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009871d6fa00000000000000000000000000000000000000000000000000000000938e3d7b000000000000000000000000000000000000000000000000000000009456d7270000000000000000000000000000000000000000000000000000000041f434330000000000000000000000000000000000000000000000000000000069b2b9a6000000000000000000000000000000000000000000000000000000007f72f035000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008ffc20e20000000000000000000000000000000000000000000000000000000091d14854000000000000000000000000000000000000000000000000000000007f72f0360000000000000000000000000000000000000000000000000000000082027b6d00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007671114d0000000000000000000000000000000000000000000000000000000077d4b5040000000000000000000000000000000000000000000000000000000069b2b9a70000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000004cf292570000000000000000000000000000000000000000000000000000000054fd4d4f0000000000000000000000000000000000000000000000000000000054fd4d50000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000066d47d84000000000000000000000000000000000000000000000000000000004cf29258000000000000000000000000000000000000000000000000000000004f6ccce700000000000000000000000000000000000000000000000000000000432e200500000000000000000000000000000000000000000000000000000000432e20060000000000000000000000000000000000000000000000000000000044d19d2b0000000000000000000000000000000000000000000000000000000041f434340000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000160fba550000000000000000000000000000000000000000000000000000000023b872dc000000000000000000000000000000000000000000000000000000002f151b75000000000000000000000000000000000000000000000000000000002f151b76000000000000000000000000000000000000000000000000000000002f745c59000000000000000000000000000000000000000000000000000000003f5916560000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002a85db550000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001f4bc79d00000000000000000000000000000000000000000000000000000000160fba560000000000000000000000000000000000000000000000000000000017fd1e2f00000000000000000000000000000000000000000000000000000000081812fb000000000000000000000000000000000000000000000000000000000e89341b000000000000000000000000000000000000000000000000000000000e89341c0000000000000000000000000000000000000000000000000000000010d51dd90000000000000000000000000000000000000000000000000000000012686aae00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000677ef80000000000000000000000000000000000000000000000000000000000677ef810000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000601115c0000000000000000000000000000000000000020000000800000000000000000dbd612d55a9aa50e9cdaf6dcccb9ec8386fea10c2783e3ba35c8652cd4932d7c0c7112aae6457f5c6a25de7d80f58f2fb755235d06d4473246b07240659a270f118cdaa700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000091d14854000000000000000000000000000000000000000000000000000000002f237764fc2d5c1022c2b3369211bf066f9f9b112c1a699afe91573a989d407f000000000000000000000000000000000000004400000080000000000000000008c379a000000000000000000000000000000000000000000000000000000000546f6b656e3a20556e617574686f72697365640000000000000000000000000000000000000000000000000000000000000000640000000000000000000000007374656400000000000000000000000000000000000000000000000000000000546f6b656e3a204c6173742072657665616c20616c726561647920726571756500000000000000000000000000000000000000840000000000000000000000000200000000000000000000000000000000000040000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000546f6b656e3a20506c656173652072657175657374204c61737452657665616c555345525f52414e444f4d00000000000000000000000000000000000000000074b9982c00000000000000000000000000000000000000000000000000000000c532bbac0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000006c65640000000000000000000000000000000000000000000000000000000000546f6b656e3a20565246205368696674696e67206d75737420626520656e6162000000000000000000000000000000000000002000000000000000000000000091eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a3851ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4552433732313a206d696e7420746f20746865207a65726f2061646472657373626572206f6620726573657276656420636172647320617661696c61626c6500546f6b656e3a205468697320776f756c642065786365656420746865206e756d7374656420666972737400000000000000000000000000000000000000000000546f6b656e3a204c6173742072657665616c206d757374206265207265717565944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969500000000000000000000000000000000000000600000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0d6bda27500000000000000000000000000000000000000000000000000000000cf4791810000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000006669727374000000000000000000000000000000000000000000000000000000546f6b656e3a204d757374206d696e7420726573657276656420636172647320546f6b656e3a2043617264206964206e6f7420696e2072616e67650000000000000000000000000000000000000000000000000000000000ffffffffffffff3fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344400ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e1002f0000000000000000000000000000000000000000000000000000000000000066de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0903ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc1546f6b656e3a20546f6b656e20646f6573206e6f7420657869737400000000007d4398cf7d551d8cb071f228c3b0838dfaf546b384e93039ea180fba606dfac3e3f0ec9c4af57e69d5aeff78a5912ca25733e4458710bab2b55d0985e98aeb5e9921700258681c2163fa1703a84c40f13d756cf2bf4f2d7a26c3f9afe3095f701806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8323b872dd000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffe3f7d3e3dbe000000000000000000000000000000000000000000000000000000007a65640000000000000000000000000000000000000000000000000000000000546f6b656e3a20436f6e747261637420616c726561647920696e697469616c69f1ba9d5efc7e213de4dfa128d9c8194e4adc422f1b2b2af50a32dc22baff5def0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a211f1ba9d5efc7e213de4dfa128d9c8194e4adc422f1b2b2af50a32dc22baff5dee92bbf81841de07f719af6556056ebcc96a86228289f01df5d3f697f03eb9ecb16d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f92bbf81841de07f719af6556056ebcc96a86228289f01df5d3f697f03eb9ecb0447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbc447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbb9921700258681c2163fa1703a84c40f13d756cf2bf4f2d7a26c3f9afe3095f6f434f4d4d554e4954595f4c495354000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000d0f4a537000000000000000000000000000000000000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000200000000000000000000000000000004000000000000000000000000c52755b078abbcdc562e1a226fd0bf3ca9ad8586aa978eec24a0657a52a8623fc52755b078abbcdc562e1a226fd0bf3ca9ad8586aa978eec24a0657a52a8623ec617113400000000000000000000000000000000000000000000000000000000ede71dcc0000000000000000000000000000000000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c65720000000000000000000000000000000000000000000000000000c00000008000000000000000006973747300000000000000000000000000000000000000000000000000000000546f6b656e3a2052657665616c207265717565737420616c726561647920657802000000000000000000000000000000000000a0000000000000000000000000959b44b0b513e15fb6ff0120336443b895d08969842e3aed3ac22eb9e933f7b3722063757272656e742072616e676520746f206265206174206c656173742031546f6b656e3a207265717569726573206d696e74656420746f6b656e7320666f000000000000000000000000000000000000000000000000ffffffffffffff7f6bb667d8c1b884b6aebb04786b36ebe680c334b941d6ff0b96702f108bc3696b6bb667d8c1b884b6aebb04786b36ebe680c334b941d6ff0b96702f108bc3696a74c497646a57fa0eeedc14ff6eec2da957c18c9c77881fe1aff368249b52b5c178095cc8201dcba39b170f4873756afcc9c5fe4c54fba1731ca3be8a9544e76b7665616c00000000000000000000000000000000000000000000000000000000546f6b656e3a2043616e6e6f74206d696e74206166746572206c6173742072654552433732313a20746f6b656e20616c7265616479206d696e74656400000000626572206f6620636172647320617661696c61626c65000000000000000000000000000000000000000000000000000000000000000000000000000078a4676d455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64730000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000052414e444f4d56325f53535000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf0000000000000000000000000000000000000064000000c00000000000000000546f6b656e3a2070726f63657373282920556e617574686f72697365642063616c6c657200000000000000000000000000000000000000000000000000000000546f6b656e3a2072657665616c20616c72656164792070726f6365737365642e7665640000000000000000000000000000000000000000000000000000000000546f6b656e3a20496e636f72726563742072657175657374496420726563656900000000000000000000000000000000000000000000000000000000000186a04e487b710000000000000000000000000000000000000000000000000000000074206f6620626f756e6473000000000000000000000000000000000000000000455243373231456e756d657261626c653a206f776e657220696e646578206f754552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fffe000000000000000000000000000000000000000000000000000000000000100007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0c59ca8fed3e5c51f5e82cfb366dfcefc7d26971433b4e88e0be394cfbdfa4a905fc7c85dadef11d7f3deec00b48835dcbbf4e62b7993358de37fed8702f727f9000000000000000000000000000000000000000000000000fffffffffffffd9fa9059cbb00000000000000000000000000000000000000000000000000000000c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c156e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f778c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374697a6564000000000000000000000000000000000000000000000000000000004552433732313a20436f6e747261637420616c726561647920696e697469616cd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563d6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9c4ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30900000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000780e9d62ffffffffffffffffffffffffffffffffffffffffffffffffffffffff80ac58cd00000000000000000000000000000000000000000000000000000000780e9d630000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffa00000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578000000000000000000000000000000000000000000000000ffffffffffffff40776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f150b7a02000000000000000000000000000000000000000000000000000000004552433732313a206f70657261746f7220717565727920666f72206e6f6e65786f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f727265637420546f6b656e3a205472616e736665727320617265206e6f7420656e61626c656472657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f2061646463656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e20455243373231526502000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dfd99e05b90e4010a06b1aeb81d57ef811e7ba3074eb3a5bde7d2a3473a7c474
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a
-----Decoded View---------------
Arg [0] : _galaxisRegistry (address): 0xF8274c5E5149a6e0FC5190483323a1B399896a8A
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.