Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Lazy Mint | 5248642 | 15 days ago | IN | 0 ETH | 0.00001449 |
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.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x22921208...AcA567D43 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MyContract
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "@thirdweb-dev/contracts/extension/Drop1155.sol"; import "@thirdweb-dev/contracts/base/ERC1155LazyMint.sol"; import "@thirdweb-dev/contracts/lib/CurrencyTransferLib.sol"; contract MyContract is ERC1155LazyMint, Drop1155 { /*////////////////////////////////////////////////////////////// Constructor //////////////////////////////////////////////////////////////*/ constructor() ERC1155LazyMint( 0x215db47f1B2ae03ec45024Cf62ce82879b137469, "MyContract", "MyContract", 0x215db47f1B2ae03ec45024Cf62ce82879b137469, 1000 ) {} /*////////////////////////////////////////////////////////////// Internal (overrideable) functions //////////////////////////////////////////////////////////////*/ /// @dev Collects and distributes the primary sale value of NFTs being claimed. function _collectPriceOnClaim( uint256 _tokenId, address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual override { if (_pricePerToken == 0) { return; } uint256 totalPrice = _quantityToClaim * _pricePerToken; if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { if (msg.value != totalPrice) { revert("Must send total price."); } } // address saleRecipient = _primarySaleRecipient; CurrencyTransferLib.transferCurrency(_currency, msg.sender, owner(), totalPrice); } /// @dev Transfers the tokens being claimed. function _transferTokensOnClaim(address _to, uint256 _tokenId, uint256 _quantityBeingClaimed) internal virtual override(Drop1155, ERC1155LazyMint) { _mint(_to, _tokenId, _quantityBeingClaimed, ""); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetClaimConditions() internal view virtual override returns (bool) { return msg.sender == owner(); } /// @dev Runs before every `claim` function call. function _beforeClaim( uint256 _tokenId, address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual override{} /// @dev Runs after every `claim` function call. function _afterClaim( uint256 _tokenId, address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual override {} // --- /// function evole() public { _burn(msg.sender, 0, 2); _mint(msg.sender, 1, 1, ""); } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IDrop1155.sol"; import "../lib/MerkleProof.sol"; abstract contract Drop1155 is IDrop1155 { /// @dev The sender is not authorized to perform the action error DropUnauthorized(); /// @dev Exceeded the max token total supply error DropExceedMaxSupply(); /// @dev No active claim condition error DropNoActiveCondition(); /// @dev Claim condition invalid currency or price error DropClaimInvalidTokenPrice( address expectedCurrency, uint256 expectedPricePerToken, address actualCurrency, uint256 actualExpectedPricePerToken ); /// @dev Claim condition exceeded limit error DropClaimExceedLimit(uint256 expected, uint256 actual); /// @dev Claim condition exceeded max supply error DropClaimExceedMaxSupply(uint256 expected, uint256 actual); /// @dev Claim condition not started yet error DropClaimNotStarted(uint256 expected, uint256 actual); /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev Mapping from token ID => the set of all claim conditions, at any given moment, for tokens of the token ID. mapping(uint256 => ClaimConditionList) public claimCondition; /*/////////////////////////////////////////////////////////////// Drop logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account claim tokens. function claim( address _receiver, uint256 _tokenId, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) public payable virtual override { _beforeClaim(_tokenId, _receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); uint256 activeConditionId = getActiveClaimConditionId(_tokenId); verifyClaim( activeConditionId, _dropMsgSender(), _tokenId, _quantity, _currency, _pricePerToken, _allowlistProof ); // Update contract state. claimCondition[_tokenId].conditions[activeConditionId].supplyClaimed += _quantity; claimCondition[_tokenId].supplyClaimedByWallet[activeConditionId][_dropMsgSender()] += _quantity; // If there's a price, collect price. _collectPriceOnClaim(_tokenId, address(0), _quantity, _currency, _pricePerToken); // Mint the relevant NFTs to claimer. _transferTokensOnClaim(_receiver, _tokenId, _quantity); emit TokensClaimed(activeConditionId, _dropMsgSender(), _receiver, _tokenId, _quantity); _afterClaim(_tokenId, _receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); } /// @dev Lets a contract admin set claim conditions. function setClaimConditions( uint256 _tokenId, ClaimCondition[] calldata _conditions, bool _resetClaimEligibility ) external virtual override { if (!_canSetClaimConditions()) { revert DropUnauthorized(); } ClaimConditionList storage conditionList = claimCondition[_tokenId]; uint256 existingStartIndex = conditionList.currentStartId; uint256 existingPhaseCount = conditionList.count; /** * The mapping `supplyClaimedByWallet` uses a claim condition's UID as a key. * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`, effectively resetting the restrictions on claims expressed * by `supplyClaimedByWallet`. */ uint256 newStartIndex = existingStartIndex; if (_resetClaimEligibility) { newStartIndex = existingStartIndex + existingPhaseCount; } conditionList.count = _conditions.length; conditionList.currentStartId = newStartIndex; uint256 lastConditionStartTimestamp; for (uint256 i = 0; i < _conditions.length; i++) { require(i == 0 || lastConditionStartTimestamp < _conditions[i].startTimestamp, "ST"); uint256 supplyClaimedAlready = conditionList.conditions[newStartIndex + i].supplyClaimed; if (supplyClaimedAlready > _conditions[i].maxClaimableSupply) { revert DropExceedMaxSupply(); } conditionList.conditions[newStartIndex + i] = _conditions[i]; conditionList.conditions[newStartIndex + i].supplyClaimed = supplyClaimedAlready; lastConditionStartTimestamp = _conditions[i].startTimestamp; } /** * Gas refunds (as much as possible) * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`. So, we delete claim conditions with UID < `newStartIndex`. * * If `_resetClaimEligibility == false`, and there are more existing claim conditions * than in `_conditions`, we delete the existing claim conditions that don't get replaced * by the conditions in `_conditions`. */ if (_resetClaimEligibility) { for (uint256 i = existingStartIndex; i < newStartIndex; i++) { delete conditionList.conditions[i]; } } else { if (existingPhaseCount > _conditions.length) { for (uint256 i = _conditions.length; i < existingPhaseCount; i++) { delete conditionList.conditions[newStartIndex + i]; } } } emit ClaimConditionsUpdated(_tokenId, _conditions, _resetClaimEligibility); } /// @dev Checks a request to claim NFTs against the active claim condition's criteria. function verifyClaim( uint256 _conditionId, address _claimer, uint256 _tokenId, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof ) public view virtual returns (bool isOverride) { ClaimCondition memory currentClaimPhase = claimCondition[_tokenId].conditions[_conditionId]; uint256 claimLimit = currentClaimPhase.quantityLimitPerWallet; uint256 claimPrice = currentClaimPhase.pricePerToken; address claimCurrency = currentClaimPhase.currency; /* * Here `isOverride` implies that if the merkle proof verification fails, * the claimer would claim through open claim limit instead of allowlisted limit. */ if (currentClaimPhase.merkleRoot != bytes32(0)) { (isOverride, ) = MerkleProof.verify( _allowlistProof.proof, currentClaimPhase.merkleRoot, keccak256( abi.encodePacked( _claimer, _allowlistProof.quantityLimitPerWallet, _allowlistProof.pricePerToken, _allowlistProof.currency ) ) ); } if (isOverride) { claimLimit = _allowlistProof.quantityLimitPerWallet != 0 ? _allowlistProof.quantityLimitPerWallet : claimLimit; claimPrice = _allowlistProof.pricePerToken != type(uint256).max ? _allowlistProof.pricePerToken : claimPrice; claimCurrency = _allowlistProof.pricePerToken != type(uint256).max && _allowlistProof.currency != address(0) ? _allowlistProof.currency : claimCurrency; } uint256 supplyClaimedByWallet = claimCondition[_tokenId].supplyClaimedByWallet[_conditionId][_claimer]; if (_currency != claimCurrency || _pricePerToken != claimPrice) { revert DropClaimInvalidTokenPrice(_currency, _pricePerToken, claimCurrency, claimPrice); } if (_quantity == 0 || (_quantity + supplyClaimedByWallet > claimLimit)) { revert DropClaimExceedLimit(claimLimit, _quantity + supplyClaimedByWallet); } if (currentClaimPhase.supplyClaimed + _quantity > currentClaimPhase.maxClaimableSupply) { revert DropClaimExceedMaxSupply( currentClaimPhase.maxClaimableSupply, currentClaimPhase.supplyClaimed + _quantity ); } if (currentClaimPhase.startTimestamp > block.timestamp) { revert DropClaimNotStarted(currentClaimPhase.startTimestamp, block.timestamp); } } /// @dev At any given moment, returns the uid for the active claim condition. function getActiveClaimConditionId(uint256 _tokenId) public view returns (uint256) { ClaimConditionList storage conditionList = claimCondition[_tokenId]; for (uint256 i = conditionList.currentStartId + conditionList.count; i > conditionList.currentStartId; i--) { if (block.timestamp >= conditionList.conditions[i - 1].startTimestamp) { return i - 1; } } revert DropNoActiveCondition(); } /// @dev Returns the claim condition at the given uid. function getClaimConditionById( uint256 _tokenId, uint256 _conditionId ) external view returns (ClaimCondition memory condition) { condition = claimCondition[_tokenId].conditions[_conditionId]; } /// @dev Returns the supply claimed by claimer for a given conditionId. function getSupplyClaimedByWallet( uint256 _tokenId, uint256 _conditionId, address _claimer ) public view returns (uint256 supplyClaimedByWallet) { supplyClaimedByWallet = claimCondition[_tokenId].supplyClaimedByWallet[_conditionId][_claimer]; } /*//////////////////////////////////////////////////////////////////// Optional hooks that can be implemented in the derived contract ///////////////////////////////////////////////////////////////////*/ /// @dev Exposes the ability to override the msg sender. function _dropMsgSender() internal virtual returns (address) { return msg.sender; } /// @dev Runs before every `claim` function call. function _beforeClaim( uint256 _tokenId, address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /// @dev Runs after every `claim` function call. function _afterClaim( uint256 _tokenId, address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /*/////////////////////////////////////////////////////////////// Virtual functions: to be implemented in derived contract //////////////////////////////////////////////////////////////*/ /// @dev Collects and distributes the primary sale value of NFTs being claimed. function _collectPriceOnClaim( uint256 _tokenId, address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual ; /// @dev Transfers the NFTs being claimed. function _transferTokensOnClaim(address _to, uint256 _tokenId, uint256 _quantityBeingClaimed) internal virtual; /// @dev Determine what wallet can update claim conditions function _canSetClaimConditions() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import { ERC1155 } from "../eip/ERC1155.sol"; import "../extension/ContractMetadata.sol"; import "../extension/Multicall.sol"; import "../extension/Ownable.sol"; import "../extension/Royalty.sol"; import "../extension/BatchMintMetadata.sol"; import "../extension/LazyMint.sol"; import "../extension/interface/IClaimableERC1155.sol"; import "../lib/Strings.sol"; import "../external-deps/openzeppelin/security/ReentrancyGuard.sol"; /** * BASE: ERC1155Base * EXTENSION: LazyMint * * The `ERC1155LazyMint` smart contract implements the ERC1155 NFT standard. * It includes the following additions to standard ERC1155 logic: * * - Lazy minting * * - Ability to mint NFTs via the provided `mintTo` and `batchMintTo` functions. * * - Contract metadata for royalty support on platforms such as OpenSea that use * off-chain information to distribute roaylties. * * - Ownership of the contract, with the ability to restrict certain functions to * only be called by the contract's owner. * * - Multicall capability to perform multiple actions atomically * * - EIP 2981 compliance for royalty support on NFT marketplaces. * * * The `ERC1155LazyMint` contract uses the `LazyMint` extension. * * 'Lazy minting' means defining the metadata of NFTs without minting it to an address. Regular 'minting' * of NFTs means actually assigning an owner to an NFT. * * As a contract admin, this lets you prepare the metadata for NFTs that will be minted by an external party, * without paying the gas cost for actually minting the NFTs. * */ contract ERC1155LazyMint is ERC1155, ContractMetadata, Ownable, Royalty, Multicall, BatchMintMetadata, LazyMint, IClaimableERC1155, ReentrancyGuard { using Strings for uint256; /*////////////////////////////////////////////////////////////// Mappings //////////////////////////////////////////////////////////////*/ /** * @notice Returns the total supply of NFTs of a given tokenId * @dev Mapping from tokenId => total circulating supply of NFTs of that tokenId. */ mapping(uint256 => uint256) public totalSupply; /*////////////////////////////////////////////////////////////// Constructor //////////////////////////////////////////////////////////////*/ /** * @notice Initializes the contract during construction. * * @param _defaultAdmin The default admin of the contract. * @param _name The name of the contract. * @param _symbol The symbol of the contract. * @param _royaltyRecipient The address to receive royalties. * @param _royaltyBps The royalty basis points to be charged. Max = 10000 (10000 = 100%, 1000 = 10%) */ constructor( address _defaultAdmin, string memory _name, string memory _symbol, address _royaltyRecipient, uint128 _royaltyBps ) ERC1155(_name, _symbol) { _setupOwner(_defaultAdmin); _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); } /*////////////////////////////////////////////////////////////// Overriden metadata logic //////////////////////////////////////////////////////////////*/ /** * @notice Returns the metadata URI for the given tokenId. * * @param _tokenId The tokenId of the NFT. * @return The metadata URI for the given tokenId. */ function uri(uint256 _tokenId) public view virtual override returns (string memory) { string memory batchUri = _getBaseURI(_tokenId); return string(abi.encodePacked(batchUri, _tokenId.toString())); } /*////////////////////////////////////////////////////////////// CLAIM LOGIC //////////////////////////////////////////////////////////////*/ /** * @notice Lets an address claim multiple lazy minted NFTs at once to a recipient. * This function prevents any reentrant calls, and is not allowed to be overridden. * * Contract creators should override `verifyClaim` and `transferTokensOnClaim` * functions to create custom logic for verification and claiming, * for e.g. price collection, allowlist, max quantity, etc. * * @dev The logic in `verifyClaim` determines whether the caller is authorized to mint NFTs. * The logic in `transferTokensOnClaim` does actual minting of tokens, * can also be used to apply other state changes. * * @param _receiver The recipient of the tokens to mint. * @param _tokenId The tokenId of the lazy minted NFT to mint. * @param _quantity The number of tokens to mint. */ function claim(address _receiver, uint256 _tokenId, uint256 _quantity) public payable virtual nonReentrant onlyOwner { require(_tokenId < nextTokenIdToMint(), "invalid id"); verifyClaim(msg.sender, _tokenId, _quantity); // Add your claim verification logic by overriding this function. _transferTokensOnClaim(_receiver, _tokenId, _quantity); // Mints tokens. Apply any state updates by overriding this function. emit TokensClaimed(msg.sender, _receiver, _tokenId, _quantity); } /** * @notice Override this function to add logic for claim verification, based on conditions * such as allowlist, price, max quantity etc. * * @dev Checks a request to claim NFTs against a custom condition. * * @param _claimer Caller of the claim function. * @param _tokenId The tokenId of the lazy minted NFT to mint. * @param _quantity The number of NFTs being claimed. */ function verifyClaim(address _claimer, uint256 _tokenId, uint256 _quantity) public view virtual {} /** * @notice Lets an owner or approved operator burn NFTs of the given tokenId. * * @param _owner The owner of the NFT to burn. * @param _tokenId The tokenId of the NFT to burn. * @param _amount The amount of the NFT to burn. */ function burn(address _owner, uint256 _tokenId, uint256 _amount) external virtual { address caller = msg.sender; require(caller == _owner || isApprovedForAll[_owner][caller], "Unapproved caller"); require(balanceOf[_owner][_tokenId] >= _amount, "Not enough tokens owned"); _burn(_owner, _tokenId, _amount); } /** * @notice Lets an owner or approved operator burn NFTs of the given tokenIds. * * @param _owner The owner of the NFTs to burn. * @param _tokenIds The tokenIds of the NFTs to burn. * @param _amounts The amounts of the NFTs to burn. */ function burnBatch(address _owner, uint256[] memory _tokenIds, uint256[] memory _amounts) external virtual { address caller = msg.sender; require(caller == _owner || isApprovedForAll[_owner][caller], "Unapproved caller"); require(_tokenIds.length == _amounts.length, "Length mismatch"); for (uint256 i = 0; i < _tokenIds.length; i += 1) { require(balanceOf[_owner][_tokenIds[i]] >= _amounts[i], "Not enough tokens owned"); } _burnBatch(_owner, _tokenIds, _amounts); } /*////////////////////////////////////////////////////////////// ERC165 Logic //////////////////////////////////////////////////////////////*/ /** * @dev See ERC165: https://eips.ethereum.org/EIPS/eip-165 * @inheritdoc IERC165 */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, IERC165) returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 interfaceId == 0xd9b67a26 || // ERC165 Interface ID for ERC1155 interfaceId == 0x0e89341c || // ERC165 Interface ID for ERC1155MetadataURI interfaceId == type(IERC2981).interfaceId; // ERC165 ID for ERC2981 } /*////////////////////////////////////////////////////////////// View functions //////////////////////////////////////////////////////////////*/ /// @notice The tokenId assigned to the next new NFT to be lazy minted. function nextTokenIdToMint() public view virtual returns (uint256) { return nextTokenIdToLazyMint; } /*////////////////////////////////////////////////////////////// Internal functions //////////////////////////////////////////////////////////////*/ /** * @notice Mints tokens to receiver on claim. * Any state changes related to `claim` must be applied * here by overriding this function. * * @dev Override this function to add logic for state updation. * When overriding, apply any state changes before `_mint`. * * @param _receiver The receiver of the tokens to mint. * @param _tokenId The tokenId of the lazy minted NFT to mint. * @param _quantity The number of tokens to mint. */ function _transferTokensOnClaim(address _receiver, uint256 _tokenId, uint256 _quantity) internal virtual { _mint(_receiver, _tokenId, _quantity, ""); } /// @dev Returns whether lazy minting can be done in the given execution context. function _canLazyMint() internal view virtual override returns (bool) { return msg.sender == owner(); } /// @dev Returns whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view virtual override returns (bool) { return msg.sender == owner(); } /// @dev Returns whether owner can be set in the given execution context. function _canSetOwner() internal view virtual override returns (bool) { return msg.sender == owner(); } /// @dev Returns whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view virtual override returns (bool) { return msg.sender == owner(); } /** * @dev Runs before every token transfer / mint / burn. * * @param operator The address performing the token transfer. * @param from The address from which the token is being transferred. * @param to The address to which the token is being transferred. * @param ids The tokenIds of the tokens being transferred. * @param amounts The amounts of the tokens being transferred. * @param data Any additional data being passed in the token transfer. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { totalSupply[ids[i]] -= amounts[i]; } } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb // Helper interfaces import { IWETH } from "../infra/interface/IWETH.sol"; import { SafeERC20, IERC20 } from "../external-deps/openzeppelin/token/ERC20/utils/SafeERC20.sol"; library CurrencyTransferLib { using SafeERC20 for IERC20; error CurrencyTransferLibMismatchedValue(uint256 expected, uint256 actual); error CurrencyTransferLibFailedNativeTransfer(address recipient, uint256 value); /// @dev The address interpreted as native token of the chain. address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Transfers a given amount of currency. function transferCurrency(address _currency, address _from, address _to, uint256 _amount) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { safeTransferNativeToken(_to, _amount); } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfers a given amount of currency. (With native token wrapping) function transferCurrencyWithWrapper( address _currency, address _from, address _to, uint256 _amount, address _nativeTokenWrapper ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { if (_from == address(this)) { // withdraw from weth then transfer withdrawn native token to recipient IWETH(_nativeTokenWrapper).withdraw(_amount); safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } else if (_to == address(this)) { // store native currency in weth if (_amount != msg.value) { revert CurrencyTransferLibMismatchedValue(msg.value, _amount); } IWETH(_nativeTokenWrapper).deposit{ value: _amount }(); } else { safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfer `amount` of ERC20 token from `from` to `to`. function safeTransferERC20(address _currency, address _from, address _to, uint256 _amount) internal { if (_from == _to) { return; } if (_from == address(this)) { IERC20(_currency).safeTransfer(_to, _amount); } else { IERC20(_currency).safeTransferFrom(_from, _to, _amount); } } /// @dev Transfers `amount` of native token to `to`. function safeTransferNativeToken(address to, uint256 value) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { revert CurrencyTransferLibFailedNativeTransfer(to, value); } } /// @dev Transfers `amount` of native token to `to`. (With native token wrapping) function safeTransferNativeTokenWithWrapper(address to, uint256 value, address _nativeTokenWrapper) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { IWETH(_nativeTokenWrapper).deposit{ value: value }(); IERC20(_nativeTokenWrapper).safeTransfer(to, value); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IClaimConditionMultiPhase.sol"; /** * The interface `IDrop1155` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IDrop1155 is IClaimConditionMultiPhase { /** * @param proof Proof of concerned wallet's inclusion in an allowlist. * @param quantityLimitPerWallet The total quantity of tokens the allowlisted wallet is eligible to claim over time. * @param pricePerToken The price per token the allowlisted wallet must pay to claim tokens. * @param currency The currency in which the allowlisted wallet must pay the price for claiming tokens. */ struct AllowlistProof { bytes32[] proof; uint256 quantityLimitPerWallet; uint256 pricePerToken; address currency; } /// @notice Emitted when tokens are claimed. event TokensClaimed( uint256 indexed claimConditionIndex, address indexed claimer, address indexed receiver, uint256 tokenId, uint256 quantityClaimed ); /// @notice Emitted when the contract's claim conditions are updated. event ClaimConditionsUpdated(uint256 indexed tokenId, ClaimCondition[] claimConditions, bool resetEligibility); /** * @notice Lets an account claim a given quantity of NFTs. * * @param receiver The receiver of the NFTs to claim. * @param tokenId The tokenId of the NFT to claim. * @param quantity The quantity of NFTs to claim. * @param currency The currency in which to pay for the claim. * @param pricePerToken The price per token to pay for the claim. * @param allowlistProof The proof of the claimer's inclusion in the merkle root allowlist * of the claim conditions that apply. * @param data Arbitrary bytes data that can be leveraged in the implementation of this interface. */ function claim( address receiver, uint256 tokenId, uint256 quantity, address currency, uint256 pricePerToken, AllowlistProof calldata allowlistProof, bytes memory data ) external payable; /** * @notice Lets a contract admin (account with `DEFAULT_ADMIN_ROLE`) set claim conditions. * * @param tokenId The token ID for which to set mint conditions. * @param phases Claim conditions in ascending order by `startTimestamp`. * * @param resetClaimEligibility Whether to honor the restrictions applied to wallets who have claimed tokens in the current conditions, * in the new claim conditions being set. * */ function setClaimConditions(uint256 tokenId, ClaimCondition[] calldata phases, bool resetClaimEligibility) external; }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author OpenZeppelin, thirdweb library MerkleProof { function verify(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool, uint256) { bytes32 computedHash = leaf; uint256 index = 0; for (uint256 i = 0; i < proof.length; i++) { index *= 2; bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); index += 1; } } // Check if the computed hash (root) is equal to the provided root return (computedHash == root, index); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; import "./interface/IERC1155.sol"; import "./interface/IERC1155Metadata.sol"; import "./interface/IERC1155Receiver.sol"; contract ERC1155 is IERC1155, IERC1155Metadata { /*////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ string public name; string public symbol; /*////////////////////////////////////////////////////////////// Mappings //////////////////////////////////////////////////////////////*/ mapping(address => mapping(uint256 => uint256)) public balanceOf; mapping(address => mapping(address => bool)) public isApprovedForAll; mapping(uint256 => string) internal _uri; /*////////////////////////////////////////////////////////////// Constructor //////////////////////////////////////////////////////////////*/ constructor(string memory _name, string memory _symbol) { name = _name; symbol = _symbol; } /*////////////////////////////////////////////////////////////// View functions //////////////////////////////////////////////////////////////*/ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 interfaceId == 0xd9b67a26 || // ERC165 Interface ID for ERC1155 interfaceId == 0x0e89341c; // ERC165 Interface ID for ERC1155MetadataURI } function uri(uint256 tokenId) public view virtual override returns (string memory) { return _uri[tokenId]; } function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "LENGTH_MISMATCH"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf[accounts[i]][ids[i]]; } return batchBalances; } /*////////////////////////////////////////////////////////////// ERC1155 logic //////////////////////////////////////////////////////////////*/ function setApprovalForAll(address operator, bool approved) public virtual override { address owner = msg.sender; require(owner != operator, "APPROVING_SELF"); isApprovedForAll[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require(from == msg.sender || isApprovedForAll[from][msg.sender], "!OWNER_OR_APPROVED"); _safeTransferFrom(from, to, id, amount, data); } function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require(from == msg.sender || isApprovedForAll[from][msg.sender], "!OWNER_OR_APPROVED"); _safeBatchTransferFrom(from, to, ids, amounts, data); } /*////////////////////////////////////////////////////////////// Internal logic //////////////////////////////////////////////////////////////*/ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "TO_ZERO_ADDR"); address operator = msg.sender; _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = balanceOf[from][id]; require(fromBalance >= amount, "INSUFFICIENT_BAL"); unchecked { balanceOf[from][id] = fromBalance - amount; } balanceOf[to][id] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "LENGTH_MISMATCH"); require(to != address(0), "TO_ZERO_ADDR"); address operator = msg.sender; _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = balanceOf[from][id]; require(fromBalance >= amount, "INSUFFICIENT_BAL"); unchecked { balanceOf[from][id] = fromBalance - amount; } balanceOf[to][id] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } function _setTokenURI(uint256 tokenId, string memory newuri) internal virtual { _uri[tokenId] = newuri; } function _mint(address to, uint256 id, uint256 amount, bytes memory data) internal virtual { require(to != address(0), "TO_ZERO_ADDR"); address operator = msg.sender; _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); balanceOf[to][id] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "TO_ZERO_ADDR"); require(ids.length == amounts.length, "LENGTH_MISMATCH"); address operator = msg.sender; _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { balanceOf[to][ids[i]] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } function _burn(address from, uint256 id, uint256 amount) internal virtual { require(from != address(0), "FROM_ZERO_ADDR"); address operator = msg.sender; _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = balanceOf[from][id]; require(fromBalance >= amount, "INSUFFICIENT_BAL"); unchecked { balanceOf[from][id] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } function _burnBatch(address from, uint256[] memory ids, uint256[] memory amounts) internal virtual { require(from != address(0), "FROM_ZERO_ADDR"); require(ids.length == amounts.length, "LENGTH_MISMATCH"); address operator = msg.sender; _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = balanceOf[from][id]; require(fromBalance >= amount, "INSUFFICIENT_BAL"); unchecked { balanceOf[from][id] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.code.length > 0) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("TOKENS_REJECTED"); } } catch Error(string memory reason) { revert(reason); } catch { revert("!ERC1155RECEIVER"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.code.length > 0) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("TOKENS_REJECTED"); } } catch Error(string memory reason) { revert(reason); } catch { revert("!ERC1155RECEIVER"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IContractMetadata.sol"; /** * @title Contract Metadata * @notice Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ abstract contract ContractMetadata is IContractMetadata { /// @dev The sender is not authorized to perform the action error ContractMetadataUnauthorized(); /// @notice Returns the contract metadata URI. string public override contractURI; /** * @notice Lets a contract admin set the URI for contract-level metadata. * @dev Caller should be authorized to setup contractURI, e.g. contract admin. * See {_canSetContractURI}. * Emits {ContractURIUpdated Event}. * * @param _uri keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function setContractURI(string memory _uri) external override { if (!_canSetContractURI()) { revert ContractMetadataUnauthorized(); } _setupContractURI(_uri); } /// @dev Lets a contract admin set the URI for contract-level metadata. function _setupContractURI(string memory _uri) internal { string memory prevURI = contractURI; contractURI = _uri; emit ContractURIUpdated(prevURI, _uri); } /// @dev Returns whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author thirdweb import "../lib/Address.sol"; import "./interface/IMulticall.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ contract Multicall is IMulticall { /** * @notice Receives and executes a batch of function calls on this contract. * @dev Receives and executes a batch of function calls on this contract. * * @param data The bytes data that makes up the batch of function calls to execute. * @return results The bytes data that makes up the result of the batch of function calls executed. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results) { results = new bytes[](data.length); address sender = _msgSender(); bool isForwarder = msg.sender != sender; for (uint256 i = 0; i < data.length; i++) { if (isForwarder) { results[i] = Address.functionDelegateCall(address(this), abi.encodePacked(data[i], sender)); } else { results[i] = Address.functionDelegateCall(address(this), data[i]); } } return results; } /// @notice Returns the sender in the given execution context. function _msgSender() internal view virtual returns (address) { return msg.sender; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IOwnable.sol"; /** * @title Ownable * @notice Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ abstract contract Ownable is IOwnable { /// @dev The sender is not authorized to perform the action error OwnableUnauthorized(); /// @dev Owner of the contract (purpose: OpenSea compatibility) address private _owner; /// @dev Reverts if caller is not the owner. modifier onlyOwner() { if (msg.sender != _owner) { revert OwnableUnauthorized(); } _; } /** * @notice Returns the owner of the contract. */ function owner() public view override returns (address) { return _owner; } /** * @notice Lets an authorized wallet set a new owner for the contract. * @param _newOwner The address to set as the new owner of the contract. */ function setOwner(address _newOwner) external override { if (!_canSetOwner()) { revert OwnableUnauthorized(); } _setupOwner(_newOwner); } /// @dev Lets a contract admin set a new owner for the contract. The new owner must be a contract admin. function _setupOwner(address _newOwner) internal { address _prevOwner = _owner; _owner = _newOwner; emit OwnerUpdated(_prevOwner, _newOwner); } /// @dev Returns whether owner can be set in the given execution context. function _canSetOwner() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IRoyalty.sol"; /** * @title Royalty * @notice Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic * that uses information about royalty fees, if desired. * * @dev The `Royalty` contract is ERC2981 compliant. */ abstract contract Royalty is IRoyalty { /// @dev The sender is not authorized to perform the action error RoyaltyUnauthorized(); /// @dev The recipient is invalid error RoyaltyInvalidRecipient(address recipient); /// @dev The fee bps exceeded the max value error RoyaltyExceededMaxFeeBps(uint256 max, uint256 actual); /// @dev The (default) address that receives all royalty value. address private royaltyRecipient; /// @dev The (default) % of a sale to take as royalty (in basis points). uint16 private royaltyBps; /// @dev Token ID => royalty recipient and bps for token mapping(uint256 => RoyaltyInfo) private royaltyInfoForToken; /** * @notice View royalty info for a given token and sale price. * @dev Returns royalty amount and recipient for `tokenId` and `salePrice`. * @param tokenId The tokenID of the NFT for which to query royalty info. * @param salePrice Sale price of the token. * * @return receiver Address of royalty recipient account. * @return royaltyAmount Royalty amount calculated at current royaltyBps value. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view virtual override returns (address receiver, uint256 royaltyAmount) { (address recipient, uint256 bps) = getRoyaltyInfoForToken(tokenId); receiver = recipient; royaltyAmount = (salePrice * bps) / 10_000; } /** * @notice View royalty info for a given token. * @dev Returns royalty recipient and bps for `_tokenId`. * @param _tokenId The tokenID of the NFT for which to query royalty info. */ function getRoyaltyInfoForToken(uint256 _tokenId) public view override returns (address, uint16) { RoyaltyInfo memory royaltyForToken = royaltyInfoForToken[_tokenId]; return royaltyForToken.recipient == address(0) ? (royaltyRecipient, uint16(royaltyBps)) : (royaltyForToken.recipient, uint16(royaltyForToken.bps)); } /** * @notice Returns the defualt royalty recipient and BPS for this contract's NFTs. */ function getDefaultRoyaltyInfo() external view override returns (address, uint16) { return (royaltyRecipient, uint16(royaltyBps)); } /** * @notice Updates default royalty recipient and bps. * @dev Caller should be authorized to set royalty info. * See {_canSetRoyaltyInfo}. * Emits {DefaultRoyalty Event}; See {_setupDefaultRoyaltyInfo}. * * @param _royaltyRecipient Address to be set as default royalty recipient. * @param _royaltyBps Updated royalty bps. */ function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external override { if (!_canSetRoyaltyInfo()) { revert RoyaltyUnauthorized(); } _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); } /// @dev Lets a contract admin update the default royalty recipient and bps. function _setupDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) internal { if (_royaltyBps > 10_000) { revert RoyaltyExceededMaxFeeBps(10_000, _royaltyBps); } royaltyRecipient = _royaltyRecipient; royaltyBps = uint16(_royaltyBps); emit DefaultRoyalty(_royaltyRecipient, _royaltyBps); } /** * @notice Updates default royalty recipient and bps for a particular token. * @dev Sets royalty info for `_tokenId`. Caller should be authorized to set royalty info. * See {_canSetRoyaltyInfo}. * Emits {RoyaltyForToken Event}; See {_setupRoyaltyInfoForToken}. * * @param _recipient Address to be set as royalty recipient for given token Id. * @param _bps Updated royalty bps for the token Id. */ function setRoyaltyInfoForToken(uint256 _tokenId, address _recipient, uint256 _bps) external override { if (!_canSetRoyaltyInfo()) { revert RoyaltyUnauthorized(); } _setupRoyaltyInfoForToken(_tokenId, _recipient, _bps); } /// @dev Lets a contract admin set the royalty recipient and bps for a particular token Id. function _setupRoyaltyInfoForToken(uint256 _tokenId, address _recipient, uint256 _bps) internal { if (_bps > 10_000) { revert RoyaltyExceededMaxFeeBps(10_000, _bps); } royaltyInfoForToken[_tokenId] = RoyaltyInfo({ recipient: _recipient, bps: _bps }); emit RoyaltyForToken(_tokenId, _recipient, _bps); } /// @dev Returns whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @title Batch-mint Metadata * @notice The `BatchMintMetadata` is a contract extension for any base NFT contract. It lets the smart contract * using this extension set metadata for `n` number of NFTs all at once. This is enabled by storing a single * base URI for a batch of `n` NFTs, where the metadata for each NFT in a relevant batch is `baseURI/tokenId`. */ contract BatchMintMetadata { /// @dev Invalid index for batch error BatchMintInvalidBatchId(uint256 index); /// @dev Invalid token error BatchMintInvalidTokenId(uint256 tokenId); /// @dev Metadata frozen error BatchMintMetadataFrozen(uint256 batchId); /// @dev Largest tokenId of each batch of tokens with the same baseURI + 1 {ex: batchId 100 at position 0 includes tokens 0-99} uint256[] private batchIds; /// @dev Mapping from id of a batch of tokens => to base URI for the respective batch of tokens. mapping(uint256 => string) private baseURI; /// @dev Mapping from id of a batch of tokens => to whether the base URI for the respective batch of tokens is frozen. mapping(uint256 => bool) public batchFrozen; /// @dev This event emits when the metadata of all tokens are frozen. /// While not currently supported by marketplaces, this event allows /// future indexing if desired. event MetadataFrozen(); // @dev This event emits when the metadata of a range of tokens is updated. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); /** * @notice Returns the count of batches of NFTs. * @dev Each batch of tokens has an in ID and an associated `baseURI`. * See {batchIds}. */ function getBaseURICount() public view returns (uint256) { return batchIds.length; } /** * @notice Returns the ID for the batch of tokens at the given index. * @dev See {getBaseURICount}. * @param _index Index of the desired batch in batchIds array. */ function getBatchIdAtIndex(uint256 _index) public view returns (uint256) { if (_index >= getBaseURICount()) { revert BatchMintInvalidBatchId(_index); } return batchIds[_index]; } /// @dev Returns the id for the batch of tokens the given tokenId belongs to. function _getBatchId(uint256 _tokenId) internal view returns (uint256 batchId, uint256 index) { uint256 numOfTokenBatches = getBaseURICount(); uint256[] memory indices = batchIds; for (uint256 i = 0; i < numOfTokenBatches; i += 1) { if (_tokenId < indices[i]) { index = i; batchId = indices[i]; return (batchId, index); } } revert BatchMintInvalidTokenId(_tokenId); } /// @dev Returns the baseURI for a token. The intended metadata URI for the token is baseURI + tokenId. function _getBaseURI(uint256 _tokenId) internal view returns (string memory) { uint256 numOfTokenBatches = getBaseURICount(); uint256[] memory indices = batchIds; for (uint256 i = 0; i < numOfTokenBatches; i += 1) { if (_tokenId < indices[i]) { return baseURI[indices[i]]; } } revert BatchMintInvalidTokenId(_tokenId); } /// @dev returns the starting tokenId of a given batchId. function _getBatchStartId(uint256 _batchID) internal view returns (uint256) { uint256 numOfTokenBatches = getBaseURICount(); uint256[] memory indices = batchIds; for (uint256 i = 0; i < numOfTokenBatches; i++) { if (_batchID == indices[i]) { if (i > 0) { return indices[i - 1]; } return 0; } } revert BatchMintInvalidBatchId(_batchID); } /// @dev Sets the base URI for the batch of tokens with the given batchId. function _setBaseURI(uint256 _batchId, string memory _baseURI) internal { if (batchFrozen[_batchId]) { revert BatchMintMetadataFrozen(_batchId); } baseURI[_batchId] = _baseURI; emit BatchMetadataUpdate(_getBatchStartId(_batchId), _batchId); } /// @dev Freezes the base URI for the batch of tokens with the given batchId. function _freezeBaseURI(uint256 _batchId) internal { string memory baseURIForBatch = baseURI[_batchId]; if (bytes(baseURIForBatch).length == 0) { revert BatchMintInvalidBatchId(_batchId); } batchFrozen[_batchId] = true; emit MetadataFrozen(); } /// @dev Mints a batch of tokenIds and associates a common baseURI to all those Ids. function _batchMintMetadata( uint256 _startId, uint256 _amountToMint, string memory _baseURIForTokens ) internal returns (uint256 nextTokenIdToMint, uint256 batchId) { batchId = _startId + _amountToMint; nextTokenIdToMint = batchId; batchIds.push(batchId); baseURI[batchId] = _baseURIForTokens; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/ILazyMint.sol"; import "./BatchMintMetadata.sol"; /** * The `LazyMint` is a contract extension for any base NFT contract. It lets you 'lazy mint' any number of NFTs * at once. Here, 'lazy mint' means defining the metadata for particular tokenIds of your NFT contract, without actually * minting a non-zero balance of NFTs of those tokenIds. */ abstract contract LazyMint is ILazyMint, BatchMintMetadata { /// @dev The sender is not authorized to perform the action error LazyMintUnauthorized(); error LazyMintInvalidAmount(); /// @notice The tokenId assigned to the next new NFT to be lazy minted. uint256 internal nextTokenIdToLazyMint; /** * @notice Lets an authorized address lazy mint a given amount of NFTs. * * @param _amount The number of NFTs to lazy mint. * @param _baseURIForTokens The base URI for the 'n' number of NFTs being lazy minted, where the metadata for each * of those NFTs is `${baseURIForTokens}/${tokenId}`. * @param _data Additional bytes data to be used at the discretion of the consumer of the contract. * @return batchId A unique integer identifier for the batch of NFTs lazy minted together. */ function lazyMint( uint256 _amount, string calldata _baseURIForTokens, bytes calldata _data ) public virtual override returns (uint256 batchId) { if (!_canLazyMint()) { revert LazyMintUnauthorized(); } if (_amount == 0) { revert LazyMintInvalidAmount(); } uint256 startId = nextTokenIdToLazyMint; (nextTokenIdToLazyMint, batchId) = _batchMintMetadata(startId, _amount, _baseURIForTokens); emit TokensLazyMinted(startId, startId + _amount - 1, _baseURIForTokens, _data); return batchId; } /// @dev Returns whether lazy minting can be performed in the given execution context. function _canLazyMint() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb interface IClaimableERC1155 { /// @dev Emitted when tokens are claimed event TokensClaimed( address indexed claimer, address indexed receiver, uint256 indexed tokenId, uint256 quantityClaimed ); /** * @notice Lets an address claim multiple lazy minted NFTs at once to a recipient. * Contract creators should override this function to create custom logic for claiming, * for e.g. price collection, allowlist, max quantity, etc. * * @dev The logic in the `verifyClaim` function determines whether the caller is authorized to mint NFTs. * * @param _receiver The recipient of the tokens to mint. * @param _tokenId The tokenId of the lazy minted NFT to mint. * @param _quantity The number of tokens to mint. */ function claim(address _receiver, uint256 _tokenId, uint256 _quantity) external payable; /** * @notice Override this function to add logic for claim verification, based on conditions * such as allowlist, price, max quantity etc. * * @dev Checks a request to claim NFTs against a custom condition. * * @param _claimer Caller of the claim function. * @param _tokenId The tokenId of the lazy minted NFT to mint. * @param _quantity The number of NFTs being claimed. */ function verifyClaim(address _claimer, uint256 _tokenId, uint256 _quantity) external view; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x", encoded using 2 hexadecimal digits per byte, /// and the alphabets are capitalized conditionally according to /// https://eips.ethereum.org/EIPS/eip-55 function toHexStringChecksummed(address value) internal pure returns (string memory str) { str = toHexString(value); /// @solidity memory-safe-assembly assembly { let mask := shl(6, div(not(0), 255)) // `0b010000000100000000 ...` let o := add(str, 0x22) let hashed := and(keccak256(o, 40), mul(34, mask)) // `0b10001000 ... ` let t := shl(240, 136) // `0b10001000 << 240` for { let i := 0 } 1 { } { mstore(add(i, i), mul(t, byte(i, hashed))) i := add(i, 1) if eq(i, 20) { break } } mstore(o, xor(mload(o), shr(1, and(mload(0x00), and(mload(o), mask))))) o := add(o, 0x20) mstore(o, xor(mload(o), shr(1, and(mload(0x20), and(mload(o), mask))))) } } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x" and encoded using 2 hexadecimal digits per byte. function toHexString(address value) internal pure returns (string memory str) { str = toHexStringNoPrefix(value); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hexadecimal representation of `value`. /// The output is encoded using 2 hexadecimal digits per byte. function toHexStringNoPrefix(address value) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { str := mload(0x40) // Allocate the memory. // We need 0x20 bytes for the trailing zeros padding, 0x20 bytes for the length, // 0x02 bytes for the prefix, and 0x28 bytes for the digits. // The next multiple of 0x20 above (0x20 + 0x20 + 0x02 + 0x28) is 0x80. mstore(0x40, add(str, 0x80)) // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) str := add(str, 2) mstore(str, 40) let o := add(str, 0x20) mstore(add(o, 40), 0) value := shl(96, value) // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. for { let i := 0 } 1 { } { let p := add(o, add(i, i)) let temp := byte(i, value) mstore8(add(p, 1), mload(and(temp, 15))) mstore8(p, mload(shr(4, temp))) i := add(i, 1) if eq(i, 20) { break } } } } /// @dev Returns the hex encoded string from the raw bytes. /// The output is encoded using 2 hexadecimal digits per byte. function toHexString(bytes memory raw) internal pure returns (string memory str) { str = toHexStringNoPrefix(raw); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hex encoded string from the raw bytes. /// The output is encoded using 2 hexadecimal digits per byte. function toHexStringNoPrefix(bytes memory raw) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { let length := mload(raw) str := add(mload(0x40), 2) // Skip 2 bytes for the optional prefix. mstore(str, add(length, length)) // Store the length of the output. // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) let o := add(str, 0x20) let end := add(raw, length) for { } iszero(eq(raw, end)) { } { raw := add(raw, 1) mstore8(add(o, 1), mload(and(mload(raw), 15))) mstore8(o, mload(and(shr(4, mload(raw)), 15))) o := add(o, 2) } mstore(o, 0) // Zeroize the slot after the string. mstore(0x40, add(o, 0x20)) // Allocate the memory. } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../../../../../eip/interface/IERC20.sol"; import { Address } from "../../../../../lib/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IClaimCondition.sol"; /** * The interface `IClaimConditionMultiPhase` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimConditionMultiPhase is IClaimCondition { /** * @notice The set of all claim conditions, at any given moment. * Claim Phase ID = [currentStartId, currentStartId + length - 1]; * * @param currentStartId The uid for the first claim condition amongst the current set of * claim conditions. The uid for each next claim condition is one * more than the previous claim condition's uid. * * @param count The total number of phases / claim conditions in the list * of claim conditions. * * @param conditions The claim conditions at a given uid. Claim conditions * are ordered in an ascending order by their `startTimestamp`. * * @param supplyClaimedByWallet Map from a claim condition uid and account to supply claimed by account. */ struct ClaimConditionList { uint256 currentStartId; uint256 count; mapping(uint256 => ClaimCondition) conditions; mapping(uint256 => mapping(address => uint256)) supplyClaimedByWallet; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** @title ERC-1155 Multi Token Standard @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md Note: The ERC-165 identifier for this interface is 0xd9b67a26. */ interface IERC1155 { /** @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard). The `_operator` argument MUST be msg.sender. The `_from` argument MUST be the address of the holder whose balance is decreased. The `_to` argument MUST be the address of the recipient whose balance is increased. The `_id` argument MUST be the token type being transferred. The `_value` argument MUST be the number of tokens the holder balance is decreased by and match what the recipient balance is increased by. When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address). When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address). */ event TransferSingle( address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _value ); /** @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard). The `_operator` argument MUST be msg.sender. The `_from` argument MUST be the address of the holder whose balance is decreased. The `_to` argument MUST be the address of the recipient whose balance is increased. The `_ids` argument MUST be the list of tokens being transferred. The `_values` argument MUST be the list of number of tokens (matching the list and order of tokens specified in _ids) the holder balance is decreased by and match what the recipient balance is increased by. When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address). When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address). */ event TransferBatch( address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _values ); /** @dev MUST emit when approval for a second party/operator address to manage all tokens for an owner address is enabled or disabled (absense of an event assumes disabled). */ event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved); /** @dev MUST emit when the URI is updated for a token ID. URIs are defined in RFC 3986. The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema". */ event URI(string _value, uint256 indexed _id); /** @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call). @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard). MUST revert if `_to` is the zero address. MUST revert if balance of holder for token `_id` is lower than the `_value` sent. MUST revert on any other error. MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard). After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard). @param _from Source address @param _to Target address @param _id ID of the token type @param _value Transfer amount @param _data Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to` */ function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external; /** @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call). @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard). MUST revert if `_to` is the zero address. MUST revert if length of `_ids` is not the same as length of `_values`. MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient. MUST revert on any other error. MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard). Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc). After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard). @param _from Source address @param _to Target address @param _ids IDs of each token type (order and length must match _values array) @param _values Transfer amounts per token type (order and length must match _ids array) @param _data Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to` */ function safeBatchTransferFrom( address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data ) external; /** @notice Get the balance of an account's Tokens. @param _owner The address of the token holder @param _id ID of the Token @return The _owner's balance of the Token type requested */ function balanceOf(address _owner, uint256 _id) external view returns (uint256); /** @notice Get the balance of multiple account/token pairs @param _owners The addresses of the token holders @param _ids ID of the Tokens @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair) */ function balanceOfBatch( address[] calldata _owners, uint256[] calldata _ids ) external view returns (uint256[] memory); /** @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens. @dev MUST emit the ApprovalForAll event on success. @param _operator Address to add to the set of authorized operators @param _approved True if the operator is approved, false to revoke approval */ function setApprovalForAll(address _operator, bool _approved) external; /** @notice Queries the approval status of an operator for a given owner. @param _owner The owner of the Tokens @param _operator Address of authorized operator @return True if the operator is approved, false if not */ function isApprovedForAll(address _owner, address _operator) external view returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** Note: The ERC-165 identifier for this interface is 0x0e89341c. */ interface IERC1155Metadata { /** @notice A distinct Uniform Resource Identifier (URI) for a given token. @dev URIs are defined in RFC 3986. The URI may point to a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema". @return URI string */ function uri(uint256 _id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ interface IContractMetadata { /// @dev Returns the metadata URI of the contract. function contractURI() external view returns (string memory); /** * @dev Sets contract URI for the storefront-level metadata of the contract. * Only module admin can call this function. */ function setContractURI(string calldata _uri) external; /// @dev Emitted when the contract URI is updated. event ContractURIUpdated(string prevURI, string newURI); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.1; /// @author thirdweb, OpenZeppelin Contracts (v4.9.0) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://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.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{ value: value }(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author thirdweb /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ interface IMulticall { /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ interface IOwnable { /// @dev Returns the owner of the contract. function owner() external view returns (address); /// @dev Lets a module admin set a new owner for the contract. The new owner must be a module admin. function setOwner(address _newOwner) external; /// @dev Emitted when a new Owner is set. event OwnerUpdated(address indexed prevOwner, address indexed newOwner); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "../../eip/interface/IERC2981.sol"; /** * Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic * that uses information about royalty fees, if desired. * * The `Royalty` contract is ERC2981 compliant. */ interface IRoyalty is IERC2981 { struct RoyaltyInfo { address recipient; uint256 bps; } /// @dev Returns the royalty recipient and fee bps. function getDefaultRoyaltyInfo() external view returns (address, uint16); /// @dev Lets a module admin update the royalty bps and recipient. function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external; /// @dev Lets a module admin set the royalty recipient for a particular token Id. function setRoyaltyInfoForToken(uint256 tokenId, address recipient, uint256 bps) external; /// @dev Returns the royalty recipient for a particular token Id. function getRoyaltyInfoForToken(uint256 tokenId) external view returns (address, uint16); /// @dev Emitted when royalty info is updated. event DefaultRoyalty(address indexed newRoyaltyRecipient, uint256 newRoyaltyBps); /// @dev Emitted when royalty recipient for tokenId is set event RoyaltyForToken(uint256 indexed tokenId, address indexed royaltyRecipient, uint256 royaltyBps); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `LazyMint` is a contract extension for any base NFT contract. It lets you 'lazy mint' any number of NFTs * at once. Here, 'lazy mint' means defining the metadata for particular tokenIds of your NFT contract, without actually * minting a non-zero balance of NFTs of those tokenIds. */ interface ILazyMint { /// @dev Emitted when tokens are lazy minted. event TokensLazyMinted(uint256 indexed startTokenId, uint256 endTokenId, string baseURI, bytes encryptedBaseURI); /** * @notice Lazy mints a given amount of NFTs. * * @param amount The number of NFTs to lazy mint. * * @param baseURIForTokens The base URI for the 'n' number of NFTs being lazy minted, where the metadata for each * of those NFTs is `${baseURIForTokens}/${tokenId}`. * * @param extraData Additional bytes data to be used at the discretion of the consumer of the contract. * * @return batchId A unique integer identifier for the batch of NFTs lazy minted together. */ function lazyMint( uint256 amount, string calldata baseURIForTokens, bytes calldata extraData ) external returns (uint256 batchId); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * The interface `IClaimCondition` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimCondition { /** * @notice The criteria that make up a claim condition. * * @param startTimestamp The unix timestamp after which the claim condition applies. * The same claim condition applies until the `startTimestamp` * of the next claim condition. * * @param maxClaimableSupply The maximum total number of tokens that can be claimed under * the claim condition. * * @param supplyClaimed At any given point, the number of tokens that have been claimed * under the claim condition. * * @param quantityLimitPerWallet The maximum number of tokens that can be claimed by a wallet. * * @param merkleRoot The allowlist of addresses that can claim tokens under the claim * condition. * * @param pricePerToken The price required to pay per token claimed. * * @param currency The currency in which the `pricePerToken` must be paid. * * @param metadata Claim condition metadata. */ struct ClaimCondition { uint256 startTimestamp; uint256 maxClaimableSupply; uint256 supplyClaimed; uint256 quantityLimitPerWallet; bytes32 merkleRoot; uint256 pricePerToken; address currency; string metadata; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * [EIP](https://eips.ethereum.org/EIPS/eip-165). * * 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 * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * 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: Apache 2.0 pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@openzeppelin/=lib/openzeppelin-contracts/", "@thirdweb-dev/=lib/contracts/", "@chainlink/=lib/contracts/lib/chainlink/", "@ds-test/=lib/contracts/lib/ds-test/src/", "@seaport/=lib/contracts/lib/seaport/contracts/", "@solady/=lib/contracts/lib/solady/", "@std/=lib/contracts/lib/forge-std/src/", "contracts/=lib/contracts/contracts/", "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "erc721a-upgradeable/=lib/contracts/lib/ERC721A-Upgradeable/", "erc721a/=lib/contracts/lib/ERC721A/", "forge-std/=lib/forge-std/src/", "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", "lib/sstore2/=lib/contracts/lib/dynamic-contracts/lib/sstore2/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "seaport-core/=lib/contracts/lib/seaport/lib/seaport-core/", "seaport-types/=lib/contracts/lib/seaport/lib/seaport-types/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"BatchMintInvalidBatchId","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BatchMintInvalidTokenId","type":"error"},{"inputs":[{"internalType":"uint256","name":"batchId","type":"uint256"}],"name":"BatchMintMetadataFrozen","type":"error"},{"inputs":[],"name":"ContractMetadataUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"CurrencyTransferLibFailedNativeTransfer","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimExceedLimit","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimExceedMaxSupply","type":"error"},{"inputs":[{"internalType":"address","name":"expectedCurrency","type":"address"},{"internalType":"uint256","name":"expectedPricePerToken","type":"uint256"},{"internalType":"address","name":"actualCurrency","type":"address"},{"internalType":"uint256","name":"actualExpectedPricePerToken","type":"uint256"}],"name":"DropClaimInvalidTokenPrice","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimNotStarted","type":"error"},{"inputs":[],"name":"DropExceedMaxSupply","type":"error"},{"inputs":[],"name":"DropNoActiveCondition","type":"error"},{"inputs":[],"name":"DropUnauthorized","type":"error"},{"inputs":[],"name":"LazyMintInvalidAmount","type":"error"},{"inputs":[],"name":"LazyMintUnauthorized","type":"error"},{"inputs":[],"name":"OwnableUnauthorized","type":"error"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"RoyaltyExceededMaxFeeBps","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"RoyaltyInvalidRecipient","type":"error"},{"inputs":[],"name":"RoyaltyUnauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"indexed":false,"internalType":"struct IClaimCondition.ClaimCondition[]","name":"claimConditions","type":"tuple[]"},{"indexed":false,"internalType":"bool","name":"resetEligibility","type":"bool"}],"name":"ClaimConditionsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"prevURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRoyaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRoyaltyBps","type":"uint256"}],"name":"DefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[],"name":"MetadataFrozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prevOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"royaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"royaltyBps","type":"uint256"}],"name":"RoyaltyForToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantityClaimed","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimConditionIndex","type":"uint256"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantityClaimed","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"startTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"baseURI","type":"string"},{"indexed":false,"internalType":"bytes","name":"encryptedBaseURI","type":"bytes"}],"name":"TokensLazyMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"batchFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop1155.AllowlistProof","name":"_allowlistProof","type":"tuple"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimCondition","outputs":[{"internalType":"uint256","name":"currentStartId","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"evole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getActiveClaimConditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURICount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getBatchIdAtIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_conditionId","type":"uint256"}],"name":"getClaimConditionById","outputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition","name":"condition","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDefaultRoyaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRoyaltyInfoForToken","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"}],"name":"getSupplyClaimedByWallet","outputs":[{"internalType":"uint256","name":"supplyClaimedByWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_baseURIForTokens","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"lazyMint","outputs":[{"internalType":"uint256","name":"batchId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenIdToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition[]","name":"_conditions","type":"tuple[]"},{"internalType":"bool","name":"_resetClaimEligibility","type":"bool"}],"name":"setClaimConditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_royaltyBps","type":"uint256"}],"name":"setDefaultRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"setRoyaltyInfoForToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_claimer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"verifyClaim","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop1155.AllowlistProof","name":"_allowlistProof","type":"tuple"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"isOverride","type":"bool"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x00040000000000020016000000000002000000000601034f0000006001100270000007850010019d0000078501100197000300000016035500020000000603550000000100200190000000780000c13d000000e00f0000390000004000f0043f000000040010008c000016d90000413d000000000206043b000000e002200270000007960020009c000000ac0000213d000007b10020009c000000fb0000a13d000007b20020009c000001340000213d000007b90020009c000003070000a13d000007ba0020009c000007d10000613d000007bb0020009c000004ee0000613d000007bc0020009c000016d90000c13d000000440010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000000402600370000000000202043b000007cf0020009c000016d90000213d0000002303200039000000000013004b000016d90000813d0000000403200039000000000336034f000000000403043b000007cf0040009c0000089b0000213d00000005034002100000003f05300039000007e205500197000007d00050009c0000089b0000213d000000e005500039000000400050043f000000e00040043f00000024022000390000000003230019000000000013004b000016d90000213d000000000706034f000000000004004b000000470000613d0000010004000039000000000526034f000000000505043b0000078e0050009c000016d90000213d00000000045404360000002002200039000000000032004b0000003f0000413d0000002402600370000000000202043b000007cf0020009c000016d90000213d0000002303200039000000000013004b0000000004000019000007e304008041000007e303300197000000000003004b0000000005000019000007e305004041000007e30030009c000000000504c019000000000005004b000016d90000c13d0000000403200039000000000336034f000000000303043b000007cf0030009c0000089b0000213d00000005043002100000003f05400039000007e205500197000000400600043d0000000005560019001000000006001d000000000065004b00000000060000390000000106004039000007cf0050009c0000089b0000213d00000001006001900000089b0000c13d000000400050043f00000010050000290000000005350436000f00000005001d00000024022000390000000004240019000000000014004b000016d90000213d000000000003004b000011030000c13d000000e00200043d000000000002004b0000000002000019000011130000613d000012c00000013d0000008001000039000000400010043f0000000001000416000000000001004b000016d90000c13d0000000a01000039000000800010043f0000078602000041000000a00020043f0000010003000039000000400030043f000000c00010043f000000e00020043f000000000100041a000000010210019000000001011002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000032004b000000a60000c13d000000200010008c000000990000413d00000787020000410000001f011000390000000501100270000007880110009a000000000000043f000000000002041b0000000102200039000000000012004b000000950000413d0000078901000041000000000010041b0000000101000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000bd0000613d0000081c01000041000000000010043f0000002201000039000000040010043f000008130100004100001e1000010430000007970020009c0000011e0000a13d000007980020009c000001410000213d0000079f0020009c000003130000a13d000007a00020009c000007d70000613d000007a10020009c000005010000613d000007a20020009c000016d90000c13d0000000001000416000000000001004b000016d90000c13d1e0e17ac0000040f000004550000013d000000200020008c000000c80000413d000000000010043f0000078a030000410000001f0220003900000005022002700000078b0220009a000000000003041b0000000103300039000000000023004b000000c40000413d0000000602000039000000000302041a0000078904000041000000000041041b0000000d04000039000000000014041b0000078c013001970000078d011001c7000000000012041b0000000001000414000007850010009c00000785010080410000078e05300197000000c0011002100000078f011001c70000800d02000039000000030300003900000790040000410000078d060000411e0e1dff0000040f0000000100200190000016d90000613d0000000701000039000000000201041a000007910220019700000792022001c7000000000021041b000003e801000039000000400200043d0000000000120435000007850020009c000007850200804100000040012002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f00000793011001c70000800d02000039000000020300003900000794040000410000078d050000411e0e1dff0000040f0000000100200190000016d90000613d000000200100003900000100001004430000012000000443000007950100004100001e0f0001042e000007bf0020009c000001810000a13d000007c00020009c0000022d0000a13d000007c10020009c000007a00000613d000007c20020009c0000046d0000613d000007c30020009c000016d90000c13d000000640010008c000016d90000413d0000000401600370000000000101043b0000078e0010009c000016d90000213d00000000030100190000004401600370000000000701043b0000002401600370000000000201043b0000000d04000039000000000104041a000000020010008c000009160000c13d000007d601000041000000e00010043f0000002001000039000000e40010043f0000001f01000039000001040010043f0000081101000041000001240010043f000007dc0100004100001e1000010430000007a50020009c0000019a0000a13d000007a60020009c000002e50000a13d000007a70020009c000007b20000613d000007a80020009c000004830000613d000007a90020009c000016d90000c13d0000000001000416000000000001004b000016d90000c13d0000000701000039000000000101041a0000078e02100197000000e00020043f000000a0011002700000ffff0110018f000001000010043f000007da0100004100001e0f0001042e000007b30020009c0000034d0000a13d000007b40020009c000008590000613d000007b50020009c000005110000613d000007b60020009c000016d90000c13d0000000001000416000000000001004b000016d90000c13d00000009010000390000030f0000013d000007990020009c0000036f0000a13d0000079a0020009c000008680000613d0000079b0020009c0000052b0000613d0000079c0020009c000016d90000c13d000000640010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b000c00000001001d0000078e0010009c000016d90000213d0000004401600370000000000101043b000a00000001001d0000002401600370000000000101043b000b00000001001d00000000020004110000000c01000029000000000012004b0000094a0000c13d000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a0000000a0010006c00000a390000813d000000400100043d0000004402100039000007f50300004100000000003204350000002402100039000000170300003900000a410000013d000007c60020009c000001b40000213d000007c90020009c0000038d0000613d000007ca0020009c000016d90000c13d000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000201043b000007d400200198000016d90000c13d0000000101000039000008200020009c000008fa0000213d000008230020009c000006720000613d000008240020009c000000000100c019000000e00010043f000007d90100004100001e0f0001042e000007ac0020009c000001cc0000213d000007af0020009c000003a50000613d000007b00020009c000016d90000c13d000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b000000000010043f0000000b01000039000000200010043f000000400200003900000000010000191e0e1dea0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000e00010043f000007d90100004100001e0f0001042e000007c70020009c000004500000613d000007c80020009c000016d90000c13d000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000501043b0000000902000039000000000102041a000000e00010043f000000000020043f000000000001004b0000088c0000c13d0000010001000039000000400010043f0000081f01000041000000000010043f000000040050043f000008130100004100001e1000010430000007ad0020009c000004640000613d000007ae0020009c000016d90000c13d000000240010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000000402600370000000000402043b000007cf0040009c000016d90000213d0000002302400039000000000012004b000016d90000813d0000000405400039000000000256034f000000000302043b000007cf0030009c0000089b0000213d000000000706034f0000001f0630003900000825066001970000003f066000390000082506600197000007d00060009c0000089b0000213d0000002404400039000000e006600039000000400060043f000000e00030043f0000000004430019000000000014004b000016d90000213d0000002001500039000000000417034f00000825053001980000001f0630018f0000010001500039000001fb0000613d0000010007000039000000000804034f000000008908043c0000000007970436000000000017004b000001f70000c13d000000000006004b000002080000613d000000000454034f0000000305600210000000000601043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000410435000001000130003900000000000104350000000601000039000000000101041a0000078e011001970000000003000411000000000013004b00000a4c0000c13d0000000504000039000000000104041a000000010610019000000001071002700000007f0770618f0000001f0070008c00000000030000390000000103002039000000000331013f0000000100300190000000a60000c13d000000400500043d0000000003750436000000000006004b00000cb10000613d000000000040043f000000000007004b000000000100001900000cb60000613d000007ef0600004100000000010000190000000008130019000000000906041a000000000098043500000001066000390000002001100039000000000071004b000002250000413d00000cb60000013d000007c40020009c000004bb0000613d000007c50020009c000016d90000c13d000000640010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000000402600370000000000202043b000300000002001d0000002402600370000000000202043b000e00000002001d000007cf0020009c000016d90000213d0000000e020000290000002302200039000000000012004b000016d90000813d0000000e020000290000000402200039000000000226034f000000000202043b000600000002001d000007cf0020009c000016d90000213d0000000e02000029000000240320003900000006020000290000000502200210001200000003001d000200000002001d0000000002320019000000000012004b000016d90000213d0000004401600370000000000201043b000000000002004b0000000001000039000000010100c039000100000002001d000000000012004b000016d90000c13d0000000601000039000000000101041a0000078e011001970000000002000411000000000012004b00000a500000c13d0000000301000029000000000010043f0000000f01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000401041a0000000102100039000000000302041a000500000003001d000000010000006b000d00000004001d0000027a0000613d0000000d04000029000000050040002a0000140d0000413d0000000d0400002900000005044000290000000603000029000000000032041b001000000004001d000000000041041b001100020010003d000000000003004b00000cdd0000c13d000000010000006b00000f160000c13d0000000502000029000000060020006c000000100100002900000f720000a13d00000006030000290000029c0000013d000000000030043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000401043b0000000d02000029000000000002041b00000010010000290000000f03000029000000000004041b0000000103300039000000050030006c00000f720000813d000000000013001a0000140d0000413d000f00000003001d0000000001130019000000000010043f0000001101000029000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000502100039000000000002041b0000000602100039000000000002041b0000000704100039000000000104041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f0000000100100190000000a60000c13d000000000005004b00000010010000290000000f03000029000002990000613d0000001f0050008c000002980000a13d000c00000005001d000000000040043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c70000801002000039000d00000004001d1e0e1e040000040f0000000100200190000016d90000613d0000000d03000029000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000002890000813d000000000002041b0000000102200039000000000012004b000002e00000413d000002890000013d000007aa0020009c000004d60000613d000007ab0020009c000016d90000c13d000000640010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b001200000001001d0000002401600370000000000101043b001100000001001d0000078e0010009c000016d90000213d0000004401600370000000000301043b0000000601000039000000000101041a0000078e011001970000000002000411000000000012004b000008f10000c13d000027110030008c000009820000413d000007ec01000041000000000010043f0000271001000039000000040010043f000000240030043f000007ed0100004100001e1000010430000007bd0020009c000005810000613d000007be0020009c000016d90000c13d0000000001000416000000000001004b000016d90000c13d0000000c01000039000000000101041a000000e00010043f000007d90100004100001e0f0001042e000007a30020009c000006640000613d000007a40020009c000016d90000c13d000000640010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000000402600370000000000202043b0000002403600370000000000403043b000007cf0040009c000016d90000213d0000002303400039000000000013004b000016d90000813d0000000403400039000000000536034f000000000505043b001200000005001d000007cf0050009c000016d90000213d00000012044000290000002404400039000000000014004b000016d90000213d0000004404600370000000000404043b000007cf0040009c000016d90000213d0000002305400039000000000015004b000016d90000813d0000000405400039000000000556034f000000000505043b001100000005001d000007cf0050009c000016d90000213d0000002405400039001000000005001d0000001104500029000000000014004b000016d90000213d0000000601000039000000000101041a0000078e011001970000000004000411000000000014004b00000e210000c13d000000000002004b00000f950000c13d000007e101000041000000000010043f000007de0100004100001e1000010430000007b70020009c000006750000613d000007b80020009c000016d90000c13d000000640010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000004401600370000000000101043b001100000001001d0000078e0010009c000016d90000213d0000000401600370000000000101043b000000000010043f0000000f01000039000000200010043f0000004002000039000000000100001900120000000603531e0e1dea0000040f000000120200035f0000002402200370000000000202043b000000000020043f0000000301100039000000200010043f000000000100001900000040020000391e0e1dea0000040f0000001102000029000003a00000013d0000079d0020009c0000078c0000613d0000079e0020009c000016d90000c13d000000440010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b0000078e0010009c000016d90000213d0000002402600370000000000202043b001200000002001d0000078e0020009c000016d90000213d000000000010043f0000000301000039000000200010043f000000400200003900000000010000191e0e1dea0000040f0000001202000029000000000020043f000000200010043f00000000010000190000004002000039000001ac0000013d000000440010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b0000078e0010009c000016d90000213d000000000010043f0000000201000039000000200010043f0000004002000039000000000100001900120000000603531e0e1dea0000040f000000120200035f0000002402200370000000000202043b000000000020043f000000200010043f00000000010000190000004002000039000006700000013d000000640010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000000402600370000000000202043b0000078e0020009c000016d90000213d0000002403600370000000000303043b000007cf0030009c000016d90000213d0000002304300039000000000014004b000016d90000813d0000000404300039000000000446034f000000000504043b000007cf0050009c0000089b0000213d000000000806034f00000005045002100000003f06400039000007e206600197000007d00060009c0000089b0000213d000000e006600039000000400060043f000000e00050043f00000024033000390000000004340019000000000014004b000016d90000213d000000000708034f000000000005004b000003d20000613d000000e005000039000000000637034f000000000606043b000000200550003900000000006504350000002003300039000000000043004b000003cb0000413d0000004403700370000000000303043b000007cf0030009c000016d90000213d0000002304300039000000000014004b0000000005000019000007e305008041000007e304400197000000000004004b0000000006000019000007e306004041000007e30040009c000000000605c019000000000006004b000016d90000c13d0000000404300039000000000447034f000000000404043b000007cf0040009c0000089b0000213d00000005054002100000003f06500039000007e206600197000000400700043d0000000006670019001000000007001d000000000076004b00000000070000390000000107004039000007cf0060009c0000089b0000213d00000001007001900000089b0000c13d000000400060043f00000010060000290000000006460436000f00000006001d00000024033000390000000005350019000000000015004b000016d90000213d000000000004004b000004060000613d0000001001000029000000000438034f000000000404043b000000200110003900000000004104350000002003300039000000000053004b000003ff0000413d000e078e0020019b00000000020004110000000e0020006c000011bf0000c13d00000010010000290000000002010433000000e00100043d000000000021004b0000127a0000c13d000000000001004b000012890000c13d0000000e0000006b00000a3b0000613d000000400100043d000007cd0010009c0000089b0000213d0000002002100039000000400020043f0000000000010435000000e00100043d000000000001004b000013580000c13d000000400100043d000000400200003900000000022104360000004003100039000000e00400043d00000000004304350000006003100039000000000004004b0000042d0000613d000000e00500003900000000060000190000002005500039000000000705043300000000037304360000000106600039000000000046004b000004270000413d00000000041300490000000000420435000000100200002900000000040204330000000002430436000000000004004b0000043c0000613d000000000300001900000010060000290000002006600039000000000506043300000000025204360000000103300039000000000043004b000004360000413d0000000002120049000007850020009c00000785020080410000006002200210000007850010009c00000785010080410000004001100210000000000112019f0000000002000414000007850020009c0000078502008041000000c002200210000000000121019f0000078f011001c70000800d020000390000000403000039000007f60400004100000000050004110000000e0600002900000ba80000013d0000000001000416000000000001004b000016d90000c13d00000000010000191e0e17e60000040f0000002002000039000000400300043d001200000003001d00000000022304361e0e18330000040f00000012020000290000000001210049000007850010009c00000785010080410000006001100210000007850020009c00000785020080410000004002200210000000000121019f00001e0f0001042e0000000001000416000000000001004b000016d90000c13d0000000601000039000000000101041a0000078e01100197000000e00010043f000007d90100004100001e0f0001042e0000000002000416000000000002004b000016d90000c13d1e0e18650000040f001100000002001d1e0e18a60000040f001200000001001d0000ffff0220018f00000011010000291e0e188a0000040f000027100110011a000000400200043d0000002003200039000000000013043500000012010000290000078e011001970000000000120435000007850020009c0000078502008041000000400120021000000809011001c700001e0f0001042e000000240010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000000402600370000000000202043b000e00000002001d000007cf0020009c000016d90000213d0000000e020000290000002302200039000000000012004b000016d90000813d0000000e020000290000000402200039000000000226034f000000000202043b000d00000002001d000007cf0020009c000016d90000213d0000000e02000029001200240020003d0000000d0200002900000005022002100000001203200029000000000013004b000016d90000213d0000003f01200039000007e201100197000007d00010009c0000089b0000213d000000e001100039000000400010043f0000000d03000029000000e00030043f000000000003004b00000a540000c13d00000020020000390000000003210436000000e00200043d0000000000230435000000400310003900000005042002100000000006340019000000000002004b00000bad0000c13d0000000002160049000007850020009c00000785020080410000006002200210000007850010009c00000785010080410000004001100210000000000112019f00001e0f0001042e000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000601043b0000078e0060009c000016d90000213d0000000601000039000000000201041a0000078e032001970000000005000411000000000035004b000009460000c13d0000078c02200197000000000262019f000000000021041b0000000001000414000007850010009c0000078501008041000000c0011002100000078f011001c70000800d0200003900000003030000390000079004000041000009c20000013d0000000001000416000000000001004b000016d90000c13d0000000103000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000a60000c13d000000e00010043f000000000005004b000009010000c13d0000082601200197000001000010043f000000000004004b0000010002000039000000e002006039000009790000013d000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b1e0e18a60000040f0000ffff0220018f000000400300043d000000200430003900000000002404350000078e011001970000000000130435000007850030009c0000078503008041000000400130021000000809011001c700001e0f0001042e0000000001000416000000000001004b000016d90000c13d0000000001000411000000000001004b000008a10000c13d000007d601000041000000e00010043f0000002001000039000000e40010043f0000000e01000039000001040010043f000007db01000041000001240010043f000007dc0100004100001e1000010430000000440010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000501043b0000078e0050009c000016d90000213d0000002401600370000000000101043b0000000602000039000000000202041a0000078e022001970000000003000411000000000023004b000008f10000c13d000027110010008c000009b10000413d000007ec02000041000000000020043f0000271002000039000000040020043f000000240010043f000007ed0100004100001e1000010430000000a40010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000000402600370000000000202043b000c00000002001d0000078e0020009c000016d90000213d0000002402600370000000000202043b000b00000002001d0000078e0020009c000016d90000213d0000006402600370000000000202043b000900000002001d0000004402600370000000000202043b000a00000002001d0000008402600370000000000302043b000007cf0030009c000016d90000213d0000002302300039000000000012004b000016d90000813d0000000404300039000000000246034f000000000202043b000007cf0020009c0000089b0000213d000000000706034f0000001f0520003900000825055001970000003f055000390000082505500197000007d00050009c0000089b0000213d0000002403300039000000e005500039000000400050043f000000e00020043f0000000003320019000000000013004b000016d90000213d0000002001400039000000000317034f00000825042001980000001f0520018f0000010001400039000005660000613d0000010006000039000000000703034f000000007807043c0000000006860436000000000016004b000005620000c13d000000000005004b000005730000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000010001200039000000000001043500000000020004110000000c0020006b00000e250000c13d0000000b0000006b00000e4b0000c13d000000400100043d00000044021000390000080e03000041000000000032043500000024021000390000000c0300003900000a410000013d000000a40010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000000402600370000000000202043b0000078e0020009c000016d90000213d0000002403600370000000000303043b000b00000003001d0000078e0030009c000016d90000213d0000004403600370000000000303043b000007cf0030009c000016d90000213d0000002304300039000000000014004b000016d90000813d0000000404300039000000000446034f000000000504043b000007cf0050009c0000089b0000213d000000000806034f00000005045002100000003f06400039000007e206600197000007d00060009c0000089b0000213d000000e006600039000000400060043f000000e00050043f00000024033000390000000004340019000000000014004b000016d90000213d000000000708034f000000000005004b000005b30000613d000000e005000039000000000637034f000000000606043b000000200550003900000000006504350000002003300039000000000043004b000005ac0000413d0000006403700370000000000303043b000007cf0030009c000016d90000213d0000002304300039000000000014004b0000000005000019000007e305008041000007e304400197000000000004004b0000000006000019000007e306004041000007e30040009c000000000605c019000000000006004b000016d90000c13d0000000404300039000000000447034f000000000404043b000007cf0040009c0000089b0000213d00000005054002100000003f06500039000007e206600197000000400700043d0000000006670019001000000007001d000000000076004b00000000070000390000000107004039000007cf0060009c0000089b0000213d00000001007001900000089b0000c13d000000400060043f00000010060000290000000006460436000f00000006001d00000024033000390000000005350019000000000015004b000016d90000213d000000000708034f000000000004004b000005e80000613d0000001004000029000000000637034f000000000606043b000000200440003900000000006404350000002003300039000000000053004b000005e10000413d0000008403700370000000000403043b000007cf0040009c000016d90000213d0000002303400039000000000013004b0000000005000019000007e305008041000007e303300197000000000003004b0000000006000019000007e306004041000007e30030009c000000000605c019000000000006004b000016d90000c13d0000000405400039000000000357034f000000000303043b000007cf0030009c0000089b0000213d0000001f0630003900000825066001970000003f066000390000082506600197000000400700043d0000000006670019000900000007001d000000000076004b00000000070000390000000107004039000007cf0060009c0000089b0000213d00000001007001900000089b0000c13d0000002404400039000000400060043f00000009060000290000000006360436000800000006001d0000000004430019000000000014004b000016d90000213d0000002001500039000000000418034f00000825053001980000001f0630018f00000008015000290000061f0000613d000000000704034f0000000808000029000000007907043c0000000008980436000000000018004b0000061b0000c13d000000000006004b0000062c0000613d000000000454034f0000000305600210000000000601043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000041043500000008013000290000000000010435000e078e0020019b00000000010004110000000e0010006b000013cb0000c13d00000010010000290000000002010433000000e00100043d000000000021004b000012c00000c13d0000000b02000029000a078e0020019c0000057a0000613d0000000e0000006b000014b80000c13d000000000001004b0000001002000029000014bb0000613d00000000030000190000000001020433000000000031004b000015c20000a13d001200000003001d00000005013002100000000f021000290000000002020433001100000002001d00000100011000390000000001010433000000000010043f0000000e01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a0000001103000029000000000032001a0000140d0000413d0000000002320019000000000021041b00000012030000290000000103300039000000e00100043d000000000013004b0000001002000029000006400000413d000014b90000013d000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b000000000010043f0000000e01000039000000200010043f000000400200003900000000010000191e0e1dea0000040f000000000101041a000000e00010043f000007d90100004100001e0f0001042e000000e40010008c000016d90000413d0000000402600370000000000202043b000e00000002001d0000078e0020009c000016d90000213d0000004402600370000000000202043b000c00000002001d0000002402600370000000000202043b000d00000002001d0000006402600370000000000202043b000b00000002001d0000078e0020009c000016d90000213d0000008402600370000000000202043b000900000002001d000000a402600370000000000202043b000a00000002001d000007cf0020009c000016d90000213d0000000a0210006a000007d70020009c000016d90000213d000000840020008c000016d90000413d000000c402600370000000000302043b000007cf0030009c000016d90000213d0000002302300039000000000012004b000016d90000813d0000000404300039000000000246034f000000000202043b000007cf0020009c0000089b0000213d000000000706034f0000001f0520003900000825055001970000003f055000390000082505500197000007d00050009c0000089b0000213d0000002403300039000000e005500039000000400050043f000000e00020043f0000000003320019000000000013004b000016d90000213d0000002001400039000000000317034f00000825042001980000001f0520018f0000010001400039000006ba0000613d0000010006000039000000000703034f000000007807043c0000000006860436000000000016004b000006b60000c13d000000000005004b000006c70000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000001000120003900000000000104350000000d01000029000000000010043f0000000f01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000301043b000000000103041a0000000102300039000000000202041a001000000001001d000000000012001a0000140d0000413d0000001001200029000f00020030003d000000100010006c000011bb0000a13d000000010110008a001200000001001d000000000010043f0000000f01000029000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a001100000001001d000007fb0100004100000000001004430000000001000414000007850010009c0000078501008041000000c001100210000007fc011001c70000800b020000391e0e1e040000040f00000001002001900000154b0000613d000000000101043b000000110010006c0000001201000029000006df0000413d0000000a02000029000000040720003900000000020004110000000d030000290000000c040000290000000b0500002900000009060000291e0e19160000040f0000000d01000029000000000010043f0000000f01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000020043f0000000201100039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000201100039000000000201041a0000000c0020002a0000140d0000413d0000000c02200029000000000021041b0000000d01000029000000000010043f0000000f01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000020043f0000000301100039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b00000000020004110000078e02200197001100000002001d000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a0000000c0020002a0000140d0000413d0000000c02200029000000000021041b000000090000006b000007680000613d00000009020000290000000c032000b90000000c0000006b0000147a0000c13d0000000b010000290000078e01100197000007fd0010009c000007680000c13d0000000001000416000000000031004b0000154c0000c13d000000400400043d000007cd0040009c0000089b0000213d0000002001400039000000400010043f00000000000404350000000e010000290000000d020000290000000c030000291e0e1af70000040f000000400100043d00000020021000390000000c0300002900000000003204350000000d020000290000000000210435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f0000000e020000290000078e07200197000007cb011001c70000800d0200003900000004030000390000080704000041000000120500002900000000060004111e0e1dff0000040f0000000100200190000016d90000613d000009c50000013d000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b000000000010043f0000000f01000039000000200010043f000000400200003900000000010000191e0e1dea0000040f0000000102100039000000000202041a000000000101041a000000e00010043f000001000020043f000007da0100004100001e0f0001042e000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b0000000902000039000000000202041a000000000021004b000008f50000813d1e0e18980000040f0000000302200210000000000101041a000000000121022f000000ff0020008c0000000001002019000008610000013d000000440010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b001200000001001d0000078e0010009c000016d90000213d0000002401600370000000000201043b000000000002004b0000000001000039000000010100c039001100000002001d000000000012004b000016d90000c13d0000000002000411000000120020006c000009c70000c13d000007d601000041000000e00010043f0000002001000039000000e40010043f0000000e01000039000001040010043f000007ea01000041000001240010043f000007dc0100004100001e10000104300000000002000416000000000002004b000016d90000c13d1e0e18710000040f000000000100001900001e0f0001042e0000000002000416000000000002004b000016d90000c13d1e0e18650000040f001100000001001d001200000002001d000000400100043d001000000001001d1e0e178f0000040f0000001003000029000000e00130003900000060020000390000000000210435000000c0013000390000000000010435000000a00130003900000000000104350000008001300039000000000001043500000060013000390000000000010435000000400130003900000000000104350000002001300039000000000001043500000000000304350000001101000029000000000010043f0000000f01000039000000200010043f000000400200003900000000010000191e0e1dea0000040f0000001202000029000000000020043f0000000201100039000000200010043f000000000100001900000040020000391e0e1dea0000040f000b00000001001d000000400100043d001200000001001d1e0e178f0000040f0000000b04000029000000000104041a00000012020000290000000003120436001100000003001d0000000101400039000000000101041a00000000001304350000000201400039000000000101041a0000004003200039001000000003001d00000000001304350000000301400039000000000101041a0000006003200039000f00000003001d00000000001304350000000401400039000000000101041a0000008003200039000e00000003001d00000000001304350000000501400039000000000101041a000000a003200039000d00000003001d00000000001304350000000601400039000000000101041a0000078e01100197000000c003200039000c00000003001d000000000013043500000007014000391e0e17e60000040f0000001203000029000000e00230003900000000001204350000002001000039000000400400043d000b00000004001d000000000114043600000000030304330000000000310435000000110100002900000000010104330000004003400039000000000013043500000010010000290000000001010433000000600340003900000000001304350000000f010000290000000001010433000000800340003900000000001304350000000e010000290000000001010433000000a00340003900000000001304350000000d010000290000000001010433000000c00340003900000000001304350000000c0100002900000000010104330000078e01100197000000e0034000390000000000130435000000000102043300000100020000390000010003400039000000000023043500000120024000391e0e18330000040f0000000b020000290000000001210049000007850020009c00000785020080410000004002200210000007850010009c00000785010080410000006001100210000000000121019f00001e0f0001042e000000240010008c000016d90000413d0000000001000416000000000001004b000016d90000c13d0000000401600370000000000101043b1e0e18cf0000040f000000400200043d0000000000120435000007850020009c00000785020080410000004001200210000007d8011001c700001e0f0001042e000000e40010008c000016d90000413d0000000002000416000000000002004b000016d90000c13d0000002402600370000000000202043b0000078e0020009c000016d90000213d0000008403600370000000000503043b0000078e0050009c000016d90000213d000000c403600370000000000703043b000007cf0070009c000016d90000213d0000000001710049000007d70010009c000016d90000213d000000840010008c000016d90000413d0000000401600370000000000101043b0000004403600370000000000303043b0000006404600370000000000404043b000000a406600370000000000606043b00000004077000391e0e19160000040f000000000001004b0000000001000039000000010100c039000008610000013d001200000005001d0000081902000041000001000300003900000000040000190000000005030019000000000302041a000000000335043600000001022000390000000104400039000000000014004b000008900000413d000000a10250008a00000825022001970000081a0020009c000009060000413d0000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e10000104300000000101000039000000e00010043f000001000000043f000001200010043f0000000202000039000001400020043f0000018002000039000000400020043f000001600000043f0000000003000019000001200200043d000000000032004b000015c20000a13d000000000031004b000015c20000a13d001100000003001d000000050130021000000140021000390000000002020433001200000002001d00000100011000390000000001010433000000000010043f0000000e01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a000000120220006c0000140d0000413d000000000021041b00000011030000290000000103300039000000e00100043d000000000013004b000008ab0000413d0000000001000411000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000000043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a001200020010009400000be90000813d000000400100043d00000044021000390000080c0300004100000000003204350000002402100039000000100300003900000a410000013d000007f701000041000000000010043f000007de0100004100001e10000104300000081202000041000000000020043f000000040010043f000008130100004100001e1000010430000008210020009c000006720000613d000008220020009c000006720000613d000000e00000043f000007d90100004100001e0f0001042e000000000030043f000000020020008c000009700000813d000000e002000039000009790000013d000000e002200039000000400020043f000000e00200043d00000000030000190000001205000029000000000032004b000015c20000a13d000000050430021000000100044000390000000004040433000000000054004b000009f80000213d0000000103300039000000000013004b0000090b0000413d000001c70000013d0000000201000039000000000014041b0000000601000039000000000101041a0000078e011001970000000004000411000000000014004b000009460000c13d0000000c01000039000000000101041a000000000012004b00000a2f0000813d0000010001000039000000400010043f000000e00000043f000000e0040000390000000001030019001200000003001d0000000003070019001100000002001d001000000007001d1e0e1af70000040f000000400100043d00000010020000290000000000210435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f00000793011001c70000800d02000039000000040300003900000810040000410000000005000411000000120600002900000011070000291e0e1dff0000040f0000000100200190000016d90000613d00000001010000390000000d02000039000000000012041b000000000100001900001e0f0001042e0000081801000041000000000010043f000007de0100004100001e1000010430000000000010043f0000000301000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b00000000020004110000078e02200197000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a000000ff001001900000000c010000290000015d0000c13d000000400100043d0000004402100039000007f30300004100000000003204350000002402100039000000110300003900000a410000013d0000078a030000410000000004000019000000000503041a0000010002400039000000000052043500000001033000390000002004400039000000000014004b000009720000413d000000c00220008a000000e0010000391e0e179a0000040f0000002001000039000000400200043d001200000002001d0000000002120436000000e001000039000004590000013d0000012001000039000000400010043f0000001101000029000000e00010043f001000000003001d000001000030043f0000001201000029000000000010043f0000000801000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000e00200043d0000078e02200197000000000101043b000000000301041a0000078c03300197000000000223019f000000000021041b0000000101100039000001000200043d000000000021041b000000400100043d00000010020000290000000000210435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f00000793011001c70000800d020000390000000303000039000007eb0400004100000012050000290000001106000029000009c20000013d0000000702000039000000000302041a0000079103300197000000a004100210000007f804400197000000000334019f000000000353019f000000000032041b000000e00010043f0000000001000414000007850010009c0000078501008041000000c001100210000007f9011001c70000800d02000039000000020300003900000794040000411e0e1dff0000040f0000000100200190000016d90000613d000000000100001900001e0f0001042e000000000020043f0000000301000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a00000826022001970000001104000029000000ff0340018f000000000232019f000000000021041b000000400100043d0000000000410435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f00000793011001c70000800d020000390000000303000039000007e90400004100000000050004110000001206000029000009c20000013d000000000040043f0000000a01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a000000010320019000000001052002700000007f0550618f0000001f0050008c00000000040000390000000104002039000000000442013f0000000100400190000000a60000c13d000000400400043d001000000004001d000f00000005001d0000000004540436001100000004001d000000000003004b00000c7c0000613d000000000010043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d0000000f06000029000000000006004b0000000002000019000000110500002900000c820000613d000000000101043b00000000020000190000000003250019000000000401041a000000000043043500000001011000390000002002200039000000000062004b00000a270000413d00000c820000013d000007d601000041000000e00010043f0000002001000039000000e40010043f0000000a01000039000001040010043f0000080f01000041000001240010043f000007dc0100004100001e10000104300000000c0000006b00000b380000c13d000000400100043d0000004402100039000007db03000041000000000032043500000024021000390000000e030000390000000000320435000007d6020000410000000000210435000000040210003900000020030000390000000000320435000007850010009c00000785010080410000004001100210000007e8011001c700001e1000010430000007ee01000041000000000010043f000007de0100004100001e10000104300000081401000041000000000010043f000007de0100004100001e1000010430000000600b000039000000000100001900000100031000390000000000b304350000002001100039000000000021004b00000a560000413d000000200c00008a000000000d000410000000000e0000190000000501e00210001100000001001d00000012011000290000000203000367000000000113034f000000000101043b00000000050000310000000e0250006a000000430220008a000007e304200197000007e306100197000000000746013f000000000046004b0000000004000019000007e304004041000000000021004b0000000002000019000007e302008041000007e30070009c000000000402c019000000000004004b000016d90000c13d0000001202100029000000000123034f000000000101043b000007cf0010009c000016d90000213d00000000041500490000002006200039000007e302400197000007e307600197000000000827013f000000000027004b0000000002000019000007e302004041000000000046004b0000000004000019000007e304002041000007e30080009c000000000204c019000000000002004b000016d90000c13d0000001f021000390000000002c2016f0000003f022000390000000004c2016f000000400200043d0000000004420019000000000024004b00000000070000390000000107004039000007cf0040009c0000089b0000213d00000001007001900000089b0000c13d000000400040043f00000000041204360000000007610019000000000057004b000016d90000213d000000000563034f0000000006c10170000000000364001900000aa40000613d000000000705034f0000000008040019000000007907043c0000000008980436000000000038004b00000aa00000c13d0000001f0710019000000ab10000613d000000000565034f0000000306700210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000053043500000000011400190000000000010435000000400100043d001000000001001d000007e40010009c0000089b0000213d00000010050000290000006001500039000000400010043f0000004001500039000007e50300004100000000003104350000002001500039000007e603000041000000000031043500000027010000390000000000150435000000000202043300000000010004140000000400d0008c00000ac90000c13d0000000103000031000000010200003900000ae10000013d000007850040009c00000785040080410000004003400210000007850020009c00000785020080410000006002200210000000000232019f000007850010009c0000078501008041000000c001100210000000000121019f00000000020d0019000f0000000e001d1e0e1e090000040f0000000f0e000029000000000d000410000000200c00008a000000600b000039000000e00f000039000000010220018f00030000000103550000006001100270000107850010019d0000078503100197000000000003004b0000008001000039000000000a0b001900000b0e0000613d000007cf0030009c0000089b0000213d0000001f013000390000000001c1016f0000003f011000390000000001c1016f000000400500043d0000000001150019000000000051004b00000000040000390000000104004039000007cf0010009c0000089b0000213d00000001004001900000089b0000c13d000000400010043f000000000a05001900000000013504360000000005c301700000000004510019000000030600036700000b010000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000048004b00000afd0000c13d0000001f0330019000000b0e0000613d000000000556034f0000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f000000000034043500000000030a0433000000000002004b000010e20000613d000000000003004b00000b2a0000c13d00100000000a001d000f0000000e001d000007d10100004100000000001004430000000400d004430000000001000414000007850010009c0000078501008041000000c001100210000007d2011001c700008002020000391e0e1e040000040f00000001002001900000154b0000613d000000000101043b000000000001004b000000e00f000039000000600b000039000000200c00008a000000000d0004100000000f0e000029000000100a000029000012730000613d000000e00100043d0000000000e1004b000015c20000a13d000000110100002900000100011000390000000000a10435000000e00100043d0000000000e1004b000015c20000a13d000000010ee000390000000d00e0006c00000a5e0000413d000000400100043d000004a90000013d000000400100043d001000000001001d000007cc0010009c0000089b0000213d00000010020000290000004001200039000000400010043f000000010100003900000000031204360000000b02000029000e00000003001d0000000000230435000000400200043d000f00000002001d000007cc0020009c0000089b0000213d0000000f030000290000004002300039000000400020043f00000000021304360000000a01000029000d00000002001d0000000000120435000000400100043d000007cd0010009c0000089b0000213d0000002002100039000000400020043f000000000001043500000010010000290000000001010433000000000001004b000011410000c13d0000000c01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a0012000a00100074000008ea0000413d0000000c01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000021041b000000400100043d00000020021000390000000a0300002900000000003204350000000b020000290000000000210435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f000007cb011001c70000800d020000390000000403000039000007ce0400004100000000050004110000000c0600002900000000070000191e0e1dff0000040f0000000100200190000016d90000613d000009c50000013d000000000500001900000bc10000013d0000000309900210000000000a0b0433000000000a9a01cf000000000a9a022f00000000080804330000010009900089000000000898022f00000000089801cf0000000008a8019f00000000008b04350000001f0870003900000825088001970000000007670019000000000007043500000000066800190000000105500039000000000025004b000004b20000813d0000000007160049000000400770008a0000000003730436000000200ff0003900000000070f043300000000870704340000000006760436000008250a7001970000001f0970018f000000000068004b00000bdc0000813d00000000000a004b00000bd80000613d000000000c980019000000000b960019000000200bb0008a000000200cc0008a000000000dab0019000000000eac0019000000000e0e04330000000000ed0435000000200aa0008c00000bd20000c13d000000000009004b00000bb90000613d000000000b06001900000baf0000013d000000000ba6001900000000000a004b00000be50000613d000000000c080019000000000d06001900000000ce0c0434000000000ded04360000000000bd004b00000be10000c13d000000000009004b00000bb90000613d0000000008a8001900000baf0000013d0000000001000411000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000000043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000021041b000000400100043d0000002002100039000000020300003900000000003204350000000000010435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f000007cb011001c70000800d020000390000000403000039000007ce040000410000000005000411000000000605001900000000070000191e0e1dff0000040f0000000100200190000016d90000613d000000400100043d000c00000001001d000007cd0010009c0000089b0000213d0000000c020000290000002001200039000000400010043f0000000000020435000000400100043d001000000001001d000007cc0010009c0000089b0000213d00000010020000290000004001200039000000400010043f00000001010000390000000002120436000e00000002001d0000000000120435000000400100043d000f00000001001d000007cc0010009c0000089b0000213d0000000f020000290000004001200039000000400010043f00000001010000390000000002120436000d00000002001d000000000012043500000010010000290000000001010433000000000001004b000013240000c13d0000000001000411000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000102000039000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a000000010220003a0000140d0000613d000000000021041b000000400100043d0000002002100039000000010300003900000000003204350000000000310435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f000007cb011001c70000800d020000390000000403000039000007ce040000410000000005000411000000000600001900000000070500191e0e1dff0000040f0000000100200190000016d90000613d00000001030000390000000001000411000000000201001900000000040300190000000c050000291e0e1bb20000040f000000000100001900001e0f0001042e0000082601200197000000110200002900000000001204350000000f0000006b000000200200003900000000020060390000003f0120003900000825011001970000001002100029000000000012004b00000000010000390000000101004039000007cf0020009c0000089b0000213d00000001001001900000089b0000c13d000000400020043f000000120000006b0000101f0000c13d000007cc0020009c0000089b0000213d0000004001200039000000400010043f00000020012000390000081e030000410000000000310435000000010300003900000000003204350000001003000029000000000303043300000825063001970000001f0530018f000000400400043d000000000b0400190000002004400039000000110040006b000011670000813d000000000006004b00000cad0000613d00000011085000290000000007540019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000ca70000c13d000000000005004b0000117e0000613d0000000007040019000011730000013d00000826011001970000000000130435000000000007004b000000200100003900000000010060390000003f0110003900000825061001970000000001560019000000000061004b00000000060000390000000106004039000007cf0010009c0000089b0000213d00000001006001900000089b0000c13d000000400010043f000000e00600043d000007cf0060009c0000089b0000213d000000200070008c00000cd50000413d000000000040043f0000001f086000390000000508800270000007f00880009a000000200060008c000007ef080040410000001f077000390000000507700270000007f00770009a000000000078004b00000cd50000813d000000000008041b0000000108800039000000000078004b00000cd10000413d0000001f0060008c000010f80000a13d000000000040043f0000082508600198000011df0000c13d0000010009000039000007ef07000041000011ed0000013d00000000080000190000000001000019000000000008004b000000050980021000000cfb0000613d00000012039000290000000202000367000000000332034f000000000303043b0000000e040000290000000004400079000001230440008a000007e305300197000007e306400197000000000765013f000000000065004b0000000005000019000007e305004041000000000043004b0000000004000019000007e304008041000007e30070009c000000000504c019000000000005004b000016d90000c13d0000001203300029000000000232034f000000000202043b000000000021004b000012820000813d000c00000009001d0000001001000029000000000018001a0000140d0000413d000a00000008001d0000000001180019000f00000001001d000000000010043f0000001101000029000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f00000001002001900000000c03000029000016d90000613d000900120030002d00000002020003670000000903200360000000000303043b0000000e040000290000000004400079000001230440008a000007e305300197000007e306400197000000000765013f000000000065004b0000000005000019000007e305004041000000000043004b0000000004000019000007e304008041000007e30070009c000000000504c019000000000101043b000000000005004b000016d90000c13d0000000201100039000000000401041a0000001201300029000c00000001001d000b00200010003d0000000b01200360000000000101043b000800000004001d000000000014004b0000127e0000213d0000000f01000029000000000010043f0000001101000029000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f00000001002001900000000c09000029000016d90000613d0000000202000367000000000392034f000000000303043b000000000101043b000000000031041b0000000b05000029000000000352034f000000000303043b0000000104100039000000000034041b0000002003500039000000000332034f000000000303043b0000000204100039000000000034041b0000004003500039000000000332034f000000000303043b0000000304100039000000000034041b0000006003500039000000000332034f000000000303043b0000000404100039000000000034041b0000008003500039000000000332034f000000000303043b0000000504100039000000000034041b000000a003500039000000000432034f000000000404043b0000078e0040009c000016d90000213d0000000605100039000000000605041a0000078c06600197000000000446019f000000000045041b0000002003300039000000000432034f000000000300003100000000059300490000001f0550008a000000000404043b000007e306400197000007e307500197000000000876013f000000000076004b0000000006000019000007e306004041000000000054004b0000000005000019000007e305008041000007e30080009c000000000605c019000000000006004b000016d90000c13d0000000004940019000000000242034f000000000602043b000007cf0060009c000016d90000213d00000000026300490000002008400039000007e303200197000007e304800197000000000534013f000000000034004b0000000003000019000007e303004041000000000028004b0000000002000019000007e302002041000007e30050009c000000000302c019000000000003004b000016d90000c13d0000000707100039000000000107041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000a60000c13d000000200030008c000c00000006001d000700000007001d000b00000008001d00000db90000413d000400000003001d000000000070043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f0000000b080000290000000c060000290000000100200190000016d90000613d0000001f026000390000000502200270000000200060008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000070700002900000db90000813d000000000002041b0000000102200039000000000012004b00000db50000413d0000001f0060008c00000de30000a13d000000000070043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f0000000b080000290000000c060000290000000100200190000016d90000613d0000082502600198000000000101043b00000e1c0000613d0000000204000367000000000300001900000007070000290000000005830019000000000554034f000000000505043b000000000051041b00000001011000390000002003300039000000000023004b00000dcd0000413d000000000062004b00000de00000813d0000000302600210000000f80220018f000008270220027f000008270220016700000000038300190000000203300367000000000303043b000000000223016f000000000021041b000000010160021000000001011001bf00000def0000013d000000000006004b00000de80000613d0000000201800367000000000101043b00000de90000013d00000000010000190000000302600210000008270220027f0000082702200167000000000121016f0000000102600210000000000121019f000000000017041b0000000f01000029000000000010043f0000001101000029000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b00000002011000390000000802000029000000000021041b00000002010003670000000902100360000000000202043b0000000e030000290000000003300079000001230330008a000007e304200197000007e305300197000000000654013f000000000054004b0000000004000019000007e304004041000000000032004b0000000003000019000007e303008041000007e30060009c000000000403c019000000000004004b000016d90000c13d0000001202200029000000000121034f000000000101043b0000000a080000290000000108800039000000060080006c00000cdf0000413d000002810000013d00000000030000190000000707000029000000000062004b00000dd70000413d00000de00000013d000007dd01000041000000000010043f000007de0100004100001e10000104300000000c01000029000000000010043f0000000301000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b00000000020004110000078e02200197000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a000000ff00100190000005780000c13d000000400100043d00000044021000390000080a0300004100000000003204350000002402100039000000120300003900000a410000013d000000400100043d001000000001001d000007cc0010009c0000089b0000213d00000010020000290000004001200039000000400010043f000000010100003900000000031204360000000a02000029000e00000003001d0000000000230435000000400200043d000f00000002001d000007cc0020009c0000089b0000213d0000000f030000290000004002300039000000400020043f00000000021304360000000901000029000d00000002001d00000000001204350000000c0000006b00000e680000c13d00000010010000290000000001010433000000000001004b000012c70000c13d0000000c01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a0012000900100074000008ea0000413d0000000c01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000021041b0000000b01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a000000090020002a0000140d0000413d00000009030000290000000002320019000000000021041b000000400100043d000000200210003900000000003204350000000a020000290000000000210435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f000007cb011001c70000800d020000390000000403000039000007ce0400004100000000050004110000000c060000290000000b070000291e0e1dff0000040f0000000100200190000016d90000613d000007d10100004100000000001004430000000b0100002900000004001004430000000001000414000007850010009c0000078501008041000000c001100210000007d2011001c700008002020000391e0e1e040000040f00000001002001900000154b0000613d000000000101043b000000000001004b000009c50000613d000000400500043d0000008401500039000000a002000039000000000021043500000064015000390000000902000029000000000021043500000044015000390000000a02000029000000000021043500000024015000390000000c020000290000000000210435000007d3010000410000000000150435000000040150003900000000020004110000000000210435000000a402500039000000e00100043d000000000012043500000825041001970000001f0310018f001200000005001d000000c402500039000001010020008c000015f00000413d000000000004004b00000f110000613d0000000006320019000000e0053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00000f0b0000c13d000000000003004b000016060000613d00000100040000390000000005020019000015fc0000013d00000010010000290000000d0200002900000f2a0000013d000000000030043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000301043b0000000f02000029000000000002041b00000010010000290000000d02000029000000000003041b0000000102200039000000000012004b00000f720000813d000d00000002001d000000000020043f0000001101000029000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000502100039000000000002041b0000000602100039000000000002041b0000000703100039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f0000000100100190000000a60000c13d000000000004004b00000010010000290000000d0200002900000f290000613d0000001f0040008c00000f280000a13d000c00000004001d000000000030043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c70000801002000039000f00000003001d1e0e1e040000040f0000000100200190000016d90000613d0000000f03000029000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000f190000813d000000000002041b0000000102200039000000000012004b00000f6d0000413d00000f190000013d000000400300043d00000040010000390000000001130436000d00000001001d000000400130003900000006020000290000000000210435001100000003001d0000006003300039000000020d300029000000000002004b000010570000c13d00000001010000290000000d020000290000000000120435000000110200002900000000012d0049000007850010009c00000785010080410000006001100210000007850020009c00000785020080410000004002200210000000000121019f0000000002000414000007850020009c0000078502008041000000c002200210000000000121019f0000078f011001c70000800d02000039000000020300003900000817040000410000000305000029000009c20000013d00000012010000290000001f011000390000082501100197000d00000001001d0000003f011000390000082501100197000007d00010009c0000089b0000213d0000000c04000039000000000404041a000e00000004001d000000e001100039000000400010043f0000001201000029000000e00010043f0000082504100198000f001f00100193000b00200030003d0000000b03600360000c00000004001d000001000140003900000fb10000613d0000010004000039000000000503034f000000005605043c0000000004640436000000000014004b00000fad0000c13d0000000f0000006b00000fbf0000613d0000000c033003600000000f040000290000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000001201000029000001000110003900000000000104350000000e0020002a0000140d0000413d0000000903000039000000000103041a000007cf0010009c0000089b0000213d0000000e042000290000000102100039000000000023041b000007df0110009a000000000041041b000a00000004001d000000000040043f0000000a01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000900000001001d000000e00100043d000800000001001d000007cf0010009c0000089b0000213d0000000901000029000000000101041a000000010010019000000001021002700000007f0220618f000700000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000a60000c13d0000000701000029000000200010008c0000100b0000413d0000000901000029000000000010043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d00000008030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000100b0000813d000000000002041b0000000102200039000000000012004b000010070000413d00000008010000290000001f0010008c0000134c0000a13d0000000901000029000000000010043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000200200008a0000000802200180000000000101043b000013eb0000c13d0000010003000039000013f90000013d000000120400002900000000030000190000000001030019000000010330003a0000140d0000613d0000000a0040008c0000000a0440011a000010210000813d0000081b0010009c0000089b0000213d00000825041001970000005f0140003900000825051001970000000001250019000000000051004b00000000050000390000000105004039000007cf0010009c0000089b0000213d00000001005001900000089b0000c13d000000400010043f0000000001320436000000200440003900000825054001980000001f0440018f000010420000613d0000000005510019000000000600003100000002066003670000000007010019000000006806043c0000000007870436000000000057004b0000103e0000c13d000000000004004b0000001f042000390000001208000029000000000003004b0000140d0000613d000000010530008a0000000006020433000000000065004b000015c20000813d0000000003340019000000090080008c0000000a6880011a000000f80660021000000000070304330000081d07700197000000000676019f0000081e066001c700000000006304350000000003050019000010450000213d00000c980000013d00000000020000310000000e0120006a000001230110008a0000000206000367000f00000002001d0010001f002000920000000007010019000007e308100197000000000b000019000000120c0000290000106b0000013d0000001f01e00039000008250110019700000000024e00190000000000020435000000000d410019000000200cc00039000000010bb000390000000600b0006c00000f7e0000813d0000001101d0006a000000600110008a00000000031304360000000001c6034f000000000201043b000007e301200197000000000481013f000000000081004b0000000001000019000007e301002041000000000072004b0000000009000019000007e309004041000007e30040009c000000000109c019000000000001004b000016d90000613d000000120e2000290000000001e6034f000000000101043b00000000011d04360000002002e00039000000000226034f000000000202043b00000000002104350000004001e00039000000000116034f000000000101043b0000004002d0003900000000001204350000006001e00039000000000116034f000000000101043b0000006002d0003900000000001204350000008001e00039000000000116034f000000000101043b0000008002d000390000000000120435000000a001e00039000000000116034f000000a002d00039000000000101043b0000000000120435000000c001e00039000000000216034f000000000202043b0000078e0020009c000016d90000213d000000c004d0003900000000002404350000001004e000690000002001100039000000000116034f000000000201043b000007e301400197000007e309200197000000000f19013f000000000019004b0000000001000019000007e301004041000000000042004b0000000004000019000007e304008041000007e300f0009c000000000104c019000000000001004b000016d90000c13d0000000001e20019000000000216034f000000000e02043b000007cf00e0009c000016d90000213d00000020021000390000000f01e00069000000000012004b0000000004000019000007e304002041000007e301100197000007e309200197000000000f19013f000000000019004b0000000001000019000007e301004041000007e300f0009c000000000104c019000000000001004b000016d90000c13d000000e001d00039000001000400003900000000004104350000010001d000390000000000e10435000000000126034f0000082509e001980000012004d00039000000000f940019000010d40000613d000000000201034f000000000d040019000000002502043c000000000d5d04360000000000fd004b000010d00000c13d0000001f02e00190000010620000613d000000000191034f000000030220021000000000050f043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f00000000001f0435000010620000013d000000000003004b000011390000c13d000000400300043d001200000003001d000007d6010000410000000000130435000000040130003900000020020000390000000000210435000000240230003900000010010000291e0e18330000040f00000012020000290000000001210049000007850010009c0000078501008041000007850020009c000007850200804100000060011002100000004002200210000000000121019f00001e1000010430000000000006004b0000000007000019000010fc0000613d000001000700043d0000000308600210000008270880027f0000082708800167000000000787016f0000000106600210000000000667019f000011f80000013d0000001003000029000000000607034f000000000526034f000000000505043b000000200330003900000000005304350000002002200039000000000042004b000011050000413d00000010020000290000000002020433000000e00300043d000000000023004b000012c00000c13d000007cf0020009c0000089b0000213d00000005032002100000003f043000390000080805400197000000400400043d000e00000004001d0000000004450019000000000054004b00000000050000390000000105004039000007cf0040009c0000089b0000213d00000001005001900000089b0000c13d000000400040043f0000000e040000290000000002240436000d00000002001d0000001f0230018f000000000003004b0000112e0000613d000000000117034f0000000d040000290000000003340019000000001501043c0000000004540436000000000034004b0000112a0000c13d000000000002004b000000e00100043d000000000001004b000012ef0000c13d000000400200043d001200000002001d000000200100003900000000021204360000000e010000291e0e187d0000040f0000045a0000013d000007850010009c00000785010080410000004001100210000007850030009c00000785030080410000006002300210000000000112019f00001e100001043000000000030000190000000f020000290000000002020433000000000032004b000015c20000a13d000000000031004b000015c20000a13d001100000003001d00000005013002100000000d021000290000000002020433001200000002001d0000000e011000290000000001010433000000000010043f0000000e01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a000000120220006c0000140d0000413d000000000021041b0000001103000029000000010330003900000010010000290000000001010433000000000013004b000011420000413d00000b590000013d0000000007640019000000000006004b000011700000613d00000011080000290000000009040019000000008a0804340000000009a90436000000000079004b0000116c0000c13d000000000005004b0000117e0000613d001100110060002d0000000305500210000000000607043300000000065601cf000000000656022f000000110800002900000000080804330000010005500089000000000858022f00000000055801cf000000000565019f000000000057043500000000033400190000000000030435000000000202043300000825052001970000001f0420018f000000000031004b000011950000813d000000000005004b000011910000613d00000000074100190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c0000118b0000c13d000000000004004b0000000006030019000011a10000c13d000011ab0000013d0000000006530019000000000005004b0000119e0000613d0000000007010019000000000803001900000000790704340000000008980436000000000068004b0000119a0000c13d000000000004004b000011ab0000613d00000000015100190000000304400210000000000506043300000000054501cf000000000545022f00000000010104330000010004400089000000000141022f00000000014101cf000000000151019f00000000001604350000000001320019000000000001043500120000000b001d0000000002b10049000000200120008a00000000001b043500000000010b00191e0e179a0000040f0000002001000039000000400200043d001100000002001d000000000212043600000012010000291e0e18330000040f00000011020000290000045b0000013d000007fa01000041000000000010043f000007de0100004100001e10000104300000000e01000029000000000010043f0000000301000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b00000000020004110000078e02200197000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a000000ff001001900000040a0000c13d000009690000013d000007ef07000041000000200a000039000000010980008a0000000509900270000007f10990009a000000000b0a0019000000e00aa00039000000000a0a04330000000000a7041b000000200ab000390000000107700039000000000097004b000011e40000c13d0000010009b00039000000000068004b000011f60000813d0000000308600210000000f80880018f000008270880027f00000827088001670000000009090433000000000889016f000000000087041b000000010660021000000001066001bf000000000064041b0000004004000039000000000441043600000040061000390000000005050433000000000056043500000825085001970000001f0750018f0000006006100039000000000063004b000012130000813d000000000008004b0000120f0000613d000000000a7300190000000009760019000000200990008a000000200aa0008a000000000b890019000000000c8a0019000000000c0c04330000000000cb0435000000200880008c000012090000c13d000000000007004b000012290000613d00000000090600190000121f0000013d0000000009860019000000000008004b0000121c0000613d000000000a030019000000000b06001900000000ac0a0434000000000bcb043600000000009b004b000012180000c13d000000000007004b000012290000613d00000000038300190000000307700210000000000809043300000000087801cf000000000878022f00000000030304330000010007700089000000000373022f00000000037301cf000000000383019f0000000000390435000000000365001900000000000304350000001f035000390000082503300197000000000363001900000000051300490000000000540435000000e00400043d000000000343043600000825064001970000001f0540018f000001010030008c000012460000413d000000000006004b000012410000613d0000000008530019000000e0075001bf000000200880008a0000000009680019000000000a670019000000000a0a04330000000000a90435000000200660008c0000123b0000c13d000000000005004b0000125c0000613d00000100060000390000000007030019000012520000013d0000000007630019000000000006004b0000124f0000613d00000100080000390000000009030019000000008a0804340000000009a90436000000000079004b0000124b0000c13d000000000005004b0000125c0000613d00000100066000390000000305500210000000000807043300000000085801cf000000000858022f00000000060604330000010005500089000000000656022f00000000055601cf000000000585019f0000000000570435000000000534001900000000000504350000001f04400039000008250240019700000000031300490000000002230019000007850020009c00000785020080410000006002200210000007850010009c00000785010080410000004001100210000000000112019f0000000002000414000007850020009c0000078502008041000000c002200210000000000121019f0000078f011001c70000800d020000390000000103000039000007f204000041000009c20000013d000000400100043d0000004402100039000007e703000041000000000032043500000024021000390000001d0300003900000a410000013d000000400100043d0000004402100039000007f403000041000012c30000013d0000081601000041000000000010043f000007de0100004100001e1000010430000000400100043d0000004402100039000008150300004100000000003204350000002402100039000000020300003900000a410000013d001200000000001d0000000e01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f00000001002001900000001203000029000016d90000613d000000e00200043d000000000032004b000015c20000a13d000000000101043b0000000502300210001100000002001d00000100022000390000000002020433000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c70000801002000039001200000003001d1e0e1e040000040f0000000100200190000016d90000613d000000100200002900000000020204330000001204000029000000000042004b000015c20000a13d00000011050000290000000f035000290000000003030433000000000101043b000000000101041a000000000031004b0000017a0000413d001200010040003d000000e00100043d000000120010006b0000128a0000413d0000000e0000006b00000a3b0000613d000000000021004b000004130000613d000000400100043d00000044021000390000080b03000041000000000032043500000024021000390000000f0300003900000a410000013d00000000030000190000000f020000290000000002020433000000000032004b000015c20000a13d000000000031004b000015c20000a13d001200000003001d00000005013002100000000d021000290000000002020433001100000002001d0000000e011000290000000001010433000000000010043f0000000e01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a0000001103000029000000000032001a0000140d0000413d0000000002320019000000000021041b0000001203000029000000010330003900000010010000290000000001010433000000000013004b000012c80000413d00000e680000013d0000000003000019001200000003001d0000000501300210001100000001001d000001000110003900000000010104330000078e01100197000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d00000010020000290000000002020433000000120020006c000015c20000a13d00000011040000290000000f024000290000000002020433000000000101043b000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d0000000e0200002900000000020204330000001203000029000000000032004b000015c20000a13d00000011040000290000000d02400029000000000101043b000000000101041a00000000001204350000000103300039000000e00100043d000000000013004b000012f00000413d000011320000013d00000000030000190000000f020000290000000002020433000000000032004b000015c20000a13d000000000031004b000015c20000a13d001200000003001d00000005013002100000000d021000290000000002020433001100000002001d0000000e011000290000000001010433000000000010043f0000000e01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a0000001103000029000000000032001a0000140d0000413d0000000002320019000000000021041b0000001203000029000000010330003900000010010000290000000001010433000000000013004b000013250000413d00000c3e0000013d000000080000006b0000000001000019000013500000613d000001000100043d00000008040000290000000302400210000008270220027f0000082702200167000000000121016f0000000102400210000000000121019f000014060000013d000000000300001900000010020000290000000001020433000000000031004b000015c20000a13d001100000003001d00000005013002100000000f021000290000000002020433001200000002001d00000100011000390000000001010433000000000010043f0000000e01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a000000120220006c0000140d0000413d000000000021041b00000011030000290000000103300039000000e00100043d000000000013004b00000010020000290000135a0000413d000000000001004b0000041c0000613d000000000200001900000010010000290000000001010433000000000021004b000015c20000a13d000d00000002001d000000050120021000000100021000390000000002020433001200000002001d0000000f011000290000000001010433001100000001001d0000000e01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a0011001100100074000008ea0000413d0000000e01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001102000029000000000021041b0000000d020000290000000102200039000000e00100043d000000000012004b0000137e0000413d0000041c0000013d0000000e01000029000000000010043f0000000301000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b00000000020004110000078e02200197000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a000000ff00100190000006320000c13d00000e440000013d000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000e0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000013f00000c13d0000010003500039000000080020006c000014030000813d00000008020000290000000302200210000000f80220018f000008270220027f00000827022001670000000003030433000000000223016f000000000021041b0000000801000029000000010110021000000001011001bf0000000902000029000000000012041b0000000a010000290000000c02000039000000000012041b000000000001004b000014130000c13d0000081c01000041000000000010043f0000001101000039000000040010043f000008130100004100001e1000010430000000400100043d0000006002100039000000120300002900000000003204350000002002100039000000600300003900000000003204350000000a02000029000000010220008a000000000021043500000080031000390000000c0430002900000002020003670000000b052003600000000c0000006b000014290000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000014250000c13d0000000f0000006b000014370000613d0000000c055003600000000f060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000120430002900000000000404350000000d0330002900000000041300490000004005100039000000000045043500000010042003600000001106000029000000000263043600000825056001980000001f0660018f00000000035200190000144a0000613d000000000704034f0000000008020019000000007907043c0000000008980436000000000038004b000014460000c13d000000000006004b000014570000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000011040000290000001f0340003900000825033001970000000004420019000000000004043500000000031300490000000002230019000007850020009c00000785020080410000006002200210000007850010009c00000785010080410000004001100210000000000112019f0000000002000414000007850020009c0000078502008041000000c002200210000000000112019f0000078f011001c70000800d020000390000000203000039000007e0040000410000000e050000291e0e1dff0000040f0000000100200190000016d90000613d000000400100043d0000000a020000290000000000210435000007850010009c00000785010080410000004001100210000007d8011001c700001e0f0001042e0000000c013000fa000000090010006c0000140d0000c13d0000000b010000290000078e01100197000007fd0010009c000015c80000c13d0000000001000416000000000031004b0000154c0000c13d000000000001004b000007680000613d0000000601000039000000000101041a0000078e021001970000000001000414001100000002001d000000040020008c000016db0000c13d0000000101000032000007680000613d000007cf0010009c0000089b0000213d0000001f0210003900000825022001970000003f022000390000082503200197000000400200043d0000000003320019000000000023004b00000000040000390000000104004039000007cf0030009c0000089b0000213d00000001004001900000089b0000c13d000000400030043f000000000512043600000825021001980000001f0310018f00000000012500190000000304000367000014aa0000613d000000000604034f000000006706043c0000000005750436000000000015004b000014a60000c13d000000000003004b000007680000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000007680000013d0000001002000029000000000001004b000015530000c13d000000400100043d000000400200003900000000022104360000004003100039000000e00400043d00000000004304350000006003100039000000000004004b000014cc0000613d000000e00500003900000000060000190000002005500039000000000705043300000000037304360000000106600039000000000046004b000014c60000413d00000000041300490000000000420435000000100200002900000000040204330000000002430436000000000004004b000014db0000613d000000000300001900000010050000290000002005500039000000000605043300000000026204360000000103300039000000000043004b000014d50000413d0000000002120049000007850020009c00000785020080410000006002200210000007850010009c00000785010080410000004001100210000000000112019f0000000002000414000007850020009c0000078502008041000000c002200210000000000121019f0000078f011001c70000800d020000390000000403000039000007f60400004100000000050004110000000e060000290000000a070000291e0e1dff0000040f0000000100200190000016d90000613d000007d10100004100000000001004430000000b0100002900000004001004430000000001000414000007850010009c0000078501008041000000c001100210000007d2011001c700008002020000391e0e1e040000040f00000001002001900000154b0000613d000000000101043b000000000001004b000009c50000613d000000400300043d0000004401300039000000a002000039000000000021043500000024013000390000000e0200002900000000002104350000080d010000410000000000130435000000040130003900000000020004110000000000210435000000a401300039000000e00200043d0000000000210435001200000003001d000000c401300039000000000002004b0000151d0000613d000000e00300003900000000040000190000002003300039000000000503043300000000015104360000000104400039000000000024004b000015170000413d00000012030000290000000002310049000000040220008a00000064033000390000000000230435000000100200002900000000020204330000000001210436000000000002004b0000152f0000613d000000000300001900000010050000290000002005500039000000000405043300000000014104360000000103300039000000000023004b000015290000413d00000012030000290000000002310049000000040220008a0000008403300039000000000023043500000009020000290000000002020433000000000121043600000825042001970000001f0320018f000000080010006b000016600000813d000000000004004b000015470000613d00000008063000290000000005310019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000015410000c13d000000000003004b000016770000613d00000000050100190000166c0000013d000000000001042f000000400100043d0000004402100039000008060300004100000000003204350000002402100039000000160300003900000a410000013d00000000030000190000000001020433000000000031004b000015c20000a13d000d00000003001d000000050130021000000100021000390000000002020433001200000002001d0000000f011000290000000001010433001100000001001d0000000e01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000101041a000c001100100074000008ea0000413d0000000e01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000000c02000029000000000021041b0000000a01000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b0000001202000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000016d90000613d000000000101043b000000000201041a0000001103000029000000000032001a0000140d0000413d0000000002320019000000000021041b0000000d030000290000000103300039000000e00100043d000000000013004b0000001002000029000015540000413d000014bb0000013d0000081c01000041000000000010043f0000003201000039000000040010043f000008130100004100001e1000010430000000000003004b000007680000613d0000000602000039000000000202041a0000078e04200197000000110040006b000007680000613d000000400200043d0000004405200039000000240620003900000020072000390000000008000410000000110080006b000015e00000c13d000008000800004100000000008704350000000000460435000000000035043500000044030000390000000000320435000008010020009c0000089b0000213d0000008003000039000015ec0000013d000007fe0800004100000000008704350000001107000029000000000076043500000000004504350000006404200039000000000034043500000064030000390000000000320435000007ff0020009c0000089b0000213d000000a0030000390000000003230019000000400030043f1e0e1cda0000040f000007680000013d0000000005420019000000000004004b000015f90000613d0000010006000039000000000702001900000000680604340000000007870436000000000057004b000015f50000c13d000000000003004b000016060000613d00000100044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000b03000029000000040030008c000016140000c13d0000000005000415000000140550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000016480000013d0000001f011000390000082501100197000000c401100039000007850010009c000007850100804100000060011002100000001203000029000007850030009c00000785030080410000004003300210000000000131019f000007850020009c0000078502008041000000c002200210000000000112019f0000000b020000291e0e1dff0000040f00000060031002700000078503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001205700029000016340000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b000016300000c13d000000000006004b000016410000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000130550008a00000005055002100000000100200190000017180000613d0000001f01400039000000600110018f0000001202100029000000000012004b00000000010000390000000101004039000007cf0020009c0000089b0000213d00000001001001900000089b0000c13d0000000004020019000000400020043f000000200030008c000016d90000413d00000012010000290000000001010433000007d400100198000016d90000c13d0000000502500270000000000201001f000007d501100197000007d30010009c000009c50000613d000016d20000013d0000000005410019000000000004004b000016690000613d0000000806000029000000000701001900000000680604340000000007870436000000000057004b000016650000c13d000000000003004b000016770000613d000800080040002d0000000303300210000000000405043300000000043401cf000000000434022f000000080600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000003120019000000000003043500000000030004140000000a04000029000000040040008c000016850000c13d0000000005000415000000160550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000016bb0000013d0000001f022000390000082502200197000000120400002900000000014100490000000001210019000007850010009c00000785010080410000006001100210000007850040009c000007850200004100000000020440190000004002200210000000000121019f000007850030009c0000078503008041000000c002300210000000000121019f0000000a020000291e0e1dff0000040f00000060031002700000078503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001205700029000016a70000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b000016a30000c13d000000000006004b000016b40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000150550008a00000005055002100000000100200190000017320000613d0000001f01400039000000600110018f0000001202100029000000000012004b00000000010000390000000101004039000007cf0020009c0000089b0000213d00000001001001900000089b0000c13d0000000004020019000000400020043f000000200030008c000016d90000413d00000012010000290000000001010433000007d400100198000016d90000c13d0000000502500270000000000201001f000007d5011001970000080d0010009c000009c50000613d000007d601000041001100000004001d000000000014043500000004014000391e0e1b9e0000040f00000011020000290000176e0000013d000000000100001900001e1000010430000007850010009c0000078501008041000000c0011002100000078f011001c700008009020000390000000003000416000000110400002900000000050000191e0e1dff0000040f00030000000103550000006003100270000107850030019d00000785033001980000170e0000613d0000001f0430003900000802044001970000003f044000390000080304400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000007cf0040009c0000089b0000213d00000001006001900000089b0000c13d000000400040043f0000001f0430018f000000000635043600000804053001980000000003560019000017010000613d000000000701034f000000007807043c0000000006860436000000000036004b000016fd0000c13d000000000004004b0000170e0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000100200190000007680000c13d0000080501000041000000000010043f0000001101000029000000040010043f0000000001000416000000240010043f000007ed0100004100001e1000010430000000040230008c000017670000413d000000000400043d000007d404400197000000000501043b000007d505500197000000000445019f000000000040043f000007d504400197000007d60040009c000017670000c13d000000440030008c000017670000413d000000040510037000000825062001980000001f0720018f000000400400043d00000000016400190000174b0000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b0000172d0000c13d0000174b0000013d000000040230008c000017670000413d000000000400043d000007d404400197000000000501043b000007d505500197000000000445019f000000000040043f000000440030008c000017670000413d000007d504400197000007d60040009c000017670000c13d000000040510037000000825062001980000001f0720018f000000400400043d00000000016400190000174b0000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000017470000c13d000000000007004b000017580000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005104350000000005040433000007cf0050009c000017670000213d0000002401500039000000000031004b000017670000213d00000000014500190000000003010433000007cf0030009c000017670000213d000000000224001900000000063100190000002006600039000000000026004b000017770000a13d000000400200043d001200000002001d000007d601000041000000000012043500000004012000391e0e1ba80000040f00000012020000290000000001210049000007850010009c00000785010080410000006001100210000007850020009c00000785020080410000004002200210000000000121019f00001e100001043000000000023500190000003f0220003900000825022001970000000004420019000000000024004b00000000020000390000000102004039000007cf0040009c0000089b0000213d00000001002001900000089b0000c13d0000000003040019000000400040043f000000000001004b000017670000613d000007d6020000410000000004030019001200000003001d00000000002304350000000402300039000000200300003900000000003204350000002402400039000010ed0000013d000008280010009c000017940000813d0000010001100039000000400010043f000000000001042d0000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e10000104300000001f0220003900000825022001970000000001120019000000000021004b00000000020000390000000102004039000007cf0010009c000017a60000213d0000000100200190000017a60000c13d000000400010043f000000000001042d0000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e10000104300000000505000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000017da0000c13d000000400100043d0000000003210436000000000006004b000017c70000613d000000000050043f000000000002004b000017cd0000613d000007ef0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000017bf0000413d000017ce0000013d00000826044001970000000000430435000000000002004b00000020040000390000000004006039000017ce0000013d00000000040000190000003f0240003900000825032001970000000002130019000000000032004b00000000030000390000000103004039000007cf0020009c000017e00000213d0000000100300190000017e00000c13d000000400020043f000000000001042d0000081c01000041000000000010043f0000002201000039000000040010043f000008130100004100001e10000104300000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e10000104300003000000000002000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b000018250000c13d000000400500043d0000000004650436000000000003004b000018100000613d000100000004001d000300000006001d000200000005001d000000000010043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f0000000100200190000018310000613d0000000306000029000000000006004b000018160000613d000000000201043b0000000001000019000000020500002900000001070000290000000003170019000000000402041a000000000043043500000001022000390000002001100039000000000061004b000018080000413d000018180000013d00000826012001970000000000140435000000000006004b00000020010000390000000001006039000018180000013d000000000100001900000002050000290000003f0110003900000825021001970000000001520019000000000021004b00000000020000390000000102004039000007cf0010009c0000182b0000213d00000001002001900000182b0000c13d000000400010043f0000000001050019000000000001042d0000081c01000041000000000010043f0000002201000039000000040010043f000008130100004100001e10000104300000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e1000010430000000000100001900001e10000104300000000043010434000000000132043600000825063001970000001f0530018f000000000014004b000018490000813d000000000006004b000018450000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000183f0000c13d000000000005004b0000185f0000613d0000000007010019000018550000013d0000000007610019000000000006004b000018520000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b0000184e0000c13d000000000005004b0000185f0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900000825023001970000000001210019000000000001042d000007d70010009c0000186f0000213d000000430010008c0000186f0000a13d00000002020003670000000401200370000000000101043b0000002402200370000000000202043b000000000001042d000000000100001900001e1000010430000007d70010009c0000187b0000213d000000630010008c0000187b0000a13d00000004010000390000000201100367000000000101043b0000078e0010009c0000187b0000213d000000000001042d000000000100001900001e1000010430000000000301001900000000040104330000000001420436000000000004004b000018890000613d00000000020000190000002003300039000000000503043300000000015104360000000102200039000000000042004b000018830000413d000000000001042d000000000301001900000000011200a9000000000003004b000018910000613d00000000033100d9000000000023004b000018920000c13d000000000001042d0000081c01000041000000000010043f0000001101000039000000040010043f000008130100004100001e10000104300000000902000039000000000302041a000000000013004b000018a00000a13d000000000020043f000007df0110009a0000000002000019000000000001042d0000081c01000041000000000010043f0000003201000039000000040010043f000008130100004100001e1000010430000000000010043f0000000801000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000018c70000613d000000400200043d000008290020009c000018c90000813d000000000301043b0000004001200039000000400010043f000000000103041a0000078e0110019800000000041204360000000102300039000000000202041a0000000000240435000018c10000613d0000ffff0220018f000000000001042d0000000701000039000000000101041a000000a0021002700000078e011001970000ffff0220018f000000000001042d000000000100001900001e10000104300000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e10000104300004000000000002000000000010043f0000000f01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000019090000613d000000000401043b000000000304041a0000000102400039000000000202041a000000000032001a000019100000413d0000000001320019000200020040003d000100000003001d000000000031004b0000190c0000a13d000000010110008a000400000001001d000000000010043f0000000201000029000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f0000000100200190000019090000613d000000000101043b000000000101041a000300000001001d000007fb0100004100000000001004430000000001000414000007850010009c0000078501008041000000c001100210000007fc011001c70000800b020000391e0e1e040000040f00000001002001900000190b0000613d000000000101043b000000030010006c00000001030000290000000401000029000018e50000413d000000000001042d000000000100001900001e1000010430000000000001042f000007fa01000041000000000010043f000007de0100004100001e10000104300000081c01000041000000000010043f0000001101000039000000040010043f000008130100004100001e10000104300010000000000002000700000006001d000600000005001d000e00000004001d000c00000002001d000d00000001001d000000a00070043f000800000003001d000000000030043f0000000f01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d000000000101043b0000000d02000029000000000020043f0000000201100039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d000000400200043d000f00000002001d000008280020009c00001aca0000813d000000000101043b0000000f030000290000010002300039000000400020043f000000000201041a00000000042304360000000102100039000000000202041a000500000004001d00000000002404350000000202100039000000000202041a000000400530003900000000002504350000000302100039000000000202041a000000600630003900000000002604350000000402100039000000000202041a000000800730003900000000002704350000000502100039000000000202041a000000a0083000390000000000280435000000c0093000390000000602100039000000000202041a0000078e0220019700000000002904350000000701100039000000000201041a0000000103200190000000010a2002700000007f0aa0618f0000001f00a0008c00000000040000390000000104002039000000000043004b00001ad40000c13d000400000005001d000000400500043d0000000004a50436000000000003004b0000198e0000613d000100000004001d00100000000a001d000200000005001d000300000009001d000900000008001d000a00000007001d000b00000006001d000000000010043f0000000001000414000007850010009c0000078501008041000000c00110021000000793011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d000000100a00002900000000000a004b000019940000613d000000000201043b00000000010000190000000b060000290000000a07000029000000090800002900000003090000290000000205000029000000010b00002900000000031b0019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000019860000413d0000199a0000013d0000082601200197000000000014043500000000000a004b000000200100003900000000010060390000199a0000013d00000000010000190000000b060000290000000a070000290000000908000029000000030900002900000002050000290000003f0110003900000825021001970000000001520019000000000021004b00000000020000390000000102004039000007cf0010009c00001aca0000213d000000010020019000001aca0000c13d000000400010043f0000000f01000029000000e001100039000000000051043500000000020804330000000001060433000b00000001001d00000000010904330009078e0010019b0000000001070433000000000001004b000a00000002001d00001a670000613d000300000001001d000000a00200043d0000000201000367000000000321034f000000000403043b000000800040043f000000000300003100000000052300490000001f0550008a000007e306400197000007e307500197000000000876013f000000000076004b0000000006000019000007e306002041000000000054004b0000000005000019000007e305004041000007e30080009c000000000605c019000000000006004b00001ac20000613d0000000004240019000000000541034f000000000505043b000007cf0050009c00001ac20000213d000000050550021000000000035300490000002004400039000000000034004b0000000005000019000007e305002041000007e303300197000007e304400197000000000634013f000000000034004b0000000003000019000007e303004041000007e30060009c000000000305c019000000000003004b00001ac20000c13d0000006002200039000000000221034f000000000402043b0000078e0040009c00001ac20000213d0000000c020000290000006005200210000000400200043d00000020032000390000000000530435000000a00500043d0000002005500039000000000551034f000000000505043b00000034062000390000000000560435000000a00500043d0000004005500039000000000151034f0000006004400210000000000101043b000000740520003900000000004504350000005404200039000000000014043500000068010000390000000000120435000007ff0020009c00001aca0000213d000000a001200039000000400010043f000007850030009c000007850300804100000040013002100000000002020433000007850020009c00000785020080410000006002200210000000000112019f0000000002000414000007850020009c0000078502008041000000c002200210000000000112019f0000078f011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d000000000101043b000000c00000043f000000800200043d000000a00400043d00000000032400190000000202000367000000000532034f000000000505043b000000000005004b00001a4f0000613d0000000006000019000000000500001900001a260000013d000000000101043b000000c00200043d0000000106200039000000c00060043f000000800200043d000000a00400043d00000000032400190000000202000367000000000732034f000000000707043b000000000076004b00001a4f0000813d0000000107500210000000000005004b00001a2c0000613d00000000045700d9000000020040008c00001ac40000c13d001000000007001d000000050460021000000000033400190000002003300039000000000232034f000000000202043b000000000021004b00001a420000a13d000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d000000100200002900000001052001bf00001a1a0000013d000000000010043f000000200020043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d000000100500002900001a1a0000013d000000030010006c00001a670000c13d0000002001400039000000000112034f000000000101043b000000000001004b00000000030100190000000b03006029000b00000003001d001000010000003d0000004003400039000000000132034f000000000101043b000008270010009c00001a680000613d0000002003300039000000000232034f000000000202043b0000078e0020009c00001ac20000213d000000000002004b000a00000001001d000900000002c01d00001a680000013d001000000000001d00000008010000290000000f02000039000000000010043f000000200020043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d000000000101043b0000000d02000029000000000020043f0000000301100039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d000000000101043b0000000c020000290000078e02200197000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001ac20000613d00000006020000290000078e022001970000000905000029000000000052004b00000007040000290000000a0600002900001ada0000c13d000000000046004b00001ada0000c13d000000000101043b000000000101041a0000000e020000290000000001210019000000000002004b00001ad00000613d000000000021004b00001ac40000413d0000000b0010006c0000000e0200002900001ad00000213d00000004010000290000000001010433000000000021001a00001ac40000413d0000000e0110002900000005020000290000000002020433000000000021004b00001aea0000213d0000000f010000290000000001010433000f00000001001d000007fb0100004100000000001004430000000001000414000007850010009c0000078501008041000000c001100210000007fc011001c70000800b020000391e0e1e040000040f000000010020019000001af00000613d000000000101043b0000000f03000029000000000013004b00001af10000213d0000001001000029000000000001042d000000000100001900001e10000104300000081c01000041000000000010043f0000001101000039000000040010043f000008130100004100001e10000104300000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e10000104300000082c02000041000000000020043f0000000b0200002900001aec0000013d0000081c01000041000000000010043f0000002201000039000000040010043f000008130100004100001e1000010430000000400100043d0000006403100039000000000063043500000044031000390000000000530435000000240310003900000000004304350000082d03000041000000000031043500000004031000390000000000230435000007850010009c000007850100804100000040011002100000082e011001c700001e10000104300000082b03000041000000000030043f000000040020043f000000240010043f000007ed0100004100001e1000010430000000000001042f0000082a02000041000000000020043f000000040030043f000000240010043f000007ed0100004100001e1000010430000b000000000002000400000003001d000500000002001d000000400300043d0003078e0010019c00001b880000613d000100000001001d000200000004001d000008290030009c00001b820000813d0000004001300039000000400010043f000000010100003900000000041304360000000502000029000900000004001d0000000000240435000000400400043d000007cc0040009c00001b820000213d0000004002400039000000400020043f00000000021404360000000401000029000800000002001d00000000001204350000000001030433000000000001004b00001b3b0000613d0000000002000019000700000003001d000600000004001d0000000001040433000000000021004b00001b7c0000a13d000b00000002001d0000000501200210000000090210002900000008011000290000000001010433000a00000001001d0000000001020433000000000010043f0000000e01000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001b7a0000613d000000000101043b000000000201041a0000000a04000029000000000042001a000000070300002900001b980000413d0000000002420019000000000021041b0000000b0200002900000001022000390000000001030433000000000012004b000000060400002900001b170000413d0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001b7a0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000007850010009c0000078501008041000000c001100210000007cb011001c700008010020000391e0e1e040000040f000000010020019000001b7a0000613d000000000101043b000000000201041a000000040020002a00001b980000413d00000004030000290000000002320019000000000021041b000000400100043d0000002002100039000000000032043500000005020000290000000000210435000007850010009c000007850100804100000040011002100000000002000414000007850020009c0000078502008041000000c002200210000000000112019f000007cb011001c70000800d0200003900000004030000390000000005000411000007ce04000041000000000600001900000003070000291e0e1dff0000040f000000010020019000001b7a0000613d000000000100041100000001020000290000000503000029000000040400002900000002050000291e0e1bb20000040f000000000001042d000000000100001900001e10000104300000081c01000041000000000010043f0000003201000039000000040010043f000008130100004100001e10000104300000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e100001043000000044013000390000080e02000041000000000021043500000024013000390000000c020000390000000000210435000007d6010000410000000000130435000000040130003900000020020000390000000000210435000007850030009c00000785030080410000004001300210000007e8011001c700001e10000104300000081c01000041000000000010043f0000001101000039000000040010043f000008130100004100001e100001043000000040021000390000082f03000041000000000032043500000020021000390000000f030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000400210003900000830030000410000000000320435000000200210003900000010030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0007000000000002000400000005001d000100000004001d000200000003001d000300000001001d000007d1010000410000000000100443000500000002001d00000004002004430000000001000414000007850010009c0000078501008041000000c001100210000007d2011001c700008002020000391e0e1e040000040f000000010020019000001c660000613d000000000101043b000000000001004b00001c630000613d000000400b00043d0000008401b00039000000a00200003900000000002104350000006401b00039000000010200002900000000002104350000004401b0003900000002020000290000000000210435000007d30100004100000000001b043500000003010000290000078e011001970000000402b0003900000000001204350000002401b000390000000000010435000000a402b00039000000040100002900000000310104340000000000120435000000200a00008a0000000005a1016f0000001f0410018f000000c402b00039000000000023004b00001bf40000813d000000000005004b00001bef0000613d00000000074300190000000006420019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00001be90000c13d000000000004004b000000050700002900001c0b0000613d000000000602001900001c010000013d0000000006520019000000000005004b00001bfd0000613d0000000007030019000000000802001900000000790704340000000008980436000000000068004b00001bf90000c13d000000000004004b000000050700002900001c0b0000613d00000000035300190000000304400210000000000506043300000000054501cf000000000545022f00000000030304330000010004400089000000000343022f00000000034301cf000000000353019f00000000003604350000000002210019000000000002043500000000030004140000078e02700197000000040020008c00001c190000c13d0000000005000415000000070550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001c4e0000013d0000001f011000390000000001a1016f000000c401100039000007850010009c000007850100804100000060011002100000078500b0009c000007850400004100000000040b40190000004004400210000000000141019f000007850030009c0000078503008041000000c003300210000000000131019f00050000000b001d1e0e1dff0000040f000000050b00002900000060031002700000078503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900001c3a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001c360000c13d000000000006004b00001c470000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000060550008a0000000505500210000000010020019000001c6d0000613d0000001f01400039000000600110018f0000000004b10019000000000014004b00000000010000390000000101004039000007cf0040009c00001cd40000213d000000010010019000001cd40000c13d000000400040043f0000001f0030008c00001c640000a13d00000000010b0433000007d40010019800001c640000c13d0000000502500270000000000201001f000007d501100197000007d30010009c00001c670000c13d000000000001042d000000000100001900001e1000010430000000000001042f000007d60100004100000000001404350000000401400039000500000004001d1e0e1b9e0000040f00001ca80000013d000000040230008c00001ca20000413d000000000400043d000007d404400197000000000501043b000007d505500197000000000445019f000000000040043f000000440030008c00001ca20000413d000007d504400197000007d60040009c00001ca20000c13d000000040510037000000825062001980000001f0720018f000000400400043d000000000164001900001c860000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b00001c820000c13d000000000007004b00001c930000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005104350000000005040433000007cf0050009c00001ca20000213d0000002401500039000000000031004b00001ca20000213d00000000014500190000000003010433000007cf0030009c00001ca20000213d000000000224001900000000063100190000002006600039000000000026004b00001cb20000a13d000000400200043d000500000002001d000007d601000041000000000012043500000004012000391e0e1ba80000040f00000005020000290000000001210049000007850010009c00000785010080410000006001100210000007850020009c00000785020080410000004002200210000000000121019f00001e100001043000000000023500190000003f0220003900000825022001970000000004420019000000000024004b00000000020000390000000102004039000007cf0040009c00001cd40000213d000000010020019000001cd40000c13d0000000003040019000000400040043f000000000001004b00001ca20000613d000007d6020000410000000004030019000500000003001d000000000023043500000004023000390000002003000039000000000032043500000024024000391e0e18330000040f00000005020000290000000001210049000007850010009c0000078501008041000007850020009c000007850200804100000060011002100000004002200210000000000121019f00001e10000104300000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e10000104300004000000000002000000400400043d000008290040009c00001d9d0000813d0000078e051001970000004001400039000000400010043f0000002001400039000008310300004100000000003104350000002001000039000000000014043500000000230204340000000001000414000000040050008c00001d150000c13d000000010100003200001d500000613d000007cf0010009c00001d9d0000213d0000001f0310003900000825033001970000003f033000390000082503300197000000400a00043d00000000033a00190000000000a3004b00000000040000390000000104004039000007cf0030009c00001d9d0000213d000000010040019000001d9d0000c13d000000400030043f00000000051a043600000825021001980000001f0310018f0000000001250019000000030400036700001d070000613d000000000604034f000000006706043c0000000005750436000000000015004b00001d030000c13d000000000003004b00001d510000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500001d510000013d000200000004001d000007850030009c00000785030080410000006003300210000007850020009c00000785020080410000004002200210000000000223019f000007850010009c0000078501008041000000c001100210000000000112019f000100000005001d00000000020500191e0e1dff0000040f00030000000103550000006003100270000107850030019d000007850430019800001d680000613d0000001f0340003900000802033001970000003f033000390000080303300197000000400a00043d00000000033a00190000000000a3004b00000000050000390000000105004039000007cf0030009c00001d9d0000213d000000010050019000001d9d0000c13d000000400030043f0000001f0540018f00000000034a04360000080406400198000000000463001900001d420000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b00001d3e0000c13d000000000005004b00001d6a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500001d6a0000013d000000600a0000390000000002000415000000040220008a000000050220021000000000010a0433000000000001004b00001d720000c13d00020000000a001d000007d1010000410000000000100443000000040100003900000004001004430000000001000414000007850010009c0000078501008041000000c001100210000007d2011001c700008002020000391e0e1e040000040f000000010020019000001dcf0000613d0000000002000415000000040220008a00001d850000013d000000600a000039000000800300003900000000010a0433000000010020019000001db90000613d0000000002000415000000030220008a0000000502200210000000000001004b00001d750000613d000000050220027000000000020a001f00001d8f0000013d00020000000a001d000007d1010000410000000000100443000000010100002900000004001004430000000001000414000007850010009c0000078501008041000000c001100210000007d2011001c700008002020000391e0e1e040000040f000000010020019000001dcf0000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000020a00002900001dd00000613d00000000010a0433000000050220027000000000020a001f000000000001004b00001d9c0000613d000007d70010009c00001da30000213d000000200010008c00001da30000413d0000002001a000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00001da30000c13d000000000001004b00001da50000613d000000000001042d0000081c01000041000000000010043f0000004101000039000000040010043f000008130100004100001e1000010430000000000100001900001e1000010430000000400100043d00000064021000390000083203000041000000000032043500000044021000390000083303000041000000000032043500000024021000390000002a030000390000000000320435000007d6020000410000000000210435000000040210003900000020030000390000000000320435000007850010009c000007850100804100000040011002100000082e011001c700001e1000010430000000000001004b00001de10000c13d000000400300043d000100000003001d000007d6010000410000000000130435000000040130003900000020020000390000000000210435000000240230003900000002010000291e0e18330000040f00000001020000290000000001210049000007850010009c0000078501008041000007850020009c000007850200804100000060011002100000004002200210000000000121019f00001e1000010430000000000001042f000000400100043d0000004402100039000007e703000041000000000032043500000024021000390000001d030000390000000000320435000007d6020000410000000000210435000000040210003900000020030000390000000000320435000007850010009c00000785010080410000004001100210000007e8011001c700001e1000010430000007850030009c00000785030080410000004002300210000007850010009c00000785010080410000006001100210000000000121019f00001e1000010430000000000001042f000007850010009c00000785010080410000004001100210000007850020009c00000785020080410000006002200210000000000112019f0000000002000414000007850020009c0000078502008041000000c002200210000000000112019f0000078f011001c700008010020000391e0e1e040000040f000000010020019000001dfd0000613d000000000101043b000000000001042d000000000100001900001e100001043000001e02002104210000000102000039000000000001042d0000000002000019000000000001042d00001e07002104230000000102000039000000000001042d0000000002000019000000000001042d00001e0c002104250000000102000039000000000001042d0000000002000019000000000001042d00001e0e0000043200001e0f0001042e00001e100001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4d79436f6e747261637400000000000000000000000000000000000000000000290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563d6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d4d79436f6e747261637400000000000000000000000000000000000000000014b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30affffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000215db47f1b2ae03ec45024cf62ce82879b137469000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d76ffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000003e8215db47f1b2ae03ec45024cf62ce82879b137469020000000000000000000000000000000000002000000000000000000000000090d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006b20c45300000000000000000000000000000000000000000000000000000000bd85b03800000000000000000000000000000000000000000000000000000000e9703d2400000000000000000000000000000000000000000000000000000000ea1def9b00000000000000000000000000000000000000000000000000000000ea1def9c00000000000000000000000000000000000000000000000000000000f242432a00000000000000000000000000000000000000000000000000000000f5298aca00000000000000000000000000000000000000000000000000000000e9703d2500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000d45b28d600000000000000000000000000000000000000000000000000000000d45b28d700000000000000000000000000000000000000000000000000000000d79578d400000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000bd85b03900000000000000000000000000000000000000000000000000000000d37c353b0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000ac9650d800000000000000000000000000000000000000000000000000000000b24f2d390000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009bcf7a15000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000938e3d7b000000000000000000000000000000000000000000000000000000006b20c4540000000000000000000000000000000000000000000000000000000083040532000000000000000000000000000000000000000000000000000000002eb2c2d50000000000000000000000000000000000000000000000000000000057bc3d77000000000000000000000000000000000000000000000000000000005ab063e7000000000000000000000000000000000000000000000000000000005ab063e800000000000000000000000000000000000000000000000000000000600dd5ea0000000000000000000000000000000000000000000000000000000063b45e2d0000000000000000000000000000000000000000000000000000000057bc3d78000000000000000000000000000000000000000000000000000000005811ddab000000000000000000000000000000000000000000000000000000004bbb1abe000000000000000000000000000000000000000000000000000000004bbb1abf000000000000000000000000000000000000000000000000000000004cc157df000000000000000000000000000000000000000000000000000000004e1273f4000000000000000000000000000000000000000000000000000000002eb2c2d6000000000000000000000000000000000000000000000000000000003b1475a70000000000000000000000000000000000000000000000000000000013af4034000000000000000000000000000000000000000000000000000000002419f51a000000000000000000000000000000000000000000000000000000002419f51b000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002bc43fd90000000000000000000000000000000000000000000000000000000013af403500000000000000000000000000000000000000000000000000000000183718d10000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000e89341c0000000000000000000000000000000000000000000000000000000000fdd58e0000000000000000000000000000000000000000000000000000000001ffc9a70200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf000000000000000000000000000000000000000000000000ffffffffffffffdfc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff1f1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000f23a6e610000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000e000000000000000000000000000000000000000000000000000000040000000e0000000000000000046524f4d5f5a45524f5f414444520000000000000000000000000000000000000000000000000000000000000000000000000064000000e00000000000000000f409ec7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000091eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a38512a0365091ef1a40953c670dce28177e37520648a6fdc91506bffac0ab045570d8fd36a9b000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000000000000000000000000000000000000000006400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31415050524f56494e475f53454c460000000000000000000000000000000000007365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d524985680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000009f7f092500000000000000000000000000000000000000000000000000000000036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c250fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c24fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a16556e617070726f7665642063616c6c65720000000000000000000000000000004c656e677468206d69736d6174636800000000000000000000000000000000004e6f7420656e6f75676820746f6b656e73206f776e65640000000000000000004a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fbdf5c6b020000000000000000000000000000000000000000000000000000000000000000000000000000ffff00000000000000000000000000000000000000000200000000000000000000000000000000000020000000e00000000000000000f40f1cc000000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee23b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff5fa9059cbb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0bfb89d82000000000000000000000000000000000000000000000000000000004d7573742073656e6420746f74616c2070726963652e00000000000000000000fa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e00000000000000000000000000000000000000000000003fffffffffffffffe00000000000000000000000000000000000000040000000000000000000000000214f574e45525f4f525f415050524f56454400000000000000000000000000004c454e4754485f4d49534d415443480000000000000000000000000000000000494e53554646494349454e545f42414c00000000000000000000000000000000bc197c8100000000000000000000000000000000000000000000000000000000544f5f5a45524f5f414444520000000000000000000000000000000000000000696e76616c696420696400000000000000000000000000000000000000000000ff097c7d8b1957a4ff09ef1361b5fb54dcede3941ba836d0beb9d10bec725de65265656e7472616e637947756172643a207265656e7472616e742063616c6c000f2624ee00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000056c4ef510000000000000000000000000000000000000000000000000000000053540000000000000000000000000000000000000000000000000000000000000656a73e00000000000000000000000000000000000000000000000000000000066f72a648b18490c0bc4ab07d508cdb5d6589fa188c63cfba1e0547f3a6556a2d997396000000000000000000000000000000000000000000000000000000006e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af000000000000000000000000000000000000000000000000ffffffffffffff20000000000000000000000000000000000000000000000000fffffffffffffffe4e487b710000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff300000000000000000000000000000000000000000000000000000000000000025e5fda4000000000000000000000000000000000000000000000000000000002a552059ffffffffffffffffffffffffffffffffffffffffffffffffffffffff2a55205a00000000000000000000000000000000000000000000000000000000d9b67a260000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000e89341c00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff00000000000000000000000000000000000000000000000000ffffffffffffffc04562091e00000000000000000000000000000000000000000000000000000000fe381cc9000000000000000000000000000000000000000000000000000000009e7762db00000000000000000000000000000000000000000000000000000000f13474e9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000544f4b454e535f52454a4543544544000000000000000000000000000000000021455243313135355245434549564552000000000000000000000000000000005361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e9979a9065d12d8bd43d89fafcc134147796509ac62cf138964a809c6829e2c41
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.