Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
207782 | 5 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
DropERC721
Compiler Version
v0.8.23+commit.f704f362
ZkSolc Version
v1.5.4
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; /// @author thirdweb // $$\ $$\ $$\ $$\ $$\ // $$ | $$ | \__| $$ | $$ | // $$$$$$\ $$$$$$$\ $$\ $$$$$$\ $$$$$$$ |$$\ $$\ $$\ $$$$$$\ $$$$$$$\ // \_$$ _| $$ __$$\ $$ |$$ __$$\ $$ __$$ |$$ | $$ | $$ |$$ __$$\ $$ __$$\ // $$ | $$ | $$ |$$ |$$ | \__|$$ / $$ |$$ | $$ | $$ |$$$$$$$$ |$$ | $$ | // $$ |$$\ $$ | $$ |$$ |$$ | $$ | $$ |$$ | $$ | $$ |$$ ____|$$ | $$ | // \$$$$ |$$ | $$ |$$ |$$ | \$$$$$$$ |\$$$$$\$$$$ |\$$$$$$$\ $$$$$$$ | // \____/ \__| \__|\__|\__| \_______| \_____\____/ \_______|\_______/ // ========== External imports ========== import "../../extension/Multicall.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; import "../../eip/ERC721AVirtualApproveUpgradeable.sol"; // ========== Internal imports ========== import "../../external-deps/openzeppelin/metatx/ERC2771ContextUpgradeable.sol"; import "../../lib/CurrencyTransferLib.sol"; // ========== Features ========== import "../../extension/ContractMetadata.sol"; import "../../extension/PlatformFee.sol"; import "../../extension/Royalty.sol"; import "../../extension/PrimarySale.sol"; import "../../extension/Ownable.sol"; import "../../extension/DelayedReveal.sol"; import "../../extension/LazyMint.sol"; import "../../extension/PermissionsEnumerable.sol"; import "../../extension/Drop.sol"; contract DropERC721 is Initializable, ContractMetadata, PlatformFee, Royalty, PrimarySale, Ownable, DelayedReveal, LazyMint, PermissionsEnumerable, Drop, ERC2771ContextUpgradeable, Multicall, ERC721AUpgradeable { using StringsUpgradeable for uint256; /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev Only transfers to or from TRANSFER_ROLE holders are valid, when transfers are restricted. bytes32 private transferRole; /// @dev Only MINTER_ROLE holders can sign off on `MintRequest`s and lazy mint tokens. bytes32 private minterRole; /// @dev Only METADATA_ROLE holders can reveal the URI for a batch of delayed reveal NFTs, and update or freeze batch metadata. bytes32 private metadataRole; /// @dev Max bps in the thirdweb system. uint256 private constant MAX_BPS = 10_000; /// @dev Global max total supply of NFTs. uint256 public maxTotalSupply; /// @dev Emitted when the global max supply of tokens is updated. event MaxTotalSupplyUpdated(uint256 maxTotalSupply); /*/////////////////////////////////////////////////////////////// Constructor + initializer logic //////////////////////////////////////////////////////////////*/ constructor() initializer {} /// @dev Initializes the contract, like a constructor. function initialize( address _defaultAdmin, string memory _name, string memory _symbol, string memory _contractURI, address[] memory _trustedForwarders, address _saleRecipient, address _royaltyRecipient, uint128 _royaltyBps, uint128 _platformFeeBps, address _platformFeeRecipient ) external initializer { bytes32 _transferRole = keccak256("TRANSFER_ROLE"); bytes32 _minterRole = keccak256("MINTER_ROLE"); bytes32 _metadataRole = keccak256("METADATA_ROLE"); // Initialize inherited contracts, most base-like -> most derived. __ERC2771Context_init(_trustedForwarders); __ERC721A_init(_name, _symbol); _setupContractURI(_contractURI); _setupOwner(_defaultAdmin); _setupRole(DEFAULT_ADMIN_ROLE, _defaultAdmin); _setupRole(_minterRole, _defaultAdmin); _setupRole(_transferRole, _defaultAdmin); _setupRole(_transferRole, address(0)); _setupRole(_metadataRole, _defaultAdmin); _setRoleAdmin(_metadataRole, _metadataRole); _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); _setupPrimarySaleRecipient(_saleRecipient); transferRole = _transferRole; minterRole = _minterRole; metadataRole = _metadataRole; } /*/////////////////////////////////////////////////////////////// ERC 165 / 721 / 2981 logic //////////////////////////////////////////////////////////////*/ /// @dev Returns the URI for a given tokenId. function tokenURI(uint256 _tokenId) public view override returns (string memory) { (uint256 batchId, ) = _getBatchId(_tokenId); string memory batchUri = _getBaseURI(_tokenId); if (isEncryptedBatch(batchId)) { return string(abi.encodePacked(batchUri, "0")); } else { return string(abi.encodePacked(batchUri, _tokenId.toString())); } } /// @dev See ERC 165 function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721AUpgradeable, IERC165) returns (bool) { return super.supportsInterface(interfaceId) || type(IERC2981Upgradeable).interfaceId == interfaceId; } /*/////////////////////////////////////////////////////////////// Contract identifiers //////////////////////////////////////////////////////////////*/ function contractType() external pure returns (bytes32) { return bytes32("DropERC721"); } function contractVersion() external pure returns (uint8) { return uint8(4); } /*/////////////////////////////////////////////////////////////// Lazy minting + delayed-reveal logic //////////////////////////////////////////////////////////////*/ /** * @dev Lets an account with `MINTER_ROLE` lazy mint 'n' NFTs. * The URIs for each token is the provided `_baseURIForTokens` + `{tokenId}`. */ function lazyMint( uint256 _amount, string calldata _baseURIForTokens, bytes calldata _data ) public override returns (uint256 batchId) { if (_data.length > 0) { (bytes memory encryptedURI, bytes32 provenanceHash) = abi.decode(_data, (bytes, bytes32)); if (encryptedURI.length != 0 && provenanceHash != "") { _setEncryptedData(nextTokenIdToLazyMint + _amount, _data); } } return super.lazyMint(_amount, _baseURIForTokens, _data); } /// @dev Lets an account with `METADATA_ROLE` reveal the URI for a batch of 'delayed-reveal' NFTs. /// @param _index the ID of a token with the desired batch. /// @param _key the key to decrypt the batch's URI. function reveal( uint256 _index, bytes calldata _key ) external onlyRole(metadataRole) returns (string memory revealedURI) { uint256 batchId = getBatchIdAtIndex(_index); revealedURI = getRevealURI(batchId, _key); _setEncryptedData(batchId, ""); _setBaseURI(batchId, revealedURI); emit TokenURIRevealed(_index, revealedURI); } /** * @notice Updates the base URI for a batch of tokens. Can only be called if the batch has been revealed/is not encrypted. * * @param _index Index of the desired batch in batchIds array * @param _uri the new base URI for the batch. */ function updateBatchBaseURI(uint256 _index, string calldata _uri) external onlyRole(metadataRole) { require(!isEncryptedBatch(getBatchIdAtIndex(_index)), "Encrypted batch"); uint256 batchId = getBatchIdAtIndex(_index); _setBaseURI(batchId, _uri); } /** * @notice Freezes the base URI for a batch of tokens. * * @param _index Index of the desired batch in batchIds array. */ function freezeBatchBaseURI(uint256 _index) external onlyRole(metadataRole) { require(!isEncryptedBatch(getBatchIdAtIndex(_index)), "Encrypted batch"); uint256 batchId = getBatchIdAtIndex(_index); _freezeBaseURI(batchId); } /*/////////////////////////////////////////////////////////////// Setter functions //////////////////////////////////////////////////////////////*/ /// @dev Lets a contract admin set the global maximum supply for collection's NFTs. function setMaxTotalSupply(uint256 _maxTotalSupply) external onlyRole(DEFAULT_ADMIN_ROLE) { maxTotalSupply = _maxTotalSupply; emit MaxTotalSupplyUpdated(_maxTotalSupply); } /*/////////////////////////////////////////////////////////////// Internal functions //////////////////////////////////////////////////////////////*/ /// @dev Runs before every `claim` function call. function _beforeClaim( address, uint256 _quantity, address, uint256, AllowlistProof calldata, bytes memory ) internal view override { require(_currentIndex + _quantity <= nextTokenIdToLazyMint, "!Tokens"); require(maxTotalSupply == 0 || _currentIndex + _quantity <= maxTotalSupply, "!Supply"); } /// @dev Collects and distributes the primary sale value of NFTs being claimed. function _collectPriceOnClaim( address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal override { if (_pricePerToken == 0) { require(msg.value == 0, "!V"); return; } (address platformFeeRecipient, uint16 platformFeeBps) = getPlatformFeeInfo(); address saleRecipient = _primarySaleRecipient == address(0) ? primarySaleRecipient() : _primarySaleRecipient; uint256 totalPrice = _quantityToClaim * _pricePerToken; uint256 platformFees = (totalPrice * platformFeeBps) / MAX_BPS; bool validMsgValue; if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { validMsgValue = msg.value == totalPrice; } else { validMsgValue = msg.value == 0; } require(validMsgValue, "!V"); CurrencyTransferLib.transferCurrency(_currency, _msgSender(), platformFeeRecipient, platformFees); CurrencyTransferLib.transferCurrency(_currency, _msgSender(), saleRecipient, totalPrice - platformFees); } /// @dev Transfers the NFTs being claimed. function _transferTokensOnClaim( address _to, uint256 _quantityBeingClaimed ) internal override returns (uint256 startTokenId) { startTokenId = _currentIndex; _safeMint(_to, _quantityBeingClaimed); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether owner can be set in the given execution context. function _canSetOwner() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetClaimConditions() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Returns whether lazy minting can be done in the given execution context. function _canLazyMint() internal view virtual override returns (bool) { return hasRole(minterRole, _msgSender()); } /*/////////////////////////////////////////////////////////////// Miscellaneous //////////////////////////////////////////////////////////////*/ /** * Returns the total amount of tokens minted in the contract. */ function totalMinted() external view returns (uint256) { return _totalMinted(); } /// @dev The tokenId of the next NFT that will be minted / lazy minted. function nextTokenIdToMint() external view returns (uint256) { return nextTokenIdToLazyMint; } /// @dev The next token ID of the NFT that can be claimed. function nextTokenIdToClaim() external view returns (uint256) { return _currentIndex; } /// @dev Burns `tokenId`. See {ERC721-_burn}. function burn(uint256 tokenId) external virtual { // note: ERC721AUpgradeable's `_burn(uint256,bool)` internally checks for token approvals. _burn(tokenId, true); } /// @dev See {ERC721-_beforeTokenTransfer}. function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override { super._beforeTokenTransfers(from, to, startTokenId, quantity); // if transfer is restricted on the contract, we still want to allow burning and minting if (!hasRole(transferRole, address(0)) && from != address(0) && to != address(0)) { if (!hasRole(transferRole, from) && !hasRole(transferRole, to)) { revert("!Transfer-Role"); } } } function _dropMsgSender() internal view virtual override returns (address) { return _msgSender(); } function _msgSender() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable, Multicall) returns (address sender) { return ERC2771ContextUpgradeable._msgSender(); } function _msgData() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (bytes calldata) { return ERC2771ContextUpgradeable._msgData(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981Upgradeable is IERC165Upgradeable { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * 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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; import "./math/SignedMathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMathUpgradeable.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMathUpgradeable { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs ////////// CHANGELOG: turn `approve` to virtual ////////// pragma solidity ^0.8.4; import "erc721a-upgradeable/contracts/IERC721AUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721AUpgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721AUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function __ERC721A_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721A_init_unchained(name_, symbol_); } function __ERC721A_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721AUpgradeable.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if (!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 quantity, bytes memory _data) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex += 1; } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId, address owner) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == IERC721ReceiverUpgradeable(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal virtual {} /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[42] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * [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; /** * @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; 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); }
// 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/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 "./interface/IDelayedReveal.sol"; /** * @title Delayed Reveal * @notice Thirdweb's `DelayedReveal` is a contract extension for base NFT contracts. It lets you create batches of * 'delayed-reveal' NFTs. You can learn more about the usage of delayed reveal NFTs here - https://blog.thirdweb.com/delayed-reveal-nfts */ abstract contract DelayedReveal is IDelayedReveal { /// @dev The contract doesn't have any url to be delayed revealed error DelayedRevealNothingToReveal(); /// @dev The result of the returned an incorrect hash error DelayedRevealIncorrectResultHash(bytes32 expected, bytes32 actual); /// @dev Mapping from tokenId of a batch of tokens => to delayed reveal data. mapping(uint256 => bytes) public encryptedData; /// @dev Sets the delayed reveal data for a batchId. function _setEncryptedData(uint256 _batchId, bytes memory _encryptedData) internal { encryptedData[_batchId] = _encryptedData; } /** * @notice Returns revealed URI for a batch of NFTs. * @dev Reveal encrypted base URI for `_batchId` with caller/admin's `_key` used for encryption. * Reverts if there's no encrypted URI for `_batchId`. * See {encryptDecrypt}. * * @param _batchId ID of the batch for which URI is being revealed. * @param _key Secure key used by caller/admin for encryption of baseURI. * * @return revealedURI Decrypted base URI. */ function getRevealURI(uint256 _batchId, bytes calldata _key) public view returns (string memory revealedURI) { bytes memory data = encryptedData[_batchId]; if (data.length == 0) { revert DelayedRevealNothingToReveal(); } (bytes memory encryptedURI, bytes32 provenanceHash) = abi.decode(data, (bytes, bytes32)); revealedURI = string(encryptDecrypt(encryptedURI, _key)); if (keccak256(abi.encodePacked(revealedURI, _key, block.chainid)) != provenanceHash) { revert DelayedRevealIncorrectResultHash( provenanceHash, keccak256(abi.encodePacked(revealedURI, _key, block.chainid)) ); } } /** * @notice Encrypt/decrypt data on chain. * @dev Encrypt/decrypt given `data` with `key`. Uses inline assembly. * See: https://ethereum.stackexchange.com/questions/69825/decrypt-message-on-chain * * @param data Bytes of data to encrypt/decrypt. * @param key Secure key used by caller for encryption/decryption. * * @return result Output after encryption/decryption of given data. */ function encryptDecrypt(bytes memory data, bytes calldata key) public pure override returns (bytes memory result) { // Store data length on stack for later use uint256 length = data.length; // solhint-disable-next-line no-inline-assembly assembly { // Set result to free memory pointer result := mload(0x40) // Increase free memory pointer by lenght + 32 mstore(0x40, add(add(result, length), 32)) // Set result length mstore(result, length) } // Iterate over the data stepping by 32 bytes for (uint256 i = 0; i < length; i += 32) { // Generate hash of the key and offset bytes32 hash = keccak256(abi.encodePacked(key, i)); bytes32 chunk; // solhint-disable-next-line no-inline-assembly assembly { // Read 32-bytes data chunk chunk := mload(add(data, add(i, 32))) } // XOR the chunk with hash chunk ^= hash; // solhint-disable-next-line no-inline-assembly assembly { // Write 32-byte encrypted chunk mstore(add(result, add(i, 32)), chunk) } } } /** * @notice Returns whether the relvant batch of NFTs is subject to a delayed reveal. * @dev Returns `true` if `_batchId`'s base URI is encrypted. * @param _batchId ID of a batch of NFTs. */ function isEncryptedBatch(uint256 _batchId) public view returns (bool) { return encryptedData[_batchId].length > 0; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IDrop.sol"; import "../lib/MerkleProof.sol"; abstract contract Drop is IDrop { /// @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 The active conditions for claiming tokens. ClaimConditionList public claimCondition; /*/////////////////////////////////////////////////////////////// Drop logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account claim tokens. function claim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) public payable virtual override { _beforeClaim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); uint256 activeConditionId = getActiveClaimConditionId(); verifyClaim(activeConditionId, _dropMsgSender(), _quantity, _currency, _pricePerToken, _allowlistProof); // Update contract state. claimCondition.conditions[activeConditionId].supplyClaimed += _quantity; claimCondition.supplyClaimedByWallet[activeConditionId][_dropMsgSender()] += _quantity; // If there's a price, collect price. _collectPriceOnClaim(address(0), _quantity, _currency, _pricePerToken); // Mint the relevant tokens to claimer. uint256 startTokenId = _transferTokensOnClaim(_receiver, _quantity); emit TokensClaimed(activeConditionId, _dropMsgSender(), _receiver, startTokenId, _quantity); _afterClaim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); } /// @dev Lets a contract admin set claim conditions. function setClaimConditions( ClaimCondition[] calldata _conditions, bool _resetClaimEligibility ) external virtual override { if (!_canSetClaimConditions()) { revert DropUnauthorized(); } uint256 existingStartIndex = claimCondition.currentStartId; uint256 existingPhaseCount = claimCondition.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; } claimCondition.count = _conditions.length; claimCondition.currentStartId = newStartIndex; uint256 lastConditionStartTimestamp; for (uint256 i = 0; i < _conditions.length; i++) { require(i == 0 || lastConditionStartTimestamp < _conditions[i].startTimestamp, "ST"); uint256 supplyClaimedAlready = claimCondition.conditions[newStartIndex + i].supplyClaimed; if (supplyClaimedAlready > _conditions[i].maxClaimableSupply) { revert DropExceedMaxSupply(); } claimCondition.conditions[newStartIndex + i] = _conditions[i]; claimCondition.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 claimCondition.conditions[i]; } } else { if (existingPhaseCount > _conditions.length) { for (uint256 i = _conditions.length; i < existingPhaseCount; i++) { delete claimCondition.conditions[newStartIndex + i]; } } } emit ClaimConditionsUpdated(_conditions, _resetClaimEligibility); } /// @dev Checks a request to claim NFTs against the active claim condition's criteria. function verifyClaim( uint256 _conditionId, address _claimer, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof ) public view virtual returns (bool isOverride) { ClaimCondition memory currentClaimPhase = claimCondition.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.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() public view returns (uint256) { for (uint256 i = claimCondition.currentStartId + claimCondition.count; i > claimCondition.currentStartId; i--) { if (block.timestamp >= claimCondition.conditions[i - 1].startTimestamp) { return i - 1; } } revert DropNoActiveCondition(); } /// @dev Returns the claim condition at the given uid. function getClaimConditionById(uint256 _conditionId) external view returns (ClaimCondition memory condition) { condition = claimCondition.conditions[_conditionId]; } /// @dev Returns the supply claimed by claimer for a given conditionId. function getSupplyClaimedByWallet( uint256 _conditionId, address _claimer ) public view returns (uint256 supplyClaimedByWallet) { supplyClaimedByWallet = claimCondition.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( 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( 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( address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual; /// @dev Transfers the NFTs being claimed. function _transferTokensOnClaim( address _to, uint256 _quantityBeingClaimed ) internal virtual returns (uint256 startTokenId); /// @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 "./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 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/IPermissions.sol"; import "../lib/Strings.sol"; /** * @title Permissions * @dev This contracts provides extending-contracts with role-based access control mechanisms */ contract Permissions is IPermissions { /// @dev The `account` is missing a role. error PermissionsUnauthorizedAccount(address account, bytes32 neededRole); /// @dev The `account` already is a holder of `role` error PermissionsAlreadyGranted(address account, bytes32 role); /// @dev Invalid priviledge to revoke error PermissionsInvalidPermission(address expected, address actual); /// @dev Map from keccak256 hash of a role => a map from address => whether address has role. mapping(bytes32 => mapping(address => bool)) private _hasRole; /// @dev Map from keccak256 hash of a role to role admin. See {getRoleAdmin}. mapping(bytes32 => bytes32) private _getRoleAdmin; /// @dev Default admin role for all roles. Only accounts with this role can grant/revoke other roles. bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @dev Modifier that checks if an account has the specified role; reverts otherwise. modifier onlyRole(bytes32 role) { _checkRole(role, msg.sender); _; } /** * @notice Checks whether an account has a particular role. * @dev Returns `true` if `account` has been granted `role`. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _hasRole[role][account]; } /** * @notice Checks whether an account has a particular role; * role restrictions can be swtiched on and off. * * @dev Returns `true` if `account` has been granted `role`. * Role restrictions can be swtiched on and off: * - If address(0) has ROLE, then the ROLE restrictions * don't apply. * - If address(0) does not have ROLE, then the ROLE * restrictions will apply. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRoleWithSwitch(bytes32 role, address account) public view returns (bool) { if (!_hasRole[role][address(0)]) { return _hasRole[role][account]; } return true; } /** * @notice Returns the admin role that controls the specified role. * @dev See {grantRole} and {revokeRole}. * To change a role's admin, use {_setRoleAdmin}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function getRoleAdmin(bytes32 role) external view override returns (bytes32) { return _getRoleAdmin[role]; } /** * @notice Grants a role to an account, if not previously granted. * @dev Caller must have admin role for the `role`. * Emits {RoleGranted Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account to which the role is being granted. */ function grantRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); if (_hasRole[role][account]) { revert PermissionsAlreadyGranted(account, role); } _setupRole(role, account); } /** * @notice Revokes role from an account. * @dev Caller must have admin role for the `role`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function revokeRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); _revokeRole(role, account); } /** * @notice Revokes role from the account. * @dev Caller must have the `role`, with caller being the same as `account`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function renounceRole(bytes32 role, address account) public virtual override { if (msg.sender != account) { revert PermissionsInvalidPermission(msg.sender, account); } _revokeRole(role, account); } /// @dev Sets `adminRole` as `role`'s admin role. function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = _getRoleAdmin[role]; _getRoleAdmin[role] = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /// @dev Sets up `role` for `account` function _setupRole(bytes32 role, address account) internal virtual { _hasRole[role][account] = true; emit RoleGranted(role, account, msg.sender); } /// @dev Revokes `role` from `account` function _revokeRole(bytes32 role, address account) internal virtual { _checkRole(role, account); delete _hasRole[role][account]; emit RoleRevoked(role, account, msg.sender); } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRole(bytes32 role, address account) internal view virtual { if (!_hasRole[role][account]) { revert PermissionsUnauthorizedAccount(account, role); } } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRoleWithSwitch(bytes32 role, address account) internal view virtual { if (!hasRoleWithSwitch(role, account)) { revert PermissionsUnauthorizedAccount(account, role); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPermissionsEnumerable.sol"; import "./Permissions.sol"; /** * @title PermissionsEnumerable * @dev This contracts provides extending-contracts with role-based access control mechanisms. * Also provides interfaces to view all members with a given role, and total count of members. */ contract PermissionsEnumerable is IPermissionsEnumerable, Permissions { /** * @notice A data structure to store data of members for a given role. * * @param index Current index in the list of accounts that have a role. * @param members map from index => address of account that has a role * @param indexOf map from address => index which the account has. */ struct RoleMembers { uint256 index; mapping(uint256 => address) members; mapping(address => uint256) indexOf; } /// @dev map from keccak256 hash of a role to its members' data. See {RoleMembers}. mapping(bytes32 => RoleMembers) private roleMembers; /** * @notice Returns the role-member from a list of members for a role, * at a given index. * @dev Returns `member` who has `role`, at `index` of role-members list. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param index Index in list of current members for the role. * * @return member Address of account that has `role` */ function getRoleMember(bytes32 role, uint256 index) external view override returns (address member) { uint256 currentIndex = roleMembers[role].index; uint256 check; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { if (check == index) { member = roleMembers[role].members[i]; return member; } check += 1; } else if (hasRole(role, address(0)) && i == roleMembers[role].indexOf[address(0)]) { check += 1; } } } /** * @notice Returns total number of accounts that have a role. * @dev Returns `count` of accounts that have `role`. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * * @return count Total number of accounts that have `role` */ function getRoleMemberCount(bytes32 role) external view override returns (uint256 count) { uint256 currentIndex = roleMembers[role].index; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { count += 1; } } if (hasRole(role, address(0))) { count += 1; } } /// @dev Revokes `role` from `account`, and removes `account` from {roleMembers} /// See {_removeMember} function _revokeRole(bytes32 role, address account) internal override { super._revokeRole(role, account); _removeMember(role, account); } /// @dev Grants `role` to `account`, and adds `account` to {roleMembers} /// See {_addMember} function _setupRole(bytes32 role, address account) internal override { super._setupRole(role, account); _addMember(role, account); } /// @dev adds `account` to {roleMembers}, for `role` function _addMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].index; roleMembers[role].index += 1; roleMembers[role].members[idx] = account; roleMembers[role].indexOf[account] = idx; } /// @dev removes `account` from {roleMembers}, for `role` function _removeMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].indexOf[account]; delete roleMembers[role].members[idx]; delete roleMembers[role].indexOf[account]; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPlatformFee.sol"; /** * @title Platform Fee * @notice Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ abstract contract PlatformFee is IPlatformFee { /// @dev The sender is not authorized to perform the action error PlatformFeeUnauthorized(); /// @dev The recipient is invalid error PlatformFeeInvalidRecipient(address recipient); /// @dev The fee bps exceeded the max value error PlatformFeeExceededMaxFeeBps(uint256 max, uint256 actual); /// @dev The address that receives all platform fees from all sales. address private platformFeeRecipient; /// @dev The % of primary sales collected as platform fees. uint16 private platformFeeBps; /// @dev Fee type variants: percentage fee and flat fee PlatformFeeType private platformFeeType; /// @dev The flat amount collected by the contract as fees on primary sales. uint256 private flatPlatformFee; /// @dev Returns the platform fee recipient and bps. function getPlatformFeeInfo() public view override returns (address, uint16) { return (platformFeeRecipient, uint16(platformFeeBps)); } /// @dev Returns the platform fee bps and recipient. function getFlatPlatformFeeInfo() public view returns (address, uint256) { return (platformFeeRecipient, flatPlatformFee); } /// @dev Returns the platform fee type. function getPlatformFeeType() public view returns (PlatformFeeType) { return platformFeeType; } /** * @notice Updates the platform fee recipient and bps. * @dev Caller should be authorized to set platform fee info. * See {_canSetPlatformFeeInfo}. * Emits {PlatformFeeInfoUpdated Event}; See {_setupPlatformFeeInfo}. * * @param _platformFeeRecipient Address to be set as new platformFeeRecipient. * @param _platformFeeBps Updated platformFeeBps. */ function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external override { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); } /// @dev Sets the platform fee recipient and bps function _setupPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) internal { if (_platformFeeBps > 10_000) { revert PlatformFeeExceededMaxFeeBps(10_000, _platformFeeBps); } if (_platformFeeRecipient == address(0)) { revert PlatformFeeInvalidRecipient(_platformFeeRecipient); } platformFeeBps = uint16(_platformFeeBps); platformFeeRecipient = _platformFeeRecipient; emit PlatformFeeInfoUpdated(_platformFeeRecipient, _platformFeeBps); } /// @notice Lets a module admin set a flat fee on primary sales. function setFlatPlatformFeeInfo(address _platformFeeRecipient, uint256 _flatFee) external { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupFlatPlatformFeeInfo(_platformFeeRecipient, _flatFee); } /// @dev Sets a flat fee on primary sales. function _setupFlatPlatformFeeInfo(address _platformFeeRecipient, uint256 _flatFee) internal { flatPlatformFee = _flatFee; platformFeeRecipient = _platformFeeRecipient; emit FlatPlatformFeeUpdated(_platformFeeRecipient, _flatFee); } /// @notice Lets a module admin set platform fee type. function setPlatformFeeType(PlatformFeeType _feeType) external { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupPlatformFeeType(_feeType); } /// @dev Sets platform fee type. function _setupPlatformFeeType(PlatformFeeType _feeType) internal { platformFeeType = _feeType; emit PlatformFeeTypeUpdated(_feeType); } /// @dev Returns whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPrimarySale.sol"; /** * @title Primary Sale * @notice Thirdweb's `PrimarySale` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ abstract contract PrimarySale is IPrimarySale { /// @dev The sender is not authorized to perform the action error PrimarySaleUnauthorized(); /// @dev The recipient is invalid error PrimarySaleInvalidRecipient(address recipient); /// @dev The address that receives all primary sales value. address private recipient; /// @dev Returns primary sale recipient address. function primarySaleRecipient() public view override returns (address) { return recipient; } /** * @notice Updates primary sale recipient. * @dev Caller should be authorized to set primary sales info. * See {_canSetPrimarySaleRecipient}. * Emits {PrimarySaleRecipientUpdated Event}; See {_setupPrimarySaleRecipient}. * * @param _saleRecipient Address to be set as new recipient of primary sales. */ function setPrimarySaleRecipient(address _saleRecipient) external override { if (!_canSetPrimarySaleRecipient()) { revert PrimarySaleUnauthorized(); } _setupPrimarySaleRecipient(_saleRecipient); } /// @dev Lets a contract admin set the recipient for all primary sales. function _setupPrimarySaleRecipient(address _saleRecipient) internal { if (_saleRecipient == address(0)) { revert PrimarySaleInvalidRecipient(_saleRecipient); } recipient = _saleRecipient; emit PrimarySaleRecipientUpdated(_saleRecipient); } /// @dev Returns whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() 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 /** * 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: 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; /// @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.0; /// @author thirdweb /** * Thirdweb's `DelayedReveal` is a contract extension for base NFT contracts. It lets you create batches of * 'delayed-reveal' NFTs. You can learn more about the usage of delayed reveal NFTs here - https://blog.thirdweb.com/delayed-reveal-nfts */ interface IDelayedReveal { /// @dev Emitted when tokens are revealed. event TokenURIRevealed(uint256 indexed index, string revealedURI); /** * @notice Reveals a batch of delayed reveal NFTs. * * @param identifier The ID for the batch of delayed-reveal NFTs to reveal. * * @param key The key with which the base URI for the relevant batch of NFTs was encrypted. */ function reveal(uint256 identifier, bytes calldata key) external returns (string memory revealedURI); /** * @notice Performs XOR encryption/decryption. * * @param data The data to encrypt. In the case of delayed-reveal NFTs, this is the "revealed" state * base URI of the relevant batch of NFTs. * * @param key The key with which to encrypt data */ function encryptDecrypt(bytes memory data, bytes calldata key) external pure returns (bytes memory result); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IClaimConditionMultiPhase.sol"; /** * The interface `IDrop` 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 IDrop 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 via `claim`. event TokensClaimed( uint256 indexed claimConditionIndex, address indexed claimer, address indexed receiver, uint256 startTokenId, uint256 quantityClaimed ); /// @notice Emitted when the contract's claim conditions are updated. event ClaimConditionsUpdated(ClaimCondition[] claimConditions, bool resetEligibility); /** * @notice Lets an account claim a given quantity of NFTs. * * @param receiver The receiver of the NFTs 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 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 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(ClaimCondition[] calldata phases, bool resetClaimEligibility) external; }
// 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: 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 /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IPermissions { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IPermissions.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IPermissionsEnumerable is IPermissions { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * [forum post](https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296) * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ interface IPlatformFee { /// @dev Fee type variants: percentage fee and flat fee enum PlatformFeeType { Bps, Flat } /// @dev Returns the platform fee bps and recipient. function getPlatformFeeInfo() external view returns (address, uint16); /// @dev Lets a module admin update the fees on primary sales. function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external; /// @dev Emitted when fee on primary sales is updated. event PlatformFeeInfoUpdated(address indexed platformFeeRecipient, uint256 platformFeeBps); /// @dev Emitted when the flat platform fee is updated. event FlatPlatformFeeUpdated(address platformFeeRecipient, uint256 flatFee); /// @dev Emitted when the platform fee type is updated. event PlatformFeeTypeUpdated(PlatformFeeType feeType); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `Primary` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ interface IPrimarySale { /// @dev The adress that receives all primary sales value. function primarySaleRecipient() external view returns (address); /// @dev Lets a module admin set the default recipient of all primary sales. function setPrimarySaleRecipient(address _saleRecipient) external; /// @dev Emitted when a new sale recipient is set. event PrimarySaleRecipientUpdated(address indexed recipient); }
// 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: MIT // OpenZeppelin Contracts v4.4.0 (metatx/ERC2771Context.sol) pragma solidity ^0.8.11; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable { mapping(address => bool) private _trustedForwarder; function __ERC2771Context_init(address[] memory trustedForwarder) internal onlyInitializing { __Context_init_unchained(); __ERC2771Context_init_unchained(trustedForwarder); } function __ERC2771Context_init_unchained(address[] memory trustedForwarder) internal onlyInitializing { for (uint256 i = 0; i < trustedForwarder.length; i++) { _trustedForwarder[trustedForwarder[i]] = true; } } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return _trustedForwarder[forwarder]; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } uint256[49] private __gap; }
// 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; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// 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: 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 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; /// @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 // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol"; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721AUpgradeable is IERC721Upgradeable, IERC721MetadataUpgradeable { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }
{ "compilationTarget": { "contracts/prebuilts/drop/DropERC721.sol": "DropERC721" }, "evmVersion": "paris", "libraries": {}, "metadata": { "bytecodeHash": "ipfs" }, "optimizer": { "enabled": true, "runs": 20 }, "remappings": [], "outputSelection": { "*": { "*": [ "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"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":"bytes32","name":"expected","type":"bytes32"},{"internalType":"bytes32","name":"actual","type":"bytes32"}],"name":"DelayedRevealIncorrectResultHash","type":"error"},{"inputs":[],"name":"DelayedRevealNothingToReveal","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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnableUnauthorized","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"PermissionsAlreadyGranted","type":"error"},{"inputs":[{"internalType":"address","name":"expected","type":"address"},{"internalType":"address","name":"actual","type":"address"}],"name":"PermissionsInvalidPermission","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"PermissionsUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"PlatformFeeExceededMaxFeeBps","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"PlatformFeeInvalidRecipient","type":"error"},{"inputs":[],"name":"PlatformFeeUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleInvalidRecipient","type":"error"},{"inputs":[],"name":"PrimarySaleUnauthorized","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"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"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":[{"indexed":false,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"flatFee","type":"uint256"}],"name":"FlatPlatformFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTotalSupply","type":"uint256"}],"name":"MaxTotalSupplyUpdated","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":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFeeBps","type":"uint256"}],"name":"PlatformFeeInfoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum IPlatformFee.PlatformFeeType","name":"feeType","type":"uint8"}],"name":"PlatformFeeTypeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleRecipientUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"string","name":"revealedURI","type":"string"}],"name":"TokenURIRevealed","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":"startTokenId","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"batchFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"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 IDrop.AllowlistProof","name":"_allowlistProof","type":"tuple"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimCondition","outputs":[{"internalType":"uint256","name":"currentStartId","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractType","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractVersion","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"key","type":"bytes"}],"name":"encryptDecrypt","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"encryptedData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"freezeBatchBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getActiveClaimConditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_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":[],"name":"getFlatPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeType","outputs":[{"internalType":"enum IPlatformFee.PlatformFeeType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchId","type":"uint256"},{"internalType":"bytes","name":"_key","type":"bytes"}],"name":"getRevealURI","outputs":[{"internalType":"string","name":"revealedURI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"member","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"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":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"}],"name":"getSupplyClaimedByWallet","outputs":[{"internalType":"uint256","name":"supplyClaimedByWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRoleWithSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address[]","name":"_trustedForwarders","type":"address[]"},{"internalType":"address","name":"_saleRecipient","type":"address"},{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint128","name":"_royaltyBps","type":"uint128"},{"internalType":"uint128","name":"_platformFeeBps","type":"uint128"},{"internalType":"address","name":"_platformFeeRecipient","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchId","type":"uint256"}],"name":"isEncryptedBatch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","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":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"nextTokenIdToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"primarySaleRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"bytes","name":"_key","type":"bytes"}],"name":"reveal","outputs":[{"internalType":"string","name":"revealedURI","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_flatFee","type":"uint256"}],"name":"setFlatPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"setPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IPlatformFee.PlatformFeeType","name":"_feeType","type":"uint8"}],"name":"setPlatformFeeType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_saleRecipient","type":"address"}],"name":"setPrimarySaleRecipient","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateBatchBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"},{"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 IDrop.AllowlistProof","name":"_allowlistProof","type":"tuple"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"isOverride","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
d76fad23a3976fdae3844834893d9f299989c96a548fe621d4a8b867efc61c932b323de301000edb4d037ba34d9f81d33a0c44a45171729a90759ef482cec3d7dc376f7500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x000400000000000200190000000000020000000003010019000000600430027000000db2034001970003000000310355000200000001035500000db20040019d0000008004000039000000400040043f00000001002001900000002a0000c13d000000040030008c0000004b0000413d000000000201043b000000e00220027000000dbd0020009c000000700000a13d00000dbe0020009c000000940000a13d00000dbf0020009c000000c00000213d00000dcc0020009c000001310000a13d00000dcd0020009c000003b20000a13d00000dce0020009c0000067e0000613d00000dcf0020009c000005890000613d00000dd00020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d36c52eda0000040f00000e2401100197000000800010043f0000ffff0120018f000000a00010043f00000e2801000041000036c60001042e0000000001000416000000000001004b0000004b0000c13d0000000003000415000000190330008a0000000503300210000000000100041a0000ff00021001900000004d0000c13d0000000003000415000000180330008a0000000503300210000000ff001001900000004d0000c13d00000db90110019700000001011001bf000000000010041b0000000103000039000000000034043500000db20040009c00000db2040080410000004001400210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d0200003900000dbb0400004136c536b60000040f0000000100200190000000ac0000c13d0000000001000019000036c700010430001500000003001d001300000002001d001400000001001d00000db301000041000000000010044300000000010004100000000400100443000000000100041400000db20010009c00000db201008041000000c00110021000000db4011001c7000080020200003936c536bb0000040f0000000100200190000023080000613d000000000101043b000000000001004b000000b10000c13d0000001402000029000000ff0120018f000000010010008c00000015010000290000000501100270000000000100003f000000010100603f000000b40000c13d00000ec80120019700000001011001bf000000000010041b000000130000006b000000ac0000c13d000000400400043d0000001401000029000000380000013d00000df00020009c000000830000213d00000e090020009c000000d90000a13d00000e0a0020009c000001640000a13d00000e0b0020009c000004ce0000a13d00000e0c0020009c000007540000613d00000e0d0020009c0000060e0000613d00000e0e0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000c01000039000007d10000013d00000df10020009c000000ff0000a13d00000df20020009c000001720000a13d00000df30020009c000004d70000a13d00000df40020009c000007990000613d00000df50020009c0000061f0000613d00000df60020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000701000039000009650000013d00000dd80020009c0000011a0000a13d00000dd90020009c000001fa0000a13d00000dda0020009c0000052a0000a13d00000ddb0020009c000004750000613d00000ddc0020009c0000073e0000613d00000ddd0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000401000039000000000101041a00000e2402100197000000800020043f000000a0011002700000ffff0110018f000000a00010043f00000e2801000041000036c60001042e00000020010000390000010000100443000001200000044300000dbc01000041000036c60001042e00000015010000290000000501100270000000000100003f00000db501000041000000800010043f0000002001000039000000840010043f0000002e01000039000000a40010043f00000db601000041000000c40010043f00000db701000041000000e40010043f00000db801000041000036c70001043000000dc00020009c000001560000a13d00000dc10020009c000003bd0000a13d00000dc20020009c000006c30000613d00000dc30020009c000005f30000613d00000dc40020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000000201000039000000000101041a000000b001100270000000ff0110018f000000020010008c000009e90000413d00000e2201000041000000000010043f0000002101000039000000040010043f00000e2301000041000036c70001043000000e160020009c000001ad0000213d00000e1c0020009c000004080000213d00000e1f0020009c000008a40000613d00000e200020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d000000ac03000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000054004b0000048c0000c13d000000800010043f000000000004004b00000c3a0000613d000000000030043f000000000001004b000000000200001900000c3f0000613d00000e2e030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000000f70000413d00000c3f0000013d00000dfe0020009c000001e80000213d00000e040020009c000004150000213d00000e070020009c000008b80000613d00000e080020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d000000000103001936c5283b0000040f001500000001001d001400000002001d001300000003001d000000400100043d001200000001001d36c5284d0000040f0000001204000029000000000004043500000015010000290000001402000029000000130300002936c52da80000040f0000000001000019000036c60001042e00000de50020009c000002060000213d00000deb0020009c0000047a0000213d00000dee0020009c00000a1c0000613d00000def0020009c0000004b0000c13d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000002402100370000000000202043b001500000002001d00000e240020009c0000004b0000213d0000000401100370000000000101043b000000000010043f0000000d01000039000006030000013d00000dd30020009c000002170000213d00000dd60020009c000006c90000613d00000dd70020009c0000004b0000c13d000000840030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001500000002001d00000e240020009c0000004b0000213d0000002402100370000000000202043b001400000002001d00000e240020009c0000004b0000213d0000006401100370000000000101043b00000e260010009c0000004b0000213d0000000401100039000000000203001936c528a20000040f00000044020000390000000202200367000000000302043b00000000040100190000001501000029000000140200002936c52da80000040f0000000001000019000036c60001042e00000dc70020009c000002330000213d00000dca0020009c000006fe0000613d00000dcb0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d0000001101000039000000000101041a0000001002000039000000000202041a000008a00000013d00000e110020009c0000038d0000213d00000e140020009c000007ad0000613d00000e150020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d000000000103001936c5283b0000040f36c52f900000040f0000000001000019000036c60001042e00000df90020009c0000039f0000213d00000dfc0020009c000007cd0000613d00000dfd0020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b001500000001001d00000e240010009c0000004b0000213d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000001990000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000d720000c13d000000400100043d00000eae020000410000099b0000013d00000e170020009c000004250000213d00000e1a0020009c000008eb0000613d00000e1b0020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b001500000001001d00000e240010009c0000004b0000213d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000001d40000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000dc00000c13d000000400100043d00000ec0020000410000099b0000013d00000dff0020009c000004620000213d00000e020020009c0000094e0000613d00000e030020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b00000e240010009c0000004b0000213d000000000010043f0000004601000039000007a20000013d00000de00020009c000004710000213d00000de30020009c000009e50000613d00000de40020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d000000800000043f00000e2101000041000036c60001042e00000de60020009c000004920000213d00000de90020009c00000aa40000613d00000dea0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d000000000103001936c529060000040f36c52c200000040f0000002002000039000000400300043d001500000003001d000000000223043600000b5b0000013d00000dd40020009c000007190000613d00000dd50020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000801043b0000000903000039000000000103041a000000800010043f000000000030043f000000000001004b00000c140000c13d000000a002000039000000400020043f000000a40100003900000e70030000410000000000320435000000000081043500000db20020009c00000db202008041000000400120021000000e23011001c7000036c70001043000000dc80020009c0000071e0000613d00000dc90020009c0000004b0000c13d000001440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001500000002001d00000e240020009c0000004b0000213d0000002402100370000000000402043b00000e260040009c0000004b0000213d0000002302400039000000000032004b0000004b0000813d0000000405400039000000000251034f000000000202043b00000e260020009c00000c230000213d0000001f0620003900000ec9066001970000003f0660003900000ec90660019700000e270060009c00000c230000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b0000004b0000213d0000002004500039000000000541034f00000ec9062001980000001f0720018f000000a004600039000002660000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000002620000c13d000000000007004b000002730000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000004402100370000000000402043b00000e260040009c0000004b0000213d0000002302400039000000000032004b0000004b0000813d0000000405400039000000000251034f000000000202043b00000e260020009c00000c230000213d0000001f0620003900000ec9066001970000003f0660003900000ec906600197000000400700043d0000000006670019001100000007001d000000000076004b0000000007000039000000010700403900000e260060009c00000c230000213d000000010070019000000c230000c13d0000002404400039000000400060043f00000011060000290000000006260436001000000006001d0000000004420019000000000034004b0000004b0000213d0000002004500039000000000541034f00000ec9062001980000001f0720018f0000001004600029000002a30000613d000000000805034f0000001009000029000000008a08043c0000000009a90436000000000049004b0000029f0000c13d000000000007004b000002b00000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000100220002900000000000204350000006402100370000000000402043b00000e260040009c0000004b0000213d0000002302400039000000000032004b0000004b0000813d0000000405400039000000000251034f000000000202043b00000e260020009c00000c230000213d0000001f0620003900000ec9066001970000003f0660003900000ec906600197000000400700043d0000000006670019000f00000007001d000000000076004b0000000007000039000000010700403900000e260060009c00000c230000213d000000010070019000000c230000c13d0000002404400039000000400060043f0000000f060000290000000006260436000e00000006001d0000000004420019000000000034004b0000004b0000213d0000002004500039000000000541034f00000ec9062001980000001f0720018f0000000e04600029000002e00000613d000000000805034f0000000e09000029000000008a08043c0000000009a90436000000000049004b000002dc0000c13d000000000007004b000002ed0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000e0220002900000000000204350000008402100370000000000202043b00000e260020009c0000004b0000213d0000002304200039000000000034004b0000004b0000813d0000000404200039000000000441034f000000000404043b00000e260040009c00000c230000213d00000005054002100000003f0650003900000e2906600197000000400700043d0000000006670019001300000007001d000000000076004b0000000007000039000000010700403900000e260060009c00000c230000213d000000010070019000000c230000c13d000000400060043f00000013060000290000000006460436001200000006001d00000024022000390000000005250019000000000035004b0000004b0000213d000000000004004b0000031c0000613d0000001303000029000000000421034f000000000404043b00000e240040009c0000004b0000213d000000200330003900000000004304350000002002200039000000000052004b000003130000413d000000a402100370000000000202043b000d00000002001d00000e240020009c0000004b0000213d000000c402100370000000000202043b000c00000002001d00000e240020009c0000004b0000213d000000e402100370000000000202043b000b00000002001d00000e2a0020009c0000004b0000213d0000010402100370000000000202043b000a00000002001d00000e2a0020009c0000004b0000213d0000012401100370000000000101043b000900000001001d00000e240010009c0000004b0000213d000000000200041a0000ffff00200190001400000002001d00001c1a0000c13d00000014010000290000ff000010019000000ec80120019700000001011001bf000000000010041b00001c300000c13d00000eca0110019700000100011001bf000000000010041b00000013020000290000000002020433000000000002004b000003640000613d001400000000001d000000140100002900000005011002100000001201100029000000000101043300000e2401100197000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b0000001402000029001400010020003d00000013010000290000000001010433000000140010006b000003470000413d000000000100041a0000ff000010019000001c560000613d000000800200043d00000e260020009c00000c230000213d000000ac01000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f00000001004001900000048c0000c13d000000200030008c000003850000413d000000000010043f0000001f04200039000000050440027000000e2d0440009a000000200020008c00000e2e040040410000001f03300039000000050330027000000e2d0330009a000000000034004b000003850000813d000000000004041b0000000104400039000000000034004b000003810000413d0000001f0020008c00001d5c0000a13d000000000010043f00000ec90520019800001d740000c13d000000200400003900000e2e0300004100001d800000013d00000e120020009c000007d50000613d00000e130020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b000000000010043f0000000e01000039000000200010043f0000004002000039000000000100001936c536a10000040f000007d10000013d00000dfa0020009c000007e40000613d00000dfb0020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b00000e240010009c0000004b0000213d000000000001004b00000c670000c13d00000eac01000041000000800010043f00000ead01000041000036c70001043000000dd10020009c000008560000613d00000dd20020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d00000e6f01000041000000800010043f00000e2101000041000036c60001042e00000dc50020009c000008980000613d00000dc60020009c0000004b0000c13d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000402043b00000e260040009c0000004b0000213d0000002302400039000000000032004b0000004b0000813d0000000405400039000000000251034f000000000202043b00000e260020009c00000c230000213d0000001f0720003900000ec9077001970000003f0770003900000ec90770019700000e270070009c00000c230000213d00000024044000390000008007700039000000400070043f000000800020043f0000000004420019000000000034004b0000004b0000213d0000002004500039000000000541034f00000ec9062001980000001f0720018f000000a004600039000003eb0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000003e70000c13d000000000007004b000003f80000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000002401100370000000000101043b00000e260010009c0000004b0000213d0000000401100039000000000203001936c528ec0000040f0000000003010019000000000402001900000080010000390000000002030019000000000304001936c52ee00000040f000002120000013d00000e1d0020009c000009610000613d00000e1e0020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b36c529860000040f000007dd0000013d00000e050020009c0000096a0000613d00000e060020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b36c52bad0000040f000000000001004b0000000001000039000000010100c039000007dd0000013d00000e180020009c000009a10000613d00000e190020009c0000004b0000c13d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b001500000001001d00000e240010009c0000004b0000213d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000000010004110000044a0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000006fb0000613d00000024010000390000000201100367000000000201043b000000150100002936c52f5c0000040f0000000001000019000036c60001042e00000e000020009c000009ac0000613d00000e010020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b36c532b90000040f000000000101043300000e2401100197000007dd0000013d00000de10020009c000009ec0000613d00000de20020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d000000aa01000039000007d10000013d00000dec0020009c00000adf0000613d00000ded0020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d000000ad03000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f000000010050019000000c290000613d00000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c70001043000000de70020009c00000b440000613d00000de80020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b001500000001001d000000de01000039000000000101041a001400000001001d000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000200041100000e2402200197001300000002001d000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000cbc0000c13d000000400100043d00000024021000390000001403000029000000000032043500000e6e02000041000000000021043500000004021000390000001303000029000000000032043500000db20010009c00000db201008041000000400110021000000e57011001c7000036c70001043000000e0f0020009c00000b5d0000613d00000e100020009c0000004b0000c13d0000000001000416000000000001004b0000004b0000c13d000000df01000039000007d10000013d00000df70020009c00000b780000613d00000df80020009c0000004b0000c13d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001500000002001d00000e240020009c0000004b0000213d0000002401100370000000000101043b001400000001001d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000004ff0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000006fb0000613d00000003010000390000001404000029000000000041041b0000000201000039000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000400100043d00000020021000390000000000420435000000000031043500000db20010009c00000db2010080410000004001100210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e2c011001c70000800d02000039000000010300003900000ea70400004100000d6d0000013d00000dde0020009c00000bca0000613d00000ddf0020009c0000004b0000c13d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001300000002001d00000e260020009c0000004b0000213d00000013020000290000002302200039000000000032004b0000004b0000813d00000013020000290000000402200039000000000121034f000000000101043b001200000001001d00000e260010009c0000004b0000213d00000013010000290000002404100039000000120100002900000005011002100000000002410019000000000032004b0000004b0000213d0000003f0210003900000e290220019700000e270020009c00000c230000213d001000000004001d0000008002200039000000400020043f0000001202000029000000800020043f000000000002004b0000055c0000613d00000060020000390000000003000019000000a00430003900000000002404350000002003300039000000000013004b000005570000413d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000005730000613d000000140100008a00000000011000310000000201100367000000000101043b0000006001100270000000120000006b000000100a0000290000102b0000c13d000000400100043d00000020020000390000000003210436000000800200043d0000000000230435000000400310003900000005042002100000000007340019000000000002004b000012f40000c13d000000000217004900000db20020009c00000db202008041000000600220021000000db20010009c00000db2010080410000004001100210000000000112019f000036c60001042e000000640030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001500000002001d0000002402100370000000000202043b00000e260020009c0000004b0000213d0000002304200039000000000034004b0000004b0000813d001300040020003d0000001304100360000000000404043b001400000004001d00000e260040009c0000004b0000213d0000001402200029001200240020003d000000120030006b0000004b0000213d0000004402100370000000000202043b00000e260020009c0000004b0000213d0000002304200039000000000034004b0000004b0000813d0000000404200039000000000441034f000000000404043b001100000004001d00000e260040009c0000004b0000213d0000002404200039001000000004001d0000001105400029000000000035004b0000004b0000213d000000110000006b000013110000c13d000000dd01000039000000000101041a000f00000001001d0000000001000411000e00000001001d000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000005d00000613d000000140100008a00000000011000310000000201100367000000000101043b000e0060001002780000000f01000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000000e0200002900000e2402200197000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d000f00000002001d000000000101043b000000000101041a000000ff001001900000179d0000c13d00000e6101000041000017a00000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b00000e240020009c0000004b0000213d0000002401100370000000000101043b001500000001001d00000e240010009c0000004b0000213d000000000020043f000000b101000039000000200010043f0000004002000039000000000100001936c536a10000040f000000150200002936c529b70000040f000000000101041a000000ff001001900000000001000039000000010100c039000007dd0000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000002402100370000000000202043b00000e240020009c0000004b0000213d0000000003000411000000000023004b00000c610000c13d0000000401100370000000000101043b36c531d50000040f0000000001000019000036c60001042e000000c40030008c0000004b0000413d0000000402100370000000000202043b001200000002001d00000e240020009c0000004b0000213d0000002402100370000000000202043b001100000002001d0000004402100370000000000202043b001000000002001d00000e240020009c0000004b0000213d0000006402100370000000000202043b000e00000002001d0000008402100370000000000202043b000f00000002001d00000e260020009c0000004b0000213d0000000f02000029000d00040020003d0000000d0230006a00000e630020009c0000004b0000213d000000800020008c0000004b0000413d000000a402100370000000000402043b00000e260040009c0000004b0000213d0000002302400039000000000032004b0000004b0000813d0000000405400039000000000251034f000000000202043b00000e260020009c00000c230000213d0000001f0620003900000ec9066001970000003f0660003900000ec90660019700000e270060009c00000c230000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b0000004b0000213d0000002003500039000000000331034f00000ec9042001980000001f0520018f000000a001400039000006620000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b0000065e0000c13d000000000005004b0000066f0000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a0012000390000000000010435000000aa01000039000000000101041a000000110010002a00000c9d0000413d00000011011000290000000c02000039000000000202041a000000000021004b000015f40000a13d000000400100043d000000440210003900000ea603000041000015fd0000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b000c00000002001d0000002402100370000000000202043b00000e260020009c0000004b0000213d0000002304200039000000000034004b0000004b0000813d0000000404200039000000000141034f000000000101043b000900000001001d00000e260010009c0000004b0000213d0000002402200039001300000002001d0000000901200029000000000031004b0000004b0000213d000000de01000039000000000101041a001500000001001d000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000200041100000e2402200197001400000002001d000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000ff60000c13d000000400100043d00000024021000390000001503000029000000000032043500000e6e02000041000000000021043500000004021000390000001403000029000004c80000013d0000000001000416000000000001004b0000004b0000c13d000000800100003936c529210000040f00000b530000013d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b001500000001001d000000010010008c0000004b0000213d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000006ea0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000d570000c13d000000400100043d00000ebf020000410000099b0000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000002402100370000000000202043b001500000002001d00000e240020009c0000004b0000213d0000000401100370000000000101043b001400000001001d000000000010043f0000000e01000039000000200010043f0000004002000039000000000100001936c536a10000040f000000000101041a000000000200041136c531a20000040f0000001401000029000000150200002936c531d50000040f0000000001000019000036c60001042e0000000001000416000000000001004b0000004b0000c13d36c52e9d0000040f000007dd0000013d0000000001000416000000000001004b0000004b0000c13d000000000103001936c529060000040f000000de04000039000000000404041a001500000001001d001400000002001d001300000003001d0000000002000411000000000104001936c531a20000040f000000150100002936c52b8d0000040f36c52bad0000040f000000000001004b0000000001000039000000010100603936c52d940000040f000000150100002936c52b8d0000040f001500000001001d00000000030000310000001401000029000000130200002936c5286a0000040f0000000002010019000000150100002936c534870000040f0000000001000019000036c60001042e000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000002402100370000000000202043b001500000002001d00000e240020009c0000004b0000213d0000000401100370000000000101043b000000000010043f0000001301000039000000200010043f0000004002000039000000000100001936c536a10000040f000000150200002936c529b70000040f000000000101041a000007dd0000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001500000002001d0000002401100370000000000101043b001400000001001d00000e240010009c0000004b0000213d0000001501000029000000000010043f0000000e01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a001300000001001d000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000000002000411000000000101043b00000e2402200197001200000002001d000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000f240000c13d000000400100043d00000024021000390000001303000029000000000032043500000e6e02000041000000000021043500000004021000390000001203000029000004c80000013d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b000000000010043f0000000b01000039000000200010043f0000004002000039000000000100001936c536a10000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000e2101000041000036c60001042e000000c40030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000002402100370000000000202043b00000e240020009c0000004b0000213d0000006404100370000000000404043b00000e240040009c0000004b0000213d000000a405100370000000000505043b00000e260050009c0000004b0000213d0000000406500039000000000363004900000e630030009c0000004b0000213d000000800030008c0000004b0000413d0000000403100370000000000703043b0000004403100370000000000303043b0000008401100370000000000501043b000000000107001936c529c70000040f000004210000013d0000000001000416000000000001004b0000004b0000c13d0000000901000039000000000101041a000000800010043f00000e2101000041000036c60001042e000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b36c52b8d0000040f000000400200043d000000000012043500000db20020009c00000db202008041000000400120021000000e25011001c7000036c60001042e000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000018002000039000000400020043f000000800000043f000000a00000043f000000c00000043f000000e00000043f000001000000043f000001200000043f000001400000043f0000006002000039000001600020043f0000000401100370000000000101043b000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d001500000002001d00000e8e0020009c00000c230000213d000000000101043b00000015030000290000010002300039000000400020043f000000000201041a00000000052304360000000102100039000000000202041a00000000002504350000000202100039000000000202041a000000400630003900000000002604350000000302100039000000000202041a000000600730003900000000002704350000000402100039000000000202041a000000800830003900000000002804350000000502100039000000000202041a000000a00a30003900000000002a0435000000c0093000390000000602100039000000000202041a00000e240220019700000000002904350000000701100039000000000201041a0000000103200190000000010b2002700000007f0bb0618f0000001f00b0008c00000000040000390000000104002039000000000442013f00000001004001900000048c0000c13d000f0000000a001d001000000009001d001100000008001d001200000007001d001300000006001d001400000005001d000000400500043d0000000004b50436000000000003004b00000d760000613d000c00000004001d000d0000000b001d000e00000005001d000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000000d06000029000000000006004b00000000020000190000000e050000290000000c0700002900000d7b0000613d000000000101043b00000000020000190000000003720019000000000401041a000000000043043500000001011000390000002002200039000000000062004b0000084e0000413d00000d7b0000013d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b001300000001001d000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a001200000001001d000000000001004b001400000000001d00000c720000c13d0000001301000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000000043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000008900000613d0000001401000029001400010010003e00000c9d0000613d000000400100043d0000001402000029000000000021043500000db20010009c00000db201008041000000400110021000000e25011001c7000036c60001042e0000000001000416000000000001004b0000004b0000c13d0000000301000039000000000101041a0000000202000039000000000202041a00000e2402200197000000800020043f000000a00010043f00000e2801000041000036c60001042e000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000201043b00000e9c002001980000004b0000c13d000000010100003900000e9d0220019700000ec30020009c00000ca30000213d00000ec60020009c000009e90000613d00000ec70020009c000000000100c019000000800010043f00000e2101000041000036c60001042e000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b001500000001001d000000000000043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000000002000411000000000101043b00000e2402200197000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d000000000101043b000000000101041a000000ff0010019000000cab0000c13d00000e6e0100004100000000001204350000000401200039000000000300041100000000003104350000002401200039000000000001043500000db20020009c00000db202008041000000400120021000000e57011001c7000036c700010430000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001400000002001d00000e240020009c0000004b0000213d0000002401100370000000000301043b000000e001000039000000400010043f000000800000043f000000a00000043f000000c00000043f000000aa02000039000000000202041a000000000032004b0000099a0000a13d001300000003001d000000000030043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d00000e7d0020009c00000c230000213d000000000101043b0000006003200039000000400030043f000000000101041a000000400320003900000eb1001001980000000004000039000000010400c0390000000000430435000000a00310027000000e26033001970000002004200039000000000034043500000e24011001970000000000120435000009990000c13d000000000001004b000009450000c13d001500130000002d0000001501000029000000010110008a001500000001001d000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d00000e7d0020009c00000c230000213d000000000101043b0000006003200039000000400030043f000000000101041a00000eb1001001980000000003000039000000010300c03900000040042000390000000000340435000000a00310027000000e26033001970000002004200039000000000034043500000e24011001980000000000120435000009230000613d000000140200002900000e2402200197001500000001001d001400000002001d000000000012004b000012420000c13d000000400100043d00000ec2020000410000099b0000013d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b36c52bcf0000040f0000ffff0220018f000000400300043d0000002004300039000000000024043500000e2401100197000000000013043500000db20030009c00000db203008041000000400130021000000eb0011001c7000036c60001042e0000000001000416000000000001004b0000004b0000c13d0000000601000039000000000101041a00000e2401100197000000800010043f00000e2101000041000036c60001042e000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000301043b000000e001000039000000400010043f000000800000043f000000a00000043f000000c00000043f000000aa02000039000000000202041a000000000032004b0000099a0000a13d001400000003001d000000000030043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d00000e7d0020009c00000c230000213d000000000101043b0000006003200039000000400030043f000000000101041a000000400320003900000eb1001001980000000004000039000000010400c039000000000043043500000e24031001970000000002320436000000a00110027000000e2601100197000000000012043500000dc40000613d000000400100043d00000eba02000041000000000021043500000db20010009c00000db201008041000000400110021000000e60011001c7000036c7000104300000000001000416000000000001004b0000004b0000c13d000000ab01000039000000000101041a000000aa02000039000000000202041a0000000001120049000000800010043f00000e2101000041000036c60001042e000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b001500000001001d00000e240010009c0000004b0000213d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000009cd0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000adc0000613d00000024010000390000000201100367000000000201043b000000150100002936c5328e0000040f0000000001000019000036c60001042e0000000001000416000000000001004b0000004b0000c13d0000000401000039000000800010043f00000e2101000041000036c60001042e000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001500000002001d00000e240020009c0000004b0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039001400000002001d000000000012004b0000004b0000c13d0000000001000411001300000001001d000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000000000100041100000a160000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000150010006b00000eaf0000c13d000000400100043d00000e86020000410000099b0000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000002402100370000000000202043b001100000002001d0000000401100370000000000101043b001400000001001d000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a001200000001001d000000000001004b0000000001000019000007dd0000613d0000801002000039001500000000001d001300000000001d00000a490000013d0000001302000029000000110020006c000000000102001900000fd80000613d001300010010003e00000c9d0000613d00000015010000290000000101100039001500000001001d000000120010006c000080100200003900000f220000813d0000001401000029000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c736c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a00000e240010019800000a3d0000c13d0000001401000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000000043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000a430000613d0000001401000029000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000000043f0000000201100039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000150010006b000000130100002900000a410000613d00000a430000013d000000640030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001500000002001d0000002402100370000000000202043b001400000002001d00000e240020009c0000004b0000213d0000004401100370000000000101043b001300000001001d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000000000100041100000acb0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000f0e0000c13d000000400100043d00000eaf020000410000099b0000013d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000402043b00000e260040009c0000004b0000213d0000002302400039000000000032004b0000004b0000813d0000000405400039000000000251034f000000000202043b00000e260020009c00000c230000213d0000001f0720003900000ec9077001970000003f0770003900000ec90770019700000e270070009c00000c230000213d00000024044000390000008007700039000000400070043f000000800020043f0000000004420019000000000034004b0000004b0000213d0000002003500039000000000331034f00000ec9042001980000001f0520018f000000a00140003900000b090000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b00000b050000c13d000000000005004b00000b160000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000001000411001500000001001d000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000b2f0000613d000000140100008a00000000011000310000000201100367000000000101043b0015006000100278000000150100002900000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000138e0000c13d000000400100043d00000e8b020000410000099b0000013d000000240030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b000000000010043f0000000801000039000000200010043f0000004002000039000000000100001936c536a10000040f000000800200003936c5294c0000040f000000800210008a000000800100003936c528580000040f0000002001000039000000400200043d001500000002001d0000000002120436000000800100003936c528140000040f00000c460000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000401100370000000000101043b36c52bcf0000040f00000024030000390000000203300367000000000303043b001500000001001d0000ffff0220018f000000000103001936c52b9f0000040f000027100110011a000000400200043d00000020032000390000000000130435000000150100002900000e2401100197000000000012043500000db20020009c00000db202008041000000400120021000000eb0011001c7000036c60001042e000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000000402100370000000000202043b001100000002001d00000e260020009c0000004b0000213d00000011020000290000002302200039000000000032004b0000004b0000813d00000011020000290000000402200039000000000221034f000000000202043b000a00000002001d00000e260020009c0000004b0000213d000000110200002900000024042000390000000a020000290000000502200210001500000004001d000700000002001d0000000002420019000000000032004b0000004b0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000600000002001d000000000012004b0000004b0000c13d0000000001000411001400000001001d000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000bb50000613d000000140100008a00000000011000310000000201100367000000000101043b0014006000100278000000140100002900000e2401100197000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000013920000c13d000000400100043d00000eab020000410000099b0000013d000000440030008c0000004b0000413d0000000002000416000000000002004b0000004b0000c13d0000002402100370000000000202043b001500000002001d00000e240020009c0000004b0000213d0000000401100370000000000101043b001400000001001d000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000000043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000f1f0000c13d0000001401000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001502000029000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000039000000010100c039000000010110018f000007dd0000013d00000e6a02000041000000a00400003900000000050000190000000006040019000000000402041a000000000446043600000001022000390000000105500039000000000015004b00000c170000413d001500000008001d000000410260008a00000ec90420019700000e270040009c00000c500000a13d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c700010430000000800010043f000000000004004b00000c3a0000613d000000000030043f000000000001004b000000000200001900000c3f0000613d00000e31030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b00000c320000413d00000c3f0000013d00000ec802200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000000800100003936c528580000040f000000400100043d001500000001001d000000800200003936c528260000040f0000001502000029000000000121004900000db20010009c00000db201008041000000600110021000000db20020009c00000db2020080410000004002200210000000000121019f000036c60001042e0000008002400039000000400020043f000000800500043d00000000060000190000001508000029000000000065004b000025c70000a13d0000000507600210000000a0077000390000000007070433000000000087004b00000d1d0000213d0000000106600039000000000016004b00000c550000413d00000084014000390000022b0000013d00000ebc01000041000000800010043f000000840030043f000000a40020043f00000ebd01000041000036c700010430000000000010043f000000af01000039000000200010043f0000004002000039000000000100001936c536a10000040f000000000101041a00000e2601100197000000800010043f00000e2101000041000036c60001042e0000801002000039001400000000001d001500000000001d00000c7b0000013d00000015030000290000000103300039001500000003001d000000120030006c000008700000813d0000001301000029000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c736c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000801002000039000000000101043b000000000101041a00000e240010019800000c760000613d0000001401000029001400010010003e00000c760000c13d00000e2201000041000000000010043f0000001101000039000000040010043f00000e2301000041000036c70001043000000ec40020009c000009e90000613d00000ec50020009c000009e90000613d0000000001000019000000800010043f00000e2101000041000036c60001042e000000df010000390000001503000029000000000031041b000000000032043500000db20020009c00000db2020080410000004001200210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d02000039000000010300003900000ebb0400004100000d6d0000013d0000000901000039000000000101041a0000001503000029000000000031004b00000d4d0000a13d00000e5d0130009a001400000001001d000000000101041a000000000010043f0000000801000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000048c0000c13d000000000001004b000013870000c13d0000000901000039000000000101041a0000001503000029000000000031004b00000d4d0000a13d0000001401000029000000000101041a001500000001001d000000000010043f0000000a01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0440618f001400000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000048c0000c13d000000400400043d001300000004001d00000014050000290000000004540436001200000004001d000000000003004b000017a70000613d000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000001405000029000000000005004b00000000020000190000001206000029000017ad0000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000d150000413d000017ad0000013d001400000007001d0000000000120435000000000030043f00000e6a05000041000000a003400039000000000703001900000000060000190000000008070019000000000705041a000000000778043600000001055000390000000106600039000000000016004b00000d240000413d0000000004480049000000410440008a00000ec9054001970000000004250019000000000054004b0000000005000039000000010500403900000e260040009c00000c230000213d000000010050019000000c230000c13d000000400040043f000000000202043300000000050000190000001507000029000000000052004b000025c70000a13d000000050650021000000000063600190000000006060433000000000076004b000012150000213d0000000105500039000000000015004b00000d3a0000413d00000e7001000041000000000014043500000004014001bf000000000071043500000db20040009c00000db204008041000000400140021000000e23011001c7000036c700010430000000400100043d00000e620200004100000000002104350000000402100039000000000032043500000db20010009c00000db201008041000000400110021000000e23011001c7000036c7000104300000001504000029000000b00140021000000e7a011001970000000202000039000000000302041a00000e7b03300197000000000113019f000000000012041b000000400100043d000000000041043500000db20010009c00000db2010080410000004001100210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d02000039000000010300003900000e7c0400004136c536b60000040f00000001002001900000004b0000613d0000000001000019000036c60001042e000000150100002936c533200000040f0000000001000019000036c60001042e00000ec801200197000000000014043500000000000b004b000000200200003900000000020060390000003f0220003900000ec90320019700000000040500190000000002530019000000000032004b0000000003000039000000010300403900000e260020009c00000c230000213d000000010030019000000c230000c13d000000400020043f0000001505000029000000e00350003900000000004304350000002004000039000000400200043d00000000044204360000000005050433000000000054043500000014040000290000000004040433000000400520003900000000004504350000001304000029000000000404043300000060052000390000000000450435000000120400002900000000040404330000008005200039000000000045043500000011040000290000000004040433000000a00520003900000000004504350000000f040000290000000004040433000000c00520003900000000004504350000001004000029000000000404043300000e2404400197000000e005200039000000000045043500000000030304330000010004200039000001000500003900000000005404350000012004200039000000005303043400000000003404350000014004200039000000000003004b00000dba0000613d000000000600001900000000074600190000000008650019000000000808043300000000008704350000002006600039000000000036004b00000db30000413d0000001f0530003900000ec90150019700000000034300190000000000030435000001400110003900000c480000013d000000150100002936c52f470000040f0000000001000019000036c60001042e000000000003004b00000de80000c13d001500140000002d0000001501000029000000010110008a001500000001001d000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d00000e7d0020009c00000c230000213d000000000101043b0000006003200039000000400030043f000000000101041a00000eb1001001980000000003000039000000010300c0390000004004200039000000000034043500000e24031001980000000002320436000000a00110027000000e2601100197000000000012043500000dc70000613d001200000002001d001500000003001d0000000001000411001300000001001d000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000000000100041100000e020000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000150010006c0000127b0000c13d000000dc01000039000000000101041a000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000000043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000001401000029000000000010043f000000b001000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e3802200197000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000eb40400004100000015050000290000000006000019000000140700002936c536b60000040f00000001002001900000004b0000613d0000001501000029000000000010043f000000af01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a000000010320008a00000e260330019700000eb504200197000000000343019f00000eb60220009a00000eb702200197000000000223019f000000000021041b0000001401000029000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000301043b000000000103041a00000e380110019700000015011001af001300000003001d000000000013041b00000e8d010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f0000000100200190000023080000613d0000001303000029000000000203041a00000eb802200197000000000101043b000000a00110021000000e9801100197000000000121019f00000eb9011001c7000000000013041b00000014010000290000000101100039001300000001001d000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e240020019800000e9b0000c13d000000aa03000039000000000303041a000000130030006b00000e9b0000613d00000e9d0220019700000012030000290000000003030433000000a00330021000000e9803300197000000000232019f00000015022001af000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e9a0400004100000015050000290000000006000019000000140700002936c536b60000040f00000001002001900000004b0000613d000000ab01000039000000000201041a0000000102200039000000000021041b0000000001000019000036c60001042e0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000000000100041100000ec60000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f000000b101000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001502000029000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000014022001af000000000021041b0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000efb0000613d000000140100008a00000000011000310000000201100367000000000101043b0013006000100278000000400100043d0000001402000029000000000021043500000db20010009c00000db2010080410000004001100210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c7000000130200002900000e24052001970000800d02000039000000030300003900000e8504000041000000150600002900000d6d0000013d000000400300043d0000001301000029000027110010008c00000fa20000413d00000024013000390000001302000029000000000021043500000e5601000041000000000013043500000004013000390000271002000039000000000021043500000db20030009c00000db203008041000000400130021000000e57011001c7000036c7000104300000000101000039000000010110018f000007dd0000013d0000000001000019000007dd0000013d0000001501000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000013ff0000c13d0000001501000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000015050000290000001406000029000000000700041136c536b60000040f00000001002001900000004b0000613d0000001501000029000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a001300000002001d000000010220003a00000c9d0000613d000000000021041b0000001501000029000000000010043f0000000f01000039000000200010043f0000004002000039000000000100001936c536a10000040f0000001302000029000000000020043f0000000101100039000000200010043f0000000001000019000000400200003936c536a10000040f000000000201041a00000e380220019700000014022001af000000000021041b0000001501000029000000000010043f0000000f01000039000000200010043f0000000001000019000000400200003936c536a10000040f0000000201100039000000140200002936c529b70000040f0000001302000029000000000021041b0000000001000019000036c60001042e001200000003001d00000e890030009c00000c230000213d00000012020000290000004001200039000000400010043f000000140100002900000000021204360000001301000029001100000002001d00000000001204350000001501000029000000000010043f0000000501000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000001202000029000000000202043300000e2402200197000000000101043b000000000301041a00000e3803300197000000000223019f000000000021041b000000010110003900000011020000290000000002020433000000000021041b000000400100043d0000001302000029000000000021043500000db20010009c00000db2010080410000004001100210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d02000039000000030300003900000e8a040000410000001505000029000000140600002900000d6d0000013d0000001401000029000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a0000046f0000013d0000000901000039000000000101041a0000000c0010006c000013810000a13d0000000c0100002900000e5d0110009a000000000101041a000800000001001d000000000010043f0000000801000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0440618f001500000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000048c0000c13d000000400400043d001400000004001d00000015050000290000000004540436001200000004001d000000000003004b000016c80000613d000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000150000006b0000190b0000c13d0000000001000019000016ce0000013d00110e240010019b000f006000100218000000200b00008a000000000c000410000000000d0000190000000002000031000000130320006a000000050ed002100000000004ae00190000000201000367000000000541034f000000430430008a000000000305043b0000000005000411000000110050006c000010ce0000c13d000000000043004b000000000500001900000e640500804100000e640440019700000e6406300197000000000746013f000000000046004b000000000400001900000e640400404100000e640070009c000000000405c019000000000004004b0000004b0000c13d0000000004a30019000000000341034f000000000303043b00000e260030009c0000004b0000213d0000000005320049000000200640003900000e640450019700000e6407600197000000000847013f000000000047004b000000000400001900000e6404004041000000000056004b000000000500001900000e640500204100000e640080009c000000000405c019000000000004004b0000004b0000c13d0000001f043000390000000004b4016f0000003f044000390000000005b4016f000000400400043d0000000005540019000000000045004b0000000007000039000000010700403900000e260050009c00000c230000213d000000010070019000000c230000c13d000000400050043f00000000053404360000000007630019000000000027004b0000004b0000213d000000000261034f0000000006b301700000000001650019000010780000613d000000000702034f0000000008050019000000007907043c0000000008980436000000000018004b000010740000c13d0000001f07300190000010850000613d000000000262034f0000000306700210000000000701043300000000076701cf000000000767022f000000000202043b0000010006600089000000000262022f00000000026201cf000000000272019f000000000021043500000000013500190000000000010435000000400300043d00000e7d0030009c00000c230000213d0000006001300039000000400010043f000000400130003900000e7e020000410000000000210435000000200130003900000e7f02000041000000000021043500000027010000390000000000130435000000000204043300000000010004140000000400c0008c000011ac0000c13d0000000101000032000000600f000039000010c20000613d00000e260010009c00000c230000213d0000001f021000390000000002b2016f0000003f022000390000000002b2016f000000400f00043d00000000022f00190000000000f2004b0000000003000039000000010300403900000e260020009c00000c230000213d000000010030019000000c230000c13d000000400020043f00000000051f04360000000003b1017000000000023500190000000304000367000010b50000613d000000000604034f000000006706043c0000000005750436000000000025004b000010b10000c13d0000001f01100190000010c20000613d000000000334034f0000000301100210000000000402043300000000041401cf000000000414022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000141019f000000000012043500000000010f0433000000000001004b000012090000c13d000e0000000f001d00140000000e001d00150000000d001d00000db3010000410000000000100443000000040100003900000004001004430000000001000414000011f80000013d000000000043004b000000000500001900000e640500804100000e640440019700000e6406300197000000000746013f000000000046004b000000000400001900000e640400404100000e640070009c000000000405c019000000000004004b0000004b0000c13d0000000004a30019000000000341034f000000000303043b00000e260030009c0000004b0000213d0000000005320049000000200240003900000e640450019700000e6406200197000000000746013f000000000046004b000000000400001900000e6404004041000000000052004b000000000500001900000e640500204100000e640070009c000000000405c019000000000004004b0000004b0000c13d000000000521034f0000000006b30170000000400200043d00000020012000390000000004610019000010fb0000613d000000000705034f0000000008010019000000007907043c0000000008980436000000000048004b000010f70000c13d0000001f07300190000011080000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500000000033100190000000f04000029000000000043043500000000032300490000000c0430008a000000000042043500000033033000390000000003b3016f0000000005230019000000000035004b0000000003000039000000010300403900000e260050009c00000c230000213d000000010030019000000c230000c13d000000400050043f00000e7d0050009c00000c230000213d0000006003500039000000400030043f000000400350003900000e7e040000410000000000430435000000200350003900000e7f04000041000000000043043500000027030000390000000000350435000000000302043300000000020004140000000400c0008c0000115f0000c13d0000000101000032000000600f000039000011530000613d00000e260010009c00000c230000213d0000001f021000390000000002b2016f0000003f022000390000000002b2016f000000400f00043d00000000022f00190000000000f2004b0000000003000039000000010300403900000e260020009c00000c230000213d000000010030019000000c230000c13d000000400020043f00000000051f04360000000003b1017000000000023500190000000304000367000011460000613d000000000604034f000000006706043c0000000005750436000000000025004b000011420000c13d0000001f01100190000011530000613d000000000334034f0000000301100210000000000402043300000000041401cf000000000414022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000141019f000000000012043500000000010f0433000000000001004b000012090000c13d000e0000000f001d00140000000e001d00150000000d001d00000db3010000410000000000100443000000040100003900000004001004430000000001000414000011f80000013d000e00000005001d00000db20010009c00000db201008041000000400110021000000db20030009c00000db2030080410000006003300210000000000113019f00000db20020009c00000db202008041000000c002200210000000000121019f00000000020c001900150000000d001d00140000000e001d36c536c00000040f000000140e000029000000150d000029000000000c000410000000200b00008a000000100a00002900030000000103550000000003010019000000600330027000010db20030019d00000db2043001980000008003000039000000600f000039000011a10000613d0000001f0340003900000e80033001970000003f0330003900000e8103300197000000400f00043d00000000033f00190000000000f3004b0000000005000039000000010500403900000e260030009c00000c230000213d000000010050019000000c230000c13d000000400030043f00000000034f043600000e82064001980000000005630019000011940000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000058004b000011900000c13d0000001f04400190000011a10000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000000010f04330000000100200190000017830000613d000000000001004b000012090000c13d000e0000000f001d00000db30100004100000000001004430000000400c004430000000001000414000011f80000013d000e00000003001d00000db20050009c00000db205008041000000400350021000000db20020009c00000db2020080410000006002200210000000000232019f00000db20010009c00000db201008041000000c001100210000000000112019f00000000020c001900150000000d001d00140000000e001d36c536c00000040f000000140e000029000000150d000029000000000c000410000000200b00008a000000100a00002900030000000103550000000003010019000000600330027000010db20030019d00000db2043001980000008003000039000000600f000039000011ee0000613d0000001f0340003900000e80033001970000003f0330003900000e8103300197000000400f00043d00000000033f00190000000000f3004b0000000005000039000000010500403900000e260030009c00000c230000213d000000010050019000000c230000c13d000000400030043f00000000034f043600000e82064001980000000005630019000011e10000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000058004b000011dd0000c13d0000001f04400190000011ee0000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000000010f04330000000100200190000017830000613d000000000001004b000012090000c13d000e0000000f001d00000db30100004100000000001004430000000400c00443000000000100041400000db20010009c00000db201008041000000c00110021000000db4011001c7000080020200003936c536bb0000040f0000000100200190000023080000613d000000000101043b000000000001004b000000100a000029000000200b00008a000000000c000410000000150d000029000000140e0000290000000e0f000029000017960000613d000000800100043d0000000000d1004b000025c70000a13d000000a001e000390000000000f10435000000800100043d0000000000d1004b000025c70000a13d000000010dd000390000001200d0006c000010300000413d000005760000013d000000000060043f0000000a01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0440618f001300000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000048c0000c13d000000400400043d001200000004001d00000013050000290000000004540436001100000004001d000000000003004b0000160b0000613d000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000130000006b000017c10000c13d0000000001000019000016110000013d0000000001000411001200000001001d000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000000010004110000125a0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000150010006c000015490000c13d0000001301000029000000000010043f000000b001000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001406000029000000000262019f000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000eb4040000410000001505000029000000130700002900000d6d0000013d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411001100000001001d000012930000613d000000140100008a00000000011000310000000201100367000000000101043b00110060001002780000001501000029000000000010043f000000b101000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000110200002900000e2402200197000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000000e050000c13d000000aa01000039000000000101041a000000140010006c000017cd0000a13d0000001401000029000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a00000eb100100198000017cd0000c13d0000001401000029000000000010043f000000b001000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a001100000001001d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000012ed0000613d000000140100008a00000000011000310000000201100367000000000101043b00130060001002780000001102000029000000130120014f00000e240010019800000e050000613d000000400100043d00000eb3020000410000099b0000013d00000080040000390000000006000019000012ff0000013d0000001f0980003900000ec9099001970000000008780019000000000008043500000000077900190000000106600039000000000026004b000005800000813d0000000008170049000000400880008a00000000038304360000002004400039000000000804043300000000980804340000000007870436000000000008004b000012f70000613d000000000a000019000000000b7a0019000000000ca90019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b000013090000413d000012f70000013d0000001102000029000000400020008c0000004b0000413d0000001003100360000000000203043b00000e260020009c0000004b0000213d00000010062000290000001f02600039000000000052004b0000004b0000813d000000000261034f000000000202043b00000e260020009c00000c230000213d0000001f0720003900000ec9077001970000003f0770003900000ec90770019700000e270070009c00000c230000213d00000020066000390000008007700039000000400070043f000000800020043f0000000007620019000000000057004b0000004b0000213d000000000661034f00000ec9072001980000001f0820018f000000a005700039000013380000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000059004b000013340000c13d000000000008004b000013450000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000a0022000390000000000020435000000800200043d000000000002004b000005b60000613d00000010020000290000002002200039000000000121034f000000000101043b000000000001004b000005b60000613d0000000c01000039000000000101041a000000150010002a00000c9d0000413d00000011020000290000001f0220003900000ec9022001970000003f0220003900000ec905200197000000400200043d0000000005520019000000000025004b0000000006000039000000010600403900000e260050009c00000c230000213d000000010060019000000c230000c13d000000400050043f0000001107000029000000000572043600000ec9067001980000001f0770018f00000000046500190000136f0000613d000000000803034f0000000009050019000000008a08043c0000000009a90436000000000049004b0000136b0000c13d0000001501100029000000000007004b0000137d0000613d000000000363034f0000000306700210000000000704043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f00000000003404350000001103500029000000000003043536c533fb0000040f000005b60000013d000000400100043d00000e6202000041000000000021043500000004021000390000000c0300002900000d510000013d000000400100043d000000440210003900000e8703000041000000000032043500000024021000390000000f03000039000016000000013d000000800100003936c5333f0000040f0000000001000019000036c60001042e0000001101000039000000000201041a000900000002001d0000001002000039000000000402041a000000060000006b001200000004001d001400000004001d000013a00000613d0000001204000029000000090040002a00000c9d0000413d0000001204000029001400090040002d0000000a03000029000000000031041b0000001401000029000000000012041b000000000003004b000014050000c13d000000060000006b000015810000c13d00000009020000290000000a0020006c0000001401000029000015d20000a13d0000000a03000029000013b70000013d0000001202000029000000000002041b000000000401001900000014010000290000001303000029000000000004041b0000000103300039000000090030006c000015d20000813d000000000013001a00000c9d0000413d001300000003001d0000000001130019000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000502100039000000000002041b0000000602100039000000000002041b0000000704100039000000000104041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f00000001001001900000048c0000c13d000000000005004b00000014010000290000001303000029000013b40000613d0000001f0050008c000013b30000a13d001000000005001d001200000004001d000000000040043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b00000010020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b000013ae0000813d000000000003041b0000000103300039000000000023004b000013fa0000413d000013ae0000013d000000400100043d00000024021000390000001503000029000000000032043500000ebe02000041000006bf0000013d00000000080000190000000001000019000000000008004b0000000509800210000014230000613d00000015039000290000000202000367000000000332034f000000000303043b00000011040000290000000004400079000001230440008a00000e640530019700000e6406400197000000000765013f000000000065004b000000000500001900000e6405004041000000000043004b000000000400001900000e640400804100000e640070009c000000000504c019000000000005004b0000004b0000c13d0000001503300029000000000232034f000000000202043b000000000021004b000019320000813d001000000009001d0000001401000029000000000018001a00000c9d0000413d000e00000008001d0000000001180019001300000001001d000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000000010030000290000004b0000613d000d00150030002d00000002020003670000000d03200360000000000303043b00000011040000290000000004400079000001230440008a00000e640530019700000e6406400197000000000765013f000000000065004b000000000500001900000e6405004041000000000043004b000000000400001900000e640400804100000e640070009c000000000504c019000000000101043b000000000005004b0000004b0000c13d0000000201100039000000000401041a0000001501300029001000000001001d000f00200010003d0000000f01200360000000000101043b000c00000004001d000000000014004b0000186b0000213d0000001301000029000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000000010090000290000004b0000613d0000000202000367000000000392034f000000000303043b000000000101043b000000000031041b0000000f05000029000000000352034f000000000303043b0000000104100039000000000034041b0000002003500039000000000332034f000000000303043b0000000204100039000000000034041b0000004003500039000000000332034f000000000303043b0000000304100039000000000034041b0000006003500039000000000332034f000000000303043b0000000404100039000000000034041b0000008003500039000000000332034f000000000303043b0000000504100039000000000034041b000000a003500039000000000432034f000000000404043b00000e240040009c0000004b0000213d0000000605100039000000000605041a00000e3806600197000000000446019f000000000045041b0000002003300039000000000432034f000000000300003100000000059300490000001f0550008a000000000404043b00000e640640019700000e6407500197000000000876013f000000000076004b000000000600001900000e6406004041000000000054004b000000000500001900000e640500804100000e640080009c000000000605c019000000000006004b0000004b0000c13d0000000004940019000000000242034f000000000602043b00000e260060009c0000004b0000213d0000000002630049000000200840003900000e640320019700000e6404800197000000000534013f000000000034004b000000000300001900000e6403004041000000000028004b000000000200001900000e640200204100000e640050009c000000000302c019000000000003004b0000004b0000c13d0000000707100039000000000107041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f00000001001001900000048c0000c13d000000200030008c001000000006001d000b00000007001d000f00000008001d000014e10000413d000800000003001d000000000070043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f0000000f08000029000000100600002900000001002001900000004b0000613d0000001f026000390000000502200270000000200060008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000b07000029000014e10000813d000000000002041b0000000102200039000000000012004b000014dd0000413d000000200060008c0000150b0000413d000000000070043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f0000000f08000029000000100600002900000001002001900000004b0000613d00000ec902600198000000000101043b000015440000613d000000020400036700000000030000190000000b070000290000000005830019000000000554034f000000000505043b000000000051041b00000001011000390000002003300039000000000023004b000014f50000413d000000000062004b000015080000813d0000000302600210000000f80220018f00000ecb0220027f00000ecb0220016700000000038300190000000203300367000000000303043b000000000223016f000000000021041b000000010160021000000001011001bf000015170000013d000000000006004b000015160000613d000000030160021000000ecb0110027f00000ecb011001670000000202800367000000000202043b000000000112016f0000000102600210000000000121019f000015170000013d0000000001000019000000000017041b0000001301000029000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b00000002011000390000000c02000029000000000021041b00000002010003670000000d02100360000000000202043b00000011030000290000000003300079000001230330008a00000e640420019700000e6405300197000000000654013f000000000054004b000000000400001900000e6404004041000000000032004b000000000300001900000e640300804100000e640060009c000000000403c019000000000004004b0000004b0000c13d0000001502200029000000000121034f000000000101043b0000000e0800002900000001088000390000000a0080006c000014070000413d000013a60000013d00000000030000190000000b07000029000000000062004b000014ff0000413d000015080000013d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000155f0000613d000000140100008a00000000011000310000000201100367000000000101043b00120060001002780000001501000029000000000010043f000000b101000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000120200002900000e2402200197000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000125d0000c13d000000400100043d00000ec1020000410000099b0000013d000000140100002900000012020000290000158b0000013d0000001302000029000000000002041b000000000301001900000014010000290000001202000029000000000003041b0000000102200039000000000012004b000015d20000813d001200000002001d000000000020043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000502100039000000000002041b0000000602100039000000000002041b0000000703100039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f00000001001001900000048c0000c13d000000000004004b000000140100002900000012020000290000158a0000613d0000001f0040008c000015890000a13d001000000004001d001300000003001d000000000030043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b00000010020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b000015840000813d000000000003041b0000000103300039000000000023004b000015cd0000413d000015840000013d000000400300043d00000040010000390000000001130436001000000001001d00000040013000390000000a020000290000000000210435001400000003001d0000006003300039000000070d300029000000000002004b0000163d0000c13d000000060100002900000010020000290000000000120435000000140200002900000000012d004900000db20010009c00000db201008041000000600110021000000db20020009c00000db2020080410000004002200210000000000121019f000000000200041400000db20020009c00000db202008041000000c002200210000000000121019f00000e36011001c70000800d02000039000000010300003900000eaa0400004100000d6d0000013d000000df02000039000000000202041a000000000002004b000016df0000613d000000000021004b000016df0000a13d000000400100043d000000440210003900000ea503000041000000000032043500000024021000390000000703000039000000000032043500000db502000041000000000021043500000004021000390000002003000039000000000032043500000db20010009c00000db201008041000000400110021000000e84011001c7000036c70001043000000ec80120019700000011020000290000000000120435000000130000006b000000200100003900000000010060390000003f0110003900000ec9021001970000001201200029000000000021004b0000000002000039000000010200403900000e260010009c00000c230000213d000000010020019000000c230000c13d000000400010043f0000001401000029000000000010043f0000000801000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000048c0000c13d000000000001004b000019390000c13d000000150100002900000e720010009c000019560000413d0000004001000039000000150200002900000e720220012a0000195f0000013d00000002040003670000000002000031000000110120006a001200000002001d0013001f00200092000001230110008a000000000701001900000e6408100197000000000b000019000000150c000029000016510000013d0000001f01e0003900000ec90110019700000000025e00190000000000020435000000000d510019000000200cc00039000000010bb000390000000a00b0006c000015de0000813d0000001401d0006a000000600110008a00000000031304360000000001c4034f000000000201043b00000e6401200197000000000581013f000000000081004b000000000100001900000e6401004041000000000072004b000000000900001900000e640900804100000e640050009c000000000109c019000000000001004b0000004b0000c13d000000150e2000290000000001e4034f000000000101043b00000000011d04360000002002e00039000000000224034f000000000202043b00000000002104350000004001e00039000000000114034f000000000101043b0000004002d0003900000000001204350000006001e00039000000000114034f000000000101043b0000006002d0003900000000001204350000008001e00039000000000114034f000000000101043b0000008002d000390000000000120435000000a001e00039000000000114034f000000a002d00039000000000101043b0000000000120435000000c001e00039000000000214034f000000000202043b00000e240020009c0000004b0000213d000000c005d0003900000000002504350000001305e000690000002001100039000000000114034f000000000201043b00000e640150019700000e6409200197000000000f19013f000000000019004b000000000100001900000e6401004041000000000052004b000000000500001900000e640500804100000e6400f0009c000000000105c019000000000001004b0000004b0000c13d0000000001e20019000000000214034f000000000e02043b00000e2600e0009c0000004b0000213d00000020021000390000001201e00069000000000012004b000000000500001900000e640500204100000e640110019700000e6409200197000000000f19013f000000000019004b000000000100001900000e640100404100000e6400f0009c000000000105c019000000000001004b0000004b0000c13d000000e001d00039000001000500003900000000005104350000010001d000390000000000e10435000000000124034f00000ec909e001980000012005d00039000000000f950019000016ba0000613d000000000201034f000000000d050019000000002602043c000000000d6d04360000000000fd004b000016b60000c13d0000001f02e00190000016480000613d000000000191034f000000030220021000000000060f043300000000062601cf000000000626022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000161019f00000000001f0435000016480000013d00000ec80120019700000012020000290000000000120435000000150000006b000000200100003900000000010060390000003f0110003900000ec9021001970000001401200029000000000021004b0000000002000039000000010200403900000e260010009c00000c230000213d000000010020019000000c230000c13d000000400010043f00000014020000290000000002020433000000000002004b000017d00000c13d00000e6d020000410000099b0000013d0000001001000039000000000201041a0000001101000039000000000101041a001300000002001d000000000021001a00000c9d0000413d0000001301100029000000130010006c000019080000a13d000000010110008a001500000001001d000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a001400000001001d00000e8d010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f0000000100200190000023080000613d000000000101043b000000140010006c0000001501000029000016e70000413d0000000001000411000b00000001001d000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000a00000001001d000017220000613d000000140100008a00000000011000310000000201100367000000000101043b000a0060001002780000001501000029000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d000900000002001d00000e8e0020009c00000c230000213d000000000101043b00000009030000290000010002300039000000400020043f000000000201041a00000000042304360000000102100039000000000202041a000500000004001d00000000002404350000000202100039000000000202041a0000004004300039000400000004001d00000000002404350000000302100039000000000202041a0000006004300039001300000004001d00000000002404350000000402100039000000000202041a0000008004300039000c00000004001d00000000002404350000000502100039000000000202041a000000a004300039000800000004001d0000000000240435000000c0033000390000000602100039000000000202041a00000e2402200197000700000003001d00000000002304350000000701100039000000000201041a000000010320019000000001042002700000007f0440618f001400000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000048c0000c13d000000400400043d000600000004001d00000014050000290000000004540436000300000004001d000000000003004b000019d30000613d000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000001405000029000000000005004b00000000020000190000000306000029000019d90000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b0000177b0000413d000019d90000013d000000000001004b000018630000c13d000000400200043d001500000002001d00000db501000041000000000012043500000004012000390000000e0200002936c528260000040f0000001502000029000000000121004900000db20010009c00000db201008041000000600110021000000db20020009c00000db2020080410000004002200210000000000121019f000036c700010430000000400100043d000000440210003900000e8303000041000000000032043500000024021000390000001d03000039000016000000013d000000150000006b0000186e0000c13d00000e5f010000410000000f02000029000000000012043500000db20020009c00000db202008041000000400120021000000e60011001c7000036c70001043000000ec80120019700000012020000290000000000120435000000140000006b000000200200003900000000020060390000003f0120003900000ec9021001970000001301200029000000000021004b0000000002000039000000010200403900000e260010009c00000c230000213d000000010020019000000c230000c13d000000400010043f00000013020000290000000002020433000000000002004b000019170000c13d00000e620200004100000000002104350000000402100039000000150300002900000d510000013d000000000201043b0000000001000019000000110500002900000013060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000061004b000017c50000413d000016110000013d000000400100043d00000eb2020000410000099b0000013d00000e630020009c0000004b0000213d000000400020008c0000004b0000413d0000001203000029000000000303043300000e260030009c0000004b0000213d000000120420002900000012023000290000001f03200039000000000043004b000000000500001900000e640500804100000e640330019700000e6406400197000000000763013f000000000063004b000000000300001900000e640300404100000e640070009c000000000305c019000000000003004b0000004b0000c13d000000003202043400000e260020009c00000c230000213d0000001f0520003900000ec9055001970000003f0550003900000ec905500197000000000515001900000e260050009c00000c230000213d000000400050043f0000000005210436001200000005001d0000000005320019000000000045004b0000004b0000213d000000000002004b0000001207000029000018030000613d000000000400001900000000057400190000000006340019000000000606043300000000006504350000002004400039000000000024004b000017fc0000413d00000000027200190000000000020435000000140200002900000040022000390000000002020433000400000002001d0000000006010433000000400300043d000d00200030003d0000000d01600029000000400010043f00000009040000290000001f0140018f001000000001001d00000003051002100000010002500089000500000005001d000b0ecb00500287000600000002001d000a0ecb002002270000005f01400039000f0ec90010019b00140ec90040019b000e00200040003d000700000003001d001100000006001d00000000006304350000000008000019000000400600043d0000002007600039000000110080006c00001aaf0000813d000000140170002900000013020000290000000202200367000000140000006b0000182e0000613d000000000302034f0000000004070019000000003503043c0000000004540436000000000014004b0000182a0000c13d0000000005070019000000100000006b000018380000613d00000000030104330000000b0330017f0000001402200360000000000202043b0000000a0220017f000000000232019f00000000002104350000000e020000290000000001260019001500000008001d000000000081043500000000002604350000000f016000290000000003060019000000000061004b0000000002000039000000010200403900000e260010009c00000c230000213d000000010020019000000c230000c13d000000400010043f00000db20050009c00000db2050080410000004001500210000000000203043300000db20020009c00000db2020080410000006002200210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000150800002900000012028000290000000002020433000000000101043b000000000112013f0000000d028000290000000000120435000000200880003a0000181f0000c13d00000c9d0000013d00000db20030009c00000db203008041000000400230021000000db20010009c00000db2010080410000006001100210000000000121019f000036c700010430000000400100043d00000ea9020000410000099b0000013d00000014010000290000001f0110003900000ec901100197000d00000001001d0000003f0110003900000ec9011001970000000f011000290000000f0010006c0000000002000039000000010200403900000e260010009c00000c230000213d000000010020019000000c230000c13d0000000c02000039000000000202041a000c00000002001d000000400010043f00000014010000290000000f030000290000000001130436000e00000001001d0000001201000029000000000010007c0000004b0000213d000000140100002900000ec9021001980012001f00100193000b00000002001d0000000e0120002900000013020000290000002002200039001300000002001d0000000202200367000018970000613d000000000302034f0000000e04000029000000003503043c0000000004540436000000000014004b000018930000c13d000000120000006b000018a50000613d0000000b0220036000000012030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000e02000029000000140120002900000000000104350000000c02000029000000150020002a00000c9d0000413d0000000902000039000000000102041a00000e260010009c00000c230000213d0000000c0400002900000015044000290000000103100039000000000032041b00000e5d0110009a000000000041041b001500000004001d000000000040043f0000000a01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000a00000001001d0000000f010000290000000001010433000900000001001d00000e260010009c00000c230000213d0000000a01000029000000000101041a000000010010019000000001021002700000007f0220618f000800000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000048c0000c13d0000000801000029000000200010008c000018f40000413d0000000a01000029000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d00000009030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000018f40000813d000000000002041b0000000102200039000000000012004b000018f00000413d00000009010000290000001f0010008c00001aa20000a13d0000000a01000029000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000200200008a0000000902200180000000000101043b00001b690000c13d000000200300003900001b760000013d000000400100043d00000e8c020000410000099b0000013d000000000201043b0000000001000019000000120500002900000015060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000061004b0000190f0000413d000016ce0000013d0000001501000029000000000010043f0000000b01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000010300003900000e880400004100000d6d0000013d000000400100043d000000440210003900000ea803000041000000000032043500000024021000390000000203000039000016000000013d000000400100043d000000200310003900000012020000290000000002020433000000000002004b0000001107000029000019480000613d000000000400001900000000053400190000000006470019000000000606043300000000006504350000002004400039000000000024004b000019410000413d000000000332001900000e710400004100000000004304350000000103200039000000000031043500000ec90220019700000000022100190000004002200039000000000302001900000e260020009c00000c230000213d000000000013004b000019c40000813d00000c230000013d000000150200002900000e740020009c00000e730220212a0000000001000039000000200100203900000e750020009c00000010011081bf00000e2a0220819700000e750220812a00000e760020009c000000080110803900000e260220819700000e760220812a000027100020008c000000040110803900000db202208197000027100220811a000000640020008c00000002011080390000ffff0220818f000000640220811a000000090020008c000000010110203900000ec903000041000000000431016f0000005f02400039000000000532016f000000400300043d0000000002350019000000000052004b0000000005000039000000010500403900000e260020009c00000c230000213d000000010050019000000c230000c13d000000400020043f00000001021000390000000002230436000000200440003900000ec9054001980000001f0440018f000019890000613d0000000005520019000000000600003100000002066003670000000007020019000000006806043c0000000007870436000000000057004b000019850000c13d000000000004004b000000000113001900000021011000390000001506000029000000090060008c0000000a4660011a0000000304400210000000010110008a000000000501043300000e770550019700000e780440021f00000e7904400197000000000454019f00000000004104350000198d0000213d000000400100043d000000200410003900000012050000290000000005050433000000000005004b0000001109000029000019a70000613d000000000600001900000000074600190000000008690019000000000808043300000000008704350000002006600039000000000056004b000019a00000413d000000000445001900000000000404350000000003030433000000000003004b000019b40000613d000000000500001900000000064500190000000007250019000000000707043300000000007604350000002005500039000000000035004b000019ad0000413d000000000243001900000000000204350000000002120049000000200320008a00000000003104350000001f0220003900000ec9022001970000000004120019000000000024004b00000000020000390000000102004039000000000304001900000e260040009c00000c230000213d000000010020019000000c230000c13d001500000003001d000000400030043f0000002002000039000000000223043636c528140000040f0000001502000029000000000121004900000db20010009c00000db20100804100000db20020009c00000db20200804100000060011002100000004002200210000000000121019f000036c60001042e00000ec80120019700000003020000290000000000120435000000140000006b000000200200003900000000020060390000003f0120003900000ec9021001970000000601200029000000000021004b0000000002000039000000010200403900000e260010009c00000c230000213d000000010020019000000c230000c13d000000400010043f0000000901000029000000e0011000390000000602000029000000000021043500000008010000290000000001010433000600000001001d00000013010000290000000001010433000300000001001d0000000701000029000000000101043300080e240010019b0000000c010000290000000001010433000700000001001d000000000001004b00001a2c0000c13d001300060000002d001400080000002d0000001501000029000000000010043f0000001301000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000000a0200002900000e2402200197000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000100200002900000e2402200197000000140020006b00001bed0000c13d00000013040000290000000e0040006c00001bed0000c13d000000000101043b000000000101041a0000001101100029000000110000006b00001a230000613d000000110010006c00000c9d0000413d000000030010006c00001c600000a13d000000400200043d0000002403200039000000000013043500000ea3010000410000000000120435000000040120003900000003030000290000000000310435000008e60000013d00000002010003670000000d02100360000000000302043b00000000020000310000000f0420006a000000230440008a00000e640540019700000e6406300197000000000756013f000000000056004b000000000500001900000e6405004041000000000043004b000000000400001900000e640400804100000e640070009c000000000504c019000000000005004b0000004b0000c13d0000000d03300029000000000431034f000000000404043b000f00000004001d00000e260040009c0000004b0000213d0000000f0400002900000005044002100000000002420049000000200630003900000e640320019700000e6404600197000000000534013f000000000034004b000000000300001900000e6403004041000c00000006001d000000000026004b000000000200001900000e640200204100000e640050009c000000000302c019000000000003004b0000004b0000c13d0000000d02000029000d00600020003d0000000d02100360000000000202043b00000e240020009c0000004b0000213d0000000d0400002900010040004000920000000103100360000000000303043b00020020004000920000000201100360000000000401043b0000006002200210000000400100043d00000074051000390000000000250435000000540210003900000000004204350000000a02000029000000600420021000000020021000390000000000420435000000340410003900000000003404350000006803000039000000000031043500000e8f0010009c00000c230000213d000000a003100039000000400030043f00000db20020009c00000db2020080410000004002200210000000000101043300000db20010009c00000db2010080410000006001100210000000000121019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000000f0000006b00001c9a0000c13d000000070010006c000019f60000c13d00000002010003670000000102100360000000000202043b000000000002004b00000000030200190000000303006029000300000003001d0000000202100360000000000302043b001300000003001d00000ecb0030009c000019f60000613d0000000d01100360000000000101043b001400000001001d00000e240010009c0000004b0000213d000000140000006b0000000801006029001400000001601d000019f80000013d000000090000006b000000000100001900001aa70000613d0000000e0100002900000000010104330000000904000029000000030240021000000ecb0220027f00000ecb02200167000000000121016f0000000102400210000000000121019f00001b840000013d001200000007001d001500000006001d00000e65010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f0000000100200190000023080000613d000000000101043b001100000001001d00000007010000290000000001010433000000000001004b0000000d05000029000000120600002900001acc0000613d000000000200001900000000036200190000000004520019000000000404043300000000004304350000002002200039000000000012004b00001ac50000413d00000000016100190000000000010435000000140210002900000013030000290000000203300367000000140000006b00001ad90000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00001ad50000c13d000000100000006b00001ae40000613d0000001403300360000000000402043300000005044001f00000000504400250000000000303043b000000060330025000000006033001f0000000000343019f00000000003204350000000901100029000000110200002900000000002104350000001503000029000000000131004900000000001304350000003f0110003900000ec9021001970000000001320019000000000021004b0000000002000039000000010200403900000e260010009c00000c230000213d000000010020019000000c230000c13d000000400010043f000000120100002900000db20010009c00000db20100804100000040011002100000001502000029000000000202043300000db20020009c00000db2020080410000006002200210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000400200043d001500000002001d000000000101043b000000040010006c00001c000000c13d000000150100002900000e680010009c00000c230000213d00000015010000290000002002100039001400000002001d000000400020043f00000000000104350000000801000029000000000010043f0000000801000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b001300000001001d00000015010000290000000001010433001200000001001d00000e260010009c00000c230000213d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f001100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000048c0000c13d0000001101000029000000200010008c00001b550000413d0000001301000029000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d00000012030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000011010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001b550000813d000000000002041b0000000102200039000000000012004b00001b510000413d0000001201000029000000200010008c00001d670000413d0000001301000029000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000200200008a0000001202200180000000000101043b00001e0d0000c13d000000200300003900001e190000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000f0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001b6f0000c13d000000090020006c00001b810000813d00000009020000290000000302200210000000f80220018f00000ecb0220027f00000ecb022001670000000f033000290000000003030433000000000223016f000000000021041b0000000901000029000000010110021000000001011001bf0000000a02000029000000000012041b00000015010000290000000c02000039000000000012041b000000000001004b00000c9d0000613d000000400100043d0000006002100039000000140300002900000000003204350000002002100039000000600300003900000000003204350000001502000029000000010220008a000000000021043500000080031000390000000b04300029000000020200036700000013052003600000000b0000006b00001ba10000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001b9d0000c13d000000120000006b00001baf0000613d0000000b0550036000000012060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000140430002900000000000404350000000d0330002900000000041300490000004005100039000000000045043500000010042003600000001106000029000000000263043600000ec9056001980000001f0660018f000000000352001900001bc20000613d000000000704034f0000000008020019000000007907043c0000000008980436000000000038004b00001bbe0000c13d000000000006004b00001bcf0000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000011040000290000001f0340003900000ec903300197000000000442001900000000000404350000000003130049000000000223001900000db20020009c00000db202008041000000600220021000000db20010009c00000db2010080410000004001100210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c70000800d02000039000000020300003900000e5e040000410000000c0500002936c536b60000040f00000001002001900000004b0000613d000000400100043d0000001502000029000008920000013d000000400100043d00000064031000390000001304000029000000000043043500000044031000390000001404000029000000000043043500000024031000390000000e04000029000000000043043500000ea40300004100000000003104350000000403100039000000000023043500000db20010009c00000db201008041000000400110021000000e2b011001c7000036c70001043000000015010000290000002001100039001400000001001d000000070200002900000013030000290000000904000029000000110500002936c52bf80000040f00000015030000290000000002310049000000200120008a0000000000130435000000000103001936c528580000040f00000015010000290000000002010433000000140100002936c536a10000040f00000e6702000041000000400300043d0000000000230435000000040230003900000004040000290000000000420435000000240230003900001c6f0000013d00000db301000041000000000010044300000000010004100000000400100443000000000100041400000db20010009c00000db201008041000000c00110021000000db4011001c7000080020200003936c536bb0000040f0000000100200190000023080000613d0000001402000029000000ff0220018f000000000101043b000000010020008c00001c8a0000c13d000000000001004b00001c8a0000c13d000000000200041a000003390000013d0000ff000020019000001c560000613d00000013020000290000000002020433000000000002004b00001c540000613d001400000000001d000000140100002900000005011002100000001201100029000000000101043300000e2401100197000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b0000001402000029001400010020003d00000013010000290000000001010433000000140010006b00001c370000413d000000000100041a0000ff000010019000001cca0000c13d000000400100043d000000640210003900000e5b030000410000000000320435000000440210003900000e5c03000041000000000032043500000024021000390000002b0300003900001c930000013d00000004010000290000000001010433000000110010002a00000c9d0000413d000000110210002900000005010000290000000001010433000000000012004b00001c710000a13d000000400300043d0000002404300039000000000024043500000ea20200004100000000002304350000000402300039000000000012043500000f1a0000013d00000009010000290000000001010433001300000001001d00000e8d010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f0000000100200190000023080000613d000000000101043b000000130010006b00001cf10000a13d000000400200043d0000002403200039000000000013043500000ea10100004100000000001204350000000401200039000000130300002900001a2a0000013d000000400100043d000000640210003900000db7030000410000000000320435000000440210003900000db603000041000000000032043500000024021000390000002e03000039000000000032043500000db502000041000000000021043500000004021000390000002003000039000000000032043500001bfb0000013d001400000000001d000000000200001900001cb00000013d000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000130200002900000001022001bf000000000101043b00000014040000290000000104400039001400000004001d0000000f0040006c00001a8b0000813d0013000100200218000000000002004b00001cb60000613d00000013022000f9000000020020008c00000c9d0000c13d000000140200002900000005022002100000000c022000290000000202200367000000000202043b000000000021004b00001c9d0000213d000000000010043f000000200020043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000130200002900001caa0000013d000000800200043d00000e260020009c00000c230000213d000000ac01000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f00000001004001900000048c0000c13d000000200030008c00001ce90000413d000000000010043f0000001f04200039000000050440027000000e2d0440009a000000200020008c00000e2e040040410000001f03300039000000050330027000000e2d0330009a000000000034004b00001ce90000813d000000000004041b0000000104400039000000000034004b00001ce50000413d0000001f0020008c00001db50000a13d000000000010043f00000ec90520019800001dc00000c13d000000200400003900000e2e0300004100001dcc0000013d0000001501000029000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000000201100039000000000201041a000000110020002a00000c9d0000413d0000001102200029000000000021041b0000001501000029000000000010043f0000001301000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b001300000001001d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff00100190000000000100041100001d2b0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000000010043f0000001301000029000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a000000110020002a00000c9d0000413d0000001102200029000000000021041b0000000001000415001300000001001d0000000e0000006b00001f020000c13d0000000001000416000000000001004b00001f1f0000c13d0000000001000415000000130110006900000000010000020000000001000415000c00000001001d000000400100043d000d00000001001d00000e680010009c00000c230000213d000000aa01000039000000000101041a000a00000001001d0000000d010000290000002002100039001400000002001d000000400020043f0000000000010435000000120100002900100e240010019c000022690000c13d000000400100043d00000ea0020000410000099b0000013d000000000002004b000000000300001900001d8c0000613d000000030320021000000ecb0330027f00000ecb03300167000000a00400043d000000000334016f0000000102200210000000000323019f00001d8c0000013d000000120000006b000000000100001900001e270000613d0000001203000029000000030130021000000ecb0110027f00000ecb0110016700000014020000290000000002020433000000000112016f0000000102300210000000000121019f00001e270000013d00000e2e030000410000002004000039000000010650008a000000050660027000000e2f0660009a00000080074000390000000007070433000000000073041b00000020044000390000000103300039000000000063004b00001d790000c13d000000000025004b00001d8a0000813d0000000305200210000000f80550018f00000ecb0550027f00000ecb0550016700000080044000390000000004040433000000000454016f000000000043041b000000010220021000000001032001bf000000000031041b0000001101000029000000000201043300000e260020009c00000c230000213d000000ad01000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f00000001004001900000048c0000c13d000000200030008c00001dad0000413d000000000010043f0000001f04200039000000050440027000000e300440009a000000200020008c00000e31040040410000001f03300039000000050330027000000e300330009a000000000034004b00001dad0000813d000000000004041b0000000104400039000000000034004b00001da90000413d000000200020008c00001e010000413d000000000010043f00000ec90520019800001e910000c13d000000200400003900000e310300004100001e9d0000013d000000000002004b000000000300001900001dd80000613d000000030320021000000ecb0330027f00000ecb03300167000000a00400043d000000000334016f0000000102200210000000000323019f00001dd80000013d00000e2e030000410000002004000039000000010650008a000000050660027000000e2f0660009a00000080074000390000000007070433000000000073041b00000020044000390000000103300039000000000063004b00001dc50000c13d000000000025004b00001dd60000813d0000000305200210000000f80550018f00000ecb0550027f00000ecb0550016700000080044000390000000004040433000000000454016f000000000043041b000000010220021000000001032001bf000000000031041b0000001101000029000000000201043300000e260020009c00000c230000213d000000ad01000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f00000001004001900000048c0000c13d000000200030008c00001df90000413d000000000010043f0000001f04200039000000050440027000000e300440009a000000200020008c00000e31040040410000001f03300039000000050330027000000e300330009a000000000034004b00001df90000813d000000000004041b0000000104400039000000000034004b00001df50000413d000000200020008c00001ec90000413d000000000010043f00000ec90520019800001f230000c13d000000200400003900000e310300004100001f2f0000013d000000000002004b000000000300001900001ea90000613d000000030320021000000ecb0330027f00000ecb0330016700000010040000290000000004040433000000000334016f0000000102200210000000000323019f00001ea90000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000015053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001e120000c13d000000120020006c00001e240000813d00000012020000290000000302200210000000f80220018f00000ecb0220027f00000ecb0220016700000015033000290000000003030433000000000223016f000000000021041b0000001201000029000000010110021000000001011001bf0000001302000029000000000012041b0000000801000029000000000010043f0000000b01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff0010019000001e8b0000c13d0000000a01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b001500000001001d00000007010000290000000001010433001400000001001d00000e260010009c00000c230000213d0000001501000029000000000101041a000000010010019000000001021002700000007f0220618f001300000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000048c0000c13d0000001301000029000000200010008c00001e770000413d0000001501000029000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d00000014030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000013010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001e770000813d000000000002041b0000000102200039000000000012004b00001e730000413d00000014010000290000001f0010008c000021f00000a13d0000001501000029000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000200200008a0000001402200180000000000101043b000024f60000c13d0000002003000039000025020000013d000000400100043d00000e690200004100000000002104350000000402100039000000080300002900000d510000013d00000e31030000410000002004000039000000010650008a000000050660027000000e320660009a00000011074000290000000007070433000000000073041b00000020044000390000000103300039000000000063004b00001e960000c13d000000000025004b00001ea70000813d0000000305200210000000f80550018f00000ecb0550027f00000ecb0550016700000011044000290000000004040433000000000454016f000000000043041b000000010220021000000001032001bf000000000031041b000000aa01000039000000000001041b0000000103000039000000000103041a000000010510019000000001061002700000007f0660618f0000001f0060008c00000000020000390000000102002039000000000221013f00000001002001900000048c0000c13d000000400400043d0000000002640436000000000005004b00001ed50000613d000000000030043f000000000006004b000000000100001900001eda0000613d00000e330500004100000000010000190000000007210019000000000805041a000000000087043500000001055000390000002001100039000000000061004b00001ec10000413d00001eda0000013d000000000002004b000000000300001900001f3b0000613d000000030320021000000ecb0330027f00000ecb0330016700000010040000290000000004040433000000000334016f0000000102200210000000000323019f00001f3b0000013d00000ec8011001970000000000120435000000000006004b000000200100003900000000010060390000003f0110003900000ec9051001970000000001450019000000000051004b0000000005000039000000010500403900000e260010009c00000c230000213d000000010050019000000c230000c13d000000400010043f0000000f05000029000000000505043300000e260050009c00000c230000213d000000200060008c00001efa0000413d000000000030043f0000001f07500039000000050770027000000e340770009a000000200050008c00000e33070040410000001f06600039000000050660027000000e340660009a000000000067004b00001efa0000813d000000000007041b0000000107700039000000000067004b00001ef60000413d0000001f0050008c00001f880000a13d000000000030043f00000ec90850019800001f940000c13d000000200700003900000e330600004100001fa00000013d0000000e0200002900000011032000b9001000000003001d00000011013000fa000000000021004b00000c9d0000c13d0000000601000039000000000101041a000d00000001001d0000000201000039000000000101041a000e00000001001d000000100000006b000f00000000001d00001f190000613d0000000e01000029000000a0011002700000ffff0110018f00000010031000b9000f00000003001d00000010023000fa000000000012004b00000c9d0000c13d0000000001000416000000140200002900000e900020009c000021fd0000c13d000000100010006c000021ff0000613d000000400100043d000000440210003900000e9403000041000019350000013d00000e31030000410000002004000039000000010650008a000000050660027000000e320660009a00000011074000290000000007070433000000000073041b00000020044000390000000103300039000000000063004b00001f280000c13d000000000025004b00001f390000813d0000000305200210000000f80550018f00000ecb0550027f00000ecb0550016700000011044000290000000004040433000000000454016f000000000043041b000000010220021000000001032001bf000000000031041b000000aa01000039000000000001041b0000000103000039000000000103041a000000010510019000000001061002700000007f0660618f0000001f0060008c00000000020000390000000102002039000000000221013f00000001002001900000048c0000c13d000000400400043d0000000002640436000000000005004b00001f5b0000613d000000000030043f000000000006004b000000000100001900001f600000613d00000e330500004100000000010000190000000007210019000000000805041a000000000087043500000001055000390000002001100039000000000061004b00001f530000413d00001f600000013d00000ec8011001970000000000120435000000000006004b000000200100003900000000010060390000003f0110003900000ec9051001970000000001450019000000000051004b0000000005000039000000010500403900000e260010009c00000c230000213d000000010050019000000c230000c13d000000400010043f0000000f05000029000000000505043300000e260050009c00000c230000213d000000200060008c00001f800000413d000000000030043f0000001f07500039000000050770027000000e340770009a000000200050008c00000e33070040410000001f06600039000000050660027000000e340660009a000000000067004b00001f800000813d000000000007041b0000000107700039000000000067004b00001f7c0000413d0000001f0050008c000021e40000a13d000000000030043f00000ec908500198000023090000c13d000000200700003900000e3306000041000023150000013d000000000005004b000000000600001900001fac0000613d000000030650021000000ecb0660027f00000ecb066001670000000e070000290000000007070433000000000667016f0000000105500210000000000656019f00001fac0000013d00000e33060000410000002007000039000000010980008a000000050990027000000e350990009a0000000f0a700029000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b00001f990000c13d000000000058004b00001faa0000813d0000000308500210000000f80880018f00000ecb0880027f00000ecb088001670000000f077000290000000007070433000000000787016f000000000076041b000000010550021000000001065001bf000000000063041b000000400300003900000000033104360000000004040433000000400510003900000000004504350000006005100039000000000004004b00001fbd0000613d000000000600001900000000075600190000000008620019000000000808043300000000008704350000002006600039000000000046004b00001fb60000413d000000000254001900000000000204350000001f0240003900000ec9022001970000000002520019000000000412004900000000004304350000000f0300002900000000030304330000000002320436000000000003004b00001fd10000613d000000000400001900000000052400190000000e06400029000000000606043300000000006504350000002004400039000000000034004b00001fca0000413d000000000423001900000000000404350000001f0330003900000ec9033001970000000002120049000000000232001900000db20020009c00000db202008041000000600220021000000db20010009c00000db2010080410000004001100210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c70000800d02000039000000010300003900000e370400004136c536b60000040f00000001002001900000004b0000613d000000150100002900000e24061001970000000701000039000000000201041a00000e3803200197000000000363019f000000000031041b000000000100041400000e240520019700000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000030300003900000e3904000041001500000006001d36c536b60000040f00000001002001900000004b0000613d0000001501000029000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d020000390000000403000039000000000700041100000e3b040000410000000005000019000000150600002936c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e3c01000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e3d01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000000030043f00000e3e01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000e3f01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000e40050000410000001506000029000000000700041136c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e4101000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e4201000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000000030043f00000e4301000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000e4401000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000e45050000410000001506000029000000000700041136c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e4601000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e4701000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000000030043f00000e4801000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b000000000000043f00000e4401000041000000200010043f00000e4901000041000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000e45050000410000000006000019000000000700041136c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e4601000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e4701000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e3802200197000000000021041b000000000000043f00000e4801000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000e4a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000e4b050000410000001506000029000000000700041136c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e4c01000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e4d01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000000030043f00000e4e01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b00000e4b01000041000000000010043f0000000e02000039000000200020043f00000e4f02000041000000000602041a000000000012041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e500400004100000e4b0500004100000e4b0700004136c536b60000040f00000001002001900000004b0000613d0000000a0100002900000e2a01100197000027110010008c000024f10000813d000000090200002900000e2405200198000027780000613d0000000203000039000000000203041a00000e5102200197000000a00410021000000e5204400197000000000224019f000000000252019f000000000023041b000000400200043d000000000012043500000db20020009c00000db2020080410000004001200210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d0200003900000e530400004136c536b60000040f00000001002001900000004b0000613d0000000b0100002900000e2a01100197000027110010008c0000279b0000813d0000000404000039000000000204041a00000e5102200197000000a00310021000000e5203300197000000000223019f0000000c0300002900000e2405300197000000000252019f000000000024041b000000400200043d000000000012043500000db20020009c00000db2020080410000004001200210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d02000039000000020300003900000e540400004136c536b60000040f00000001002001900000004b0000613d0000000d0100002900000e2405100198000027ee0000613d0000000601000039000000000201041a00000e3802200197000000000252019f000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000020300003900000e550400004136c536b60000040f00000001002001900000004b0000613d00000e4501000041000000dc02000039000000000012041b00000e4001000041000000dd02000039000000000012041b00000e4b01000041000000de02000039000000000012041b000000000200041a00000ecc01200197000000000010041b000000400100043d0000000103000039000000000031043500000db20010009c00000db2010080410000004001100210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d0200003900000dbb0400004100000d6d0000013d000000000005004b0000000006000019000023210000613d000000030650021000000ecb0660027f00000ecb066001670000000e070000290000000007070433000000000667016f0000000105500210000000000656019f000023210000013d000000140000006b0000000001000019000021f50000613d0000000d0100002900000000010104330000001404000029000000030240021000000ecb0220027f00000ecb02200167000000000121016f0000000102400210000000000121019f000025100000013d000000000001004b00001f1f0000c13d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000022160000613d000000140100008a00000000011000310000000201100367000000000101043b00000060011002700000000f03000029000c271000300122000027100030008c000025470000813d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000022310000613d000000140100008a00000000011000310000000201100367000000000101043b00000060011002700000000c03000029001000100030007300000c9d0000413d00001d450000613d0000000d02000029000f0e240020019b000000140200002900000e900020009c000026340000c13d00000000010004140000000f02000029000000040020008c0000264a0000c13d000000010100003200001d450000613d00000e260010009c00000c230000213d0000001f0210003900000ec9022001970000003f0220003900000ec903200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000e260030009c00000c230000213d000000010040019000000c230000c13d000000400030043f000000000512043600000ec9021001980000001f0310018f000000000125001900000003040003670000225b0000613d000000000604034f000000006706043c0000000005750436000000000015004b000022570000c13d000000000003004b00001d450000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500001d450000013d000000dc01000039000000000101041a000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000000043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000001001000029000000000010043f000000af01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a000000110320002900000e260330019700000e9502200197000000000223019f000000000021041b0000001001000029000000000010043f000000af01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d00000011020000290000004002200210000000000101043b000000000301041a000000000223001900000e960220019700000e9703300197000000000232019f000000000021041b0000000a01000029000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e380220019700000010022001af000000000021041b00000e8d010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f0000000100200190000023080000613d000000000101043b001300000001001d0000000a01000029000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d0000001302000029000000a00220021000000e9802200197000000000101043b000000000301041a00000e9903300197000000000223019f000000000021041b00000db301000041000000000010044300000012010000290000000400100443000000000100041400000db20010009c00000db201008041000000c00110021000000db4011001c7000080020200003936c536bb0000040f0000000100200190000023080000613d0000000a03000029001200110030002d000000000101043b000000000001004b000026970000c13d0013000a0000002d000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e9a0400004100000000050000190000001006000029000000130700002936c536b60000040f00000001002001900000004b0000613d00000013020000290000000102200039001300000002001d000000120020006c000022f40000413d000027420000013d000000000001042f00000e33060000410000002007000039000000010980008a000000050990027000000e350990009a0000000f0a700029000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b0000230e0000c13d000000000058004b0000231f0000813d0000000308500210000000f80880018f00000ecb0880027f00000ecb088001670000000f077000290000000007070433000000000787016f000000000076041b000000010550021000000001065001bf000000000063041b000000400300003900000000033104360000000004040433000000400510003900000000004504350000006005100039000000000004004b000023320000613d000000000600001900000000075600190000000008620019000000000808043300000000008704350000002006600039000000000046004b0000232b0000413d000000000254001900000000000204350000001f0240003900000ec9022001970000000002520019000000000412004900000000004304350000000f0300002900000000030304330000000002320436000000000003004b000023460000613d000000000400001900000000052400190000000e06400029000000000606043300000000006504350000002004400039000000000034004b0000233f0000413d000000000423001900000000000404350000001f0330003900000ec9033001970000000002120049000000000232001900000db20020009c00000db202008041000000600220021000000db20010009c00000db2010080410000004001100210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c70000800d02000039000000010300003900000e370400004136c536b60000040f00000001002001900000004b0000613d000000150100002900000e24061001970000000701000039000000000201041a00000e3803200197000000000363019f000000000031041b000000000100041400000e240520019700000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000030300003900000e3904000041001500000006001d36c536b60000040f00000001002001900000004b0000613d0000001501000029000000000010043f00000e3a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d020000390000000403000039000000000700041100000e3b040000410000000005000019000000150600002936c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e3c01000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e3d01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000000030043f00000e3e01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000e3f01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000e40050000410000001506000029000000000700041136c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e4101000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e4201000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000000030043f00000e4301000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000e4401000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000e45050000410000001506000029000000000700041136c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e4601000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e4701000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000000030043f00000e4801000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b000000000000043f00000e4401000041000000200010043f00000e4901000041000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000e45050000410000000006000019000000000700041136c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e4601000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e4701000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e3802200197000000000021041b000000000000043f00000e4801000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000e4a01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000ec80220019700000001022001bf000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e3b0400004100000e4b050000410000001506000029000000000700041136c536b60000040f00000001002001900000004b0000613d0000000f01000039000000200010043f00000e4c01000041000000000201041a001400000002001d000000010220003a00000c9d0000613d000000000021041b0000001401000029000000000010043f00000e4d01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000201041a00000e38022001970000001503000029000000000232019f000000000021041b000000000030043f00000e4e01000041000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b0000001402000029000000000021041b00000e4b01000041000000000010043f0000000e02000039000000200020043f00000e4f02000041000000000602041a000000000012041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e500400004100000e4b0500004100000e4b0700004136c536b60000040f00000001002001900000004b0000613d0000000a0100002900000e2a01100197000027110010008c000027750000413d000000400200043d0000002403200039000000000013043500000e58010000410000279f0000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000007053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000024fb0000c13d000000140020006c0000250d0000813d00000014020000290000000302200210000000f80220018f00000ecb0220027f00000ecb0220016700000007033000290000000003030433000000000223016f000000000021041b0000001401000029000000010110021000000001011001bf0000001502000029000000000012041b0000000903000039000000000203041a000000400400043d0000000001240436000000000030043f000000000002004b0000000003010019000025230000613d00000e6a0500004100000000030100190000000006000019000000000705041a000000000373043600000001055000390000000106600039000000000026004b0000251d0000413d00000000034300490000001f0330003900000ec9053001970000000003450019000000000053004b0000000005000039000000010500403900000e260030009c00000c230000213d000000010050019000000c230000c13d000000400030043f000000000002004b0000253d0000613d00000000040404330000000005000019000000000054004b000025c70000a13d000000050650021000000000061600190000000006060433000000080060006c0000257b0000613d0000000105500039000000000025004b000025330000413d00000e6201000041000000000013043500000004013000390000000802000029000000000021043500000db20030009c00000db203008041000000400130021000000e23011001c7000036c7000104300000000e02000029000f0e240020019b000000140200002900000e900020009c000025cd0000c13d00000000010004140000000f02000029000000040020008c000025e30000c13d00000001010000320000221a0000613d00000e260010009c00000c230000213d0000001f0210003900000ec9022001970000003f0220003900000ec903200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000e260030009c00000c230000213d000000010040019000000c230000c13d000000400030043f000000000512043600000ec9021001980000001f0310018f000000000125001900000003040003670000256d0000613d000000000604034f000000006706043c0000000005750436000000000015004b000025690000c13d000000000003004b0000221a0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000221a0000013d000000000005004b0000000002000019000025840000613d000000010250008a000000000024004b000025c70000a13d000000050220021000000000011200190000000002010433000000200130003900000008040000290000000000410435000000000023043500000db20030009c00000db2030080410000004001300210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e2c011001c70000800d02000039000000010300003900000e6b0400004136c536b60000040f00000001002001900000004b0000613d000000400100043d000000200200003900000000032104360000000702000029000000000202043300000000002304350000004003100039000000000002004b000025a80000613d000000000400001900000000053400190000000d06400029000000000606043300000000006504350000002004400039000000000024004b000025a10000413d0000001f0420003900000ec90440019700000000023200190000000000020435000000400240003900000db20020009c00000db202008041000000600220021000000db20010009c00000db2010080410000004001100210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c70000800d02000039000000020300003900000e6c040000410000000c0500002936c536b60000040f00000001002001900000004b0000613d000000400200043d001500000002001d00000020010000390000000002120436000000070100002900000b5b0000013d00000e2201000041000000000010043f0000003201000039000000040010043f00000e2301000041000036c70001043000000e24011001970000000f0010006c0000221a0000613d000000400200043d0000004403200039000000240420003900000020052000390000000006000410000000000061004b000026220000c13d00000e920100004100000000001504350000000f0100002900000000001404350000000c0100002900000000001304350000004401000039000000000012043500000e270020009c00000c230000213d00000080010000390000262f0000013d00000db20010009c00000db201008041000000c00110021000000e36011001c700008009020000390000000c030000290000000f04000029000000000500001936c536b60000040f00030000000103550000000003010019000000600330027000010db20030019d00000db203300198000026170000613d0000001f0430003900000e80044001970000003f0440003900000e8104400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000e260040009c00000c230000213d000000010060019000000c230000c13d000000400040043f0000001f0430018f000000000635043600000e820530019800000000035600190000260a0000613d000000000701034f000000007807043c0000000006860436000000000036004b000026060000c13d000000000004004b000026170000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000001002001900000221a0000c13d000000400100043d00000024021000390000000c03000029000000000032043500000e9302000041000000000021043500000004021000390000000f03000029000004c80000013d00000e9106000041000000000065043500000000001404350000000f01000029000000000013043500000064012000390000000c0300002900000000003104350000006401000039000000000012043500000e8f0020009c00000c230000213d000000a0010000390000000001210019000000400010043f000000140100002936c535930000040f0000221a0000013d00000e24011001970000000f0010006c00001d450000613d000000400200043d0000004403200039000000240420003900000020052000390000000006000410000000000061004b0000265f0000c13d00000e920100004100000000001504350000000f010000290000000000140435000000100100002900000000001304350000004401000039000000000012043500000e270020009c00000c230000213d00000080010000390000266c0000013d00000db20010009c00000db201008041000000c00110021000000e36011001c7000080090200003900000010030000290000000f04000029000000000500001936c536b60000040f00030000000103550000000003010019000000600330027000010db20030019d00000db203300198000026710000c13d000000010020019000001d450000c13d000000400100043d000000240210003900000010030000290000261c0000013d00000e9106000041000000000065043500000000001404350000000f0100002900000000001304350000006401200039000000100300002900000000003104350000006401000039000000000012043500000e8f0020009c00000c230000213d000000a0010000390000000001210019000000400010043f000000140100002936c535930000040f00001d450000013d0000001f0430003900000e80044001970000003f0440003900000e8104400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000e260040009c00000c230000213d000000010060019000000c230000c13d000000400040043f0000001f0430018f000000000635043600000e82053001980000000003560019000026890000613d000000000701034f000000007807043c0000000006860436000000000036004b000026850000c13d000000000004004b000026590000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000026590000013d000900800000003d0013000a0000002d000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e9a0400004100000000050000190000001006000029000000130700002936c536b60000040f00000001002001900000004b0000613d0000000001000415000e00000001001d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000000001000411000026c00000613d000000140100008a00000000011000310000000201100367000000000101043b0000006001100270000000400400043d00000064024000390000008003000039000000000032043500000044024000390000001303000029000000000032043500000e9b02000041000000000024043500000e240110019700000004024000390000000000120435000000240140003900000000000104350000000d01000029000000000101043300000084024000390000000000120435000f00000004001d000000a402400039000000000001004b000026de0000613d000000000300001900000000042300190000001405300029000000000505043300000000005404350000002003300039000000000013004b000026d70000413d0000000002210019000000000002043500000000020004140000001003000029000000040030008c000026ec0000c13d0000000005000415000000170550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000027200000013d0000001f0110003900000ec901100197000000a40110003900000db20010009c00000db20100804100000060011002100000000f0300002900000db20030009c00000db2030080410000004003300210000000000131019f00000db20020009c00000db202008041000000c002200210000000000112019f000000100200002936c536b60000040f0000000003010019000000600330027000000db203300197000000200030008c0000002004000039000000000403401900000020064001900000000f056000290000270c0000613d000000000701034f0000000f08000029000000007907043c0000000008980436000000000058004b000027080000c13d0000001f07400190000027190000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000160550008a000000050550021000000001002001900000277b0000613d0000001f01400039000000600210018f0000000f01200029000000000021004b0000000002000039000000010200403900000e260010009c00000c230000213d000000010020019000000c230000c13d000000400010043f000000200030008c0000004b0000413d0000000f01000029000000000101043300000e9c001001980000004b0000c13d0000000502500270000000000201001f00000000020004150000000e02200069000000000200000200000e9d0110019700000e9b0010009c000027cd0000c13d00000013020000290000000102200039001300000002001d000000120020006c000026990000413d000000aa01000039000000000101041a0000000a0010006c0000004b0000c13d000000aa010000390000001302000029000000000021041b00000000010004150000000c0110006900000000010000020000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000004b0000613d000000000101043b000000000101041a000000ff001001900000275e0000613d000000140100008a00000000011000310000000201100367000000000101043b000b006000100278000000400100043d0000002002100039000000110300002900000000003204350000000a02000029000000000021043500000db20010009c00000db2010080410000004001100210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e2c011001c70000000b0200002900000e24062001970000800d02000039000000040300003900000e9f040000410000001505000029000000100700002900000d6d0000013d000000090200002900000e24052001980000277f0000c13d000000400100043d00000e5a02000041000027f00000013d000000000003004b000027a30000c13d0000006002000039000027ca0000013d0000000203000039000000000203041a00000e5102200197000000a00410021000000e5204400197000000000224019f000000000252019f000000000023041b000000400200043d000000000012043500000db20020009c00000db2020080410000004001200210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d0200003900000e530400004136c536b60000040f00000001002001900000004b0000613d0000000b0100002900000e2a01100197000027110010008c000027d00000413d000000400200043d0000002403200039000000000013043500000e560100004100000000001204350000000401200039000027100300003900001a2a0000013d0000001f0230003900000e80022001970000003f0220003900000e8104200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000e260040009c00000c230000213d000000010050019000000c230000c13d000000400040043f0000001f0430018f000000000632043600000e8205300198000900000006001d0000000003560019000027bd0000613d000000000601034f0000000907000029000000006806043c0000000007870436000000000037004b000027b90000c13d000000000004004b000027ca0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000027f40000c13d000000400100043d00000e9e020000410000099b0000013d0000000404000039000000000204041a00000e5102200197000000a00310021000000e5203300197000000000223019f0000000c0300002900000e2405300197000000000252019f000000000024041b000000400200043d000000000012043500000db20020009c00000db2020080410000004001200210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d02000039000000020300003900000e540400004136c536b60000040f00000001002001900000004b0000613d0000000d0100002900000e2405100198000027f90000c13d000000400100043d00000e590200004100000000002104350000000402100039000000000002043500000d520000013d000000090200002900000db20020009c00000db2020080410000004002200210000018660000013d0000000601000039000000000201041a00000e3802200197000000000252019f000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000020300003900000e550400004136c536b60000040f00000001002001900000004b0000613d00000e4501000041000000dc02000039000000000012041b00000e4001000041000000dd02000039000000000012041b00000e4b01000041000000de02000039000000000012041b0000000001000019000036c60001042e00000000430104340000000001320436000000000003004b000028200000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000028190000413d000000000213001900000000000204350000001f0230003900000ec9022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000028350000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000282e0000413d000000000312001900000000000304350000001f0220003900000ec9022001970000000001120019000000000001042d00000e630010009c0000284b0000213d000000630010008c0000284b0000a13d00000002030003670000000401300370000000000101043b00000e240010009c0000284b0000213d0000002402300370000000000202043b00000e240020009c0000284b0000213d0000004403300370000000000303043b000000000001042d0000000001000019000036c70001043000000ecd0010009c000028520000813d0000002001100039000000400010043f000000000001042d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c7000104300000001f0220003900000ec9022001970000000001120019000000000021004b0000000002000039000000010200403900000e260010009c000028640000213d0000000100200190000028640000c13d000000400010043f000000000001042d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c700010430000000000401001900000ece0020009c0000289a0000813d0000001f0120003900000ec9011001970000003f0110003900000ec905100197000000400100043d0000000005510019000000000015004b0000000007000039000000010700403900000e260050009c0000289a0000213d00000001007001900000289a0000c13d000000400050043f00000000052104360000000007420019000000000037004b000028a00000213d00000ec9062001980000001f0720018f000000020440036700000000036500190000288a0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000028860000c13d000000000007004b000028970000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c7000104300000000001000019000036c70001043000000000030100190000001f01300039000000000021004b000000000400001900000e640400404100000e640520019700000e6401100197000000000651013f000000000051004b000000000100001900000e640100204100000e640060009c000000000104c019000000000001004b000028ea0000613d0000000205000367000000000135034f000000000401043b00000ece0040009c000028e40000813d0000001f0140003900000ec9011001970000003f0110003900000ec907100197000000400100043d0000000007710019000000000017004b0000000008000039000000010800403900000e260070009c000028e40000213d0000000100800190000028e40000c13d0000002008300039000000400070043f00000000034104360000000007840019000000000027004b000028ea0000213d000000000585034f00000ec9064001980000001f0740018f0000000002630019000028d40000613d000000000805034f0000000009030019000000008a08043c0000000009a90436000000000029004b000028d00000c13d000000000007004b000028e10000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000052043500000000024300190000000000020435000000000001042d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c7000104300000000001000019000036c7000104300000001f03100039000000000023004b000000000400001900000e640400404100000e640520019700000e6403300197000000000653013f000000000053004b000000000300001900000e640300204100000e640060009c000000000304c019000000000003004b000029040000613d0000000203100367000000000303043b00000e260030009c000029040000213d00000020011000390000000004310019000000000024004b000029040000213d0000000002030019000000000001042d0000000001000019000036c70001043000000e630010009c0000291f0000213d000000430010008c0000291f0000a13d00000002030003670000000402300370000000000402043b0000002402300370000000000202043b00000e260020009c0000291f0000213d0000002305200039000000000015004b0000291f0000813d0000000405200039000000000353034f000000000303043b00000e260030009c0000291f0000213d00000024022000390000000005230019000000000015004b0000291f0000213d0000000001040019000000000001042d0000000001000019000036c7000104300000000104000039000000000304041a000000010530019000000001023002700000007f0220618f0000001f0020008c00000000060000390000000106002039000000000065004b000029460000c13d0000000001210436000000000005004b0000293c0000613d000000000040043f000000000002004b000029430000613d00000e330400004100000000030000190000000005310019000000000604041a000000000065043500000001044000390000002003300039000000000023004b000029330000413d0000000001310019000000000001042d00000ec8033001970000000000310435000000000002004b000000200300003900000000030060390000000001310019000000000001042d00000000030000190000000001310019000000000001042d00000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c7000104300002000000000002000000000301041a000000010430019000000001063002700000007f0660618f0000001f0060008c00000000050000390000000105002039000000000054004b0000297e0000c13d0000000005620436000000000004004b000029740000613d000200000006001d000100000005001d000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f0000000100200190000029840000613d0000000206000029000000000006004b0000297b0000613d000000000201043b000000000100001900000001050000290000000003150019000000000402041a000000000043043500000001022000390000002001100039000000000061004b0000296b0000413d0000000001150019000000000001042d00000ec8013001970000000000150435000000000006004b000000200100003900000000010060390000000001150019000000000001042d00000000010000190000000101100029000000000001042d00000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c7000104300000000001000019000036c7000104300001000000000002000000aa02000039000000000202041a000000000012004b000029ad0000a13d000100000001001d000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000029b50000613d000000000101043b000000000101041a00000eb1001001980000000101000029000029ad0000c13d000000000010043f000000b001000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000029b50000613d000000000101043b000000000101041a00000e2401100197000000000001042d000000400100043d00000eb202000041000000000021043500000db20010009c00000db201008041000000400110021000000e60011001c7000036c7000104300000000001000019000036c70001043000000e2402200197000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000029c50000613d000000000101043b000000000001042d0000000001000019000036c7000104300013000000000002001300000006001d000800000005001d000700000004001d000e00000003001d000d00000002001d000900000001001d000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002b470000613d000000400200043d000f00000002001d00000ecf0020009c00002b4f0000813d000000000101043b0000000f030000290000010002300039000000400020043f000000000201041a00000000042304360000000102100039000000000202041a000600000004001d00000000002404350000000202100039000000000202041a0000004004300039000500000004001d00000000002404350000000302100039000000000202041a000000600530003900000000002504350000000402100039000000000202041a000000800630003900000000002604350000000502100039000000000202041a000000a0073000390000000000270435000000c0083000390000000602100039000000000202041a00000e240220019700000000002804350000000701100039000000000201041a0000000103200190000000010a2002700000007f0aa0618f0000001f00a0008c00000000040000390000000104002039000000000043004b00002b5e0000c13d000000400900043d0000000004a90436000000000003004b00002a300000613d000400000004001d00120000000a001d000a00000009001d000b00000008001d000c00000007001d001000000006001d001100000005001d000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f000000010020019000002b470000613d000000120a00002900000000000a004b00002a360000613d000000000201043b0000000001000019000000110500002900000010060000290000000c070000290000000b080000290000000a09000029000000040b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b00002a280000413d00002a3c0000013d00000ec801200197000000000014043500000000000a004b0000002001000039000000000100603900002a3c0000013d0000000001000019000000110500002900000010060000290000000c070000290000000b080000290000000a090000290000003f0110003900000ec9021001970000000001920019000000000021004b0000000002000039000000010200403900000e260010009c00002b4f0000213d000000010020019000002b4f0000c13d000000400010043f0000000f01000029000000e001100039000000000091043500000000020704330000000001050433000c00000001001d0000000001080433000a0e240010019b0000000001060433000000000001004b000b00000002001d00002afa0000613d000300000001001d00000002010003670000001302100360000000000302043b0000000002000031000000130420006a0000001f0440008a00000e640540019700000e6406300197000000000756013f000000000056004b000000000500001900000e6405004041000000000043004b000000000400001900000e640400804100000e640070009c000000000504c019000000000005004b00002b470000c13d0000001303300029000000000431034f000000000404043b001100000004001d00000e260040009c00002b470000213d000000110400002900000005044002100000000002420049000000200630003900000e640320019700000e6404600197000000000534013f000000000034004b000000000300001900000e6403004041001000000006001d000000000026004b000000000200001900000e640200204100000e640050009c000000000302c019000000000003004b00002b470000c13d0000001302000029000400600020003d0000000402100360000000000202043b00000e240020009c00002b470000213d000000040400002900010040004000920000000103100360000000000303043b00020020004000920000000201100360000000000401043b0000006002200210000000400100043d00000074051000390000000000250435000000540210003900000000004204350000000d02000029000000600420021000000020021000390000000000420435000000340410003900000000003404350000006803000039000000000031043500000e8f0010009c00002b4f0000213d000000a003100039000000400030043f00000db20020009c00000db2020080410000004002200210000000000101043300000db20010009c00000db2010080410000006001100210000000000121019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c7000080100200003936c536bb0000040f000000010020019000002b470000613d000000000101043b000000110000006b00002ae40000613d0000000004000019000000000200001900002abb0000013d0000001304000029000000000101043b0000000104400039000000110040006c00002ae40000813d0000000103200210000000000002004b00002ac10000613d00000000022300d9000000020020008c00002b490000c13d001200000003001d001300000004001d000000050240021000000010022000290000000202200367000000000202043b000000000021004b00002ad70000a13d000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002b470000613d000000120200002900000001022001bf00002ab60000013d000000000010043f000000200020043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002b470000613d000000120200002900002ab60000013d000000030010006c00002afa0000c13d00000002020003670000000101200360000000000101043b000000000001004b00000000030100190000000c03006029000c00000003001d001300010000003d0000000201200360000000000101043b00000ecb0010009c00002afb0000613d0000000402200360000000000202043b00000e240020009c00002b470000213d000000000002004b000b00000001001d000a00000002c01d00002afb0000013d001300000000001d0000000901000029000000000010043f0000001301000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002b470000613d000000000101043b0000000d0200002900000e2402200197000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002b470000613d000000070200002900000e24022001970000000a05000029000000000025004b00000008040000290000000b0600002900002b640000c13d000000000046004b00002b640000c13d000000000101043b000000000101041a0000000e020000290000000001210019000000000002004b00002b550000613d000000000021004b00002b490000413d0000000c0010006c0000000e0200002900002b550000213d00000005010000290000000001010433000000000021001a00002b490000413d0000000e0210002900000006010000290000000001010433000000000012004b00002b740000213d0000000f010000290000000001010433001200000001001d00000e8d010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f000000010020019000002b800000613d000000000101043b0000001204000029000000000014004b00002b810000213d0000001301000029000000000001042d0000000001000019000036c70001043000000e2201000041000000000010043f0000001101000039000000040010043f00000e2301000041000036c70001043000000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c700010430000000400200043d0000002403200039000000000013043500000ea301000041000000000012043500000004012000390000000c03000029000000000031043500002b880000013d00000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c700010430000000400100043d00000064031000390000000000630435000000440310003900000000005304350000002403100039000000000043043500000ea40300004100000000003104350000000403100039000000000023043500000db20010009c00000db201008041000000400110021000000e2b011001c7000036c700010430000000400300043d0000002404300039000000000024043500000ea20200004100000000002304350000000402300039000000000012043500000db20030009c00000db203008041000000400130021000000e57011001c7000036c700010430000000000001042f000000400200043d0000002403200039000000000013043500000ea10100004100000000001204350000000401200039000000000041043500000db20020009c00000db202008041000000400120021000000e57011001c7000036c7000104300000000902000039000000000302041a000000000013004b00002b950000a13d000000000020043f00000e5d0110009a000000000101041a000000000001042d000000400200043d00000e620300004100000000003204350000000403200039000000000013043500000db20020009c00000db202008041000000400120021000000e23011001c7000036c700010430000000000301001900000000013200a9000000000003004b00002ba60000613d00000000033100d9000000000023004b00002ba70000c13d000000000001042d00000e2201000041000000000010043f0000001101000039000000040010043f00000e2301000041000036c700010430000000000010043f0000000801000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002bc70000613d000000000101043b000000000101041a000000010210019000000001011002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000032004b00002bc90000c13d000000000001004b0000000001000039000000010100c039000000000001042d0000000001000019000036c70001043000000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c700010430000000000010043f0000000501000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002bf00000613d000000400200043d00000ed00020009c00002bf20000813d000000000301043b0000004001200039000000400010043f000000000103041a00000e240110019800000000041204360000000102300039000000000202041a000000000024043500002bea0000613d0000ffff0220018f000000000001042d0000000401000039000000000101041a000000a00210027000000e24011001970000ffff0220018f000000000001042d0000000001000019000036c70001043000000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c7000104300000000062020434000000000002004b00002c030000613d000000000700001900000000081700190000000009760019000000000909043300000000009804350000002007700039000000000027004b00002bfc0000413d000000000112001900000ec9064001980000001f0740018f00000000000104350000000002610019000000020330036700002c100000613d000000000803034f0000000009010019000000008a08043c0000000009a90436000000000029004b00002c0c0000c13d000000000007004b00002c1d0000613d000000000363034f0000000306700210000000000702043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f000000000032043500000000014100190000000001510436000000000001042d0010000000000002000500000003001d000e00000002001d000000000010043f0000000801000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002d5e0000613d000000000101043b000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b00002d660000c13d000000400800043d0000000005680436000000000003004b00002c590000613d000d00000006001d000000000010043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c70000801002000039001000000008001d000f00000005001d36c536bb0000040f0000000f050000290000001008000029000000010020019000002d5e0000613d0000000d06000029000000000006004b00002c5f0000613d000000000201043b00000000010000190000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000061004b00002c510000413d00002c600000013d00000ec8012001970000000000150435000000000006004b0000002001000039000000000100603900002c600000013d00000000010000190000003f0110003900000ec9021001970000000001820019000000000021004b0000000002000039000000010200403900000e260010009c00002d600000213d000000010020019000002d600000c13d000000400010043f0000000002080433000000000002004b00002d6c0000613d00000e630020009c00002d5e0000213d000000400020008c00002d5e0000413d000000000305043300000e260030009c00002d5e0000213d000000000425001900000000025300190000001f03200039000000000043004b000000000500001900000e640500804100000e640330019700000e6406400197000000000763013f000000000063004b000000000300001900000e640300404100000e640070009c000000000305c019000000000003004b00002d5e0000c13d000000003202043400000e260020009c00002d600000213d0000001f0520003900000ec9055001970000003f0550003900000ec905500197000000000515001900000e260050009c00002d600000213d000000400050043f00000000092104360000000005320019000000000045004b00002d5e0000213d000000000002004b00002c9e0000613d000000000400001900000000059400190000000006340019000000000606043300000000006504350000002004400039000000000024004b00002c970000413d0000000002920019000000000002043500000040028000390000000002020433000300000002001d0000000006010433000000400400043d000b00200040003d0000000b01600029000000400010043f00000005020000290000001f0120018f000d00000001001d00000003051002100000010003500089000100000005001d00070ecb00500287000200000003001d00060ecb003002270000005f01200039000a0ec90010019b000f0ec90020019b000900200020003d000400000004001d000c00000006001d00000000006404350000000008000019000800000009001d000000400600043d00000020076000390000000c0080006c00002d020000813d0000000f017000290000000e0200002900000002022003670000000f0000006b00002cc90000613d000000000302034f0000000004070019000000003503043c0000000004540436000000000014004b00002cc50000c13d0000000d0000006b00002cd20000613d0000000003010433000000070330017f0000000f02200360000000000202043b000000060220017f000000000232019f000000000021043500000009020000290000000001260019001000000008001d000000000081043500000000002604350000000a01600029000000000061004b0000000002000039000000010200403900000e260010009c00002d600000213d000000010020019000002d600000c13d000000400010043f00000db20070009c00000db2070080410000004001700210000000000206043300000db20020009c00000db2020080410000006002200210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c7000080100200003936c536bb0000040f0000000100200190000000080900002900002d5e0000613d000000100800002900000000029800190000000002020433000000000101043b000000000112013f0000000b028000290000000000120435000000200880003a00002cba0000c13d00000e2201000041000000000010043f0000001101000039000000040010043f00000e2301000041000036c700010430000c00000007001d001000000006001d00000e65010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f000000010020019000002d730000613d000000000801043b00000004010000290000000001010433000000000001004b0000000c070000290000000b0500002900002d1e0000613d000000000200001900000000037200190000000004520019000000000404043300000000004304350000002002200039000000000012004b00002d170000413d000000000171001900000000000104350000000f021000290000000e0300002900000002033003670000000f0000006b00002d2b0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00002d270000c13d0000000d0000006b00002d360000613d0000000f03300360000000000402043300000001044001f00000000104400250000000000303043b000000020330025000000002033001f0000000000343019f00000000003204350000000501100029000f00000008001d00000000008104350000001003000029000000000131004900000000001304350000003f0110003900000ec9021001970000000001320019000000000021004b0000000002000039000000010200403900000e260010009c00002d600000213d000000010020019000002d600000c13d000000400010043f00000db20070009c00000db2070080410000004001700210000000000203043300000db20020009c00000db2020080410000006002200210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c7000080100200003936c536bb0000040f000000010020019000002d5e0000613d000000000101043b000000030010006c00002d740000c13d0000000401000029000000000001042d0000000001000019000036c70001043000000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c70001043000000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c70001043000000e6d02000041000000000021043500000db20010009c00000db201008041000000400110021000000e60011001c7000036c700010430000000000001042f000000400100043d001000000001001d0000002001100039000d00000001001d00000004020000290000000e0300002900000005040000290000000f0500002936c52bf80000040f00000010030000290000000002310049000000200120008a0000000000130435000000000103001936c528580000040f000000100100002900000000020104330000000d0100002936c536a10000040f00000e6702000041000000400300043d00000000002304350000000402300039000000030400002900000000004204350000002402300039000000000012043500000db20030009c00000db203008041000000400130021000000e57011001c7000036c700010430000000000001004b00002d970000613d000000000001042d000000400100043d000000440210003900000e8703000041000000000032043500000024021000390000000f03000039000000000032043500000db502000041000000000021043500000004021000390000002003000039000000000032043500000db20010009c00000db201008041000000400110021000000e84011001c7000036c7000104300007000000000002000400000004001d000500000002001d000200000001001d000300000003001d36c52f900000040f00000db301000041000000000010044300000005010000290000000400100443000000000100041400000db20010009c00000db201008041000000c00110021000000db4011001c7000080020200003936c536bb0000040f000000010020019000002e570000613d000000000101043b000000000001004b00002e540000613d0000000001000415000100000001001d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002e550000613d000000000101043b000000000101041a000000ff00100190000000000300041100002dd70000613d000000140100008a00000000011000310000000201100367000000000101043b0000006003100270000000400b00043d0000006401b00039000000800700003900000000007104350000004401b0003900000003020000290000000000210435000000020100002900000e24011001970000002402b00039000000000012043500000e9b0100004100000000001b043500000e24013001970000000402b0003900000000001204350000008403b00039000000040100002900000000210104340000000000130435000000a403b00039000000000001004b00002df60000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00002def0000413d000000000231001900000000000204350000000003000414000000050200002900000e2402200197000000040020008c00002e050000c13d0000000005000415000000070550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900002e3c0000013d000400000007001d0000001f0110003900000ec901100197000000a40110003900000db20010009c00000db201008041000000600110021000000db200b0009c00000db20400004100000000040b40190000004004400210000000000141019f00000db20030009c00000db203008041000000c003300210000000000113019f00050000000b001d36c536b60000040f000000050b0000290000000003010019000000600330027000000db203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002e280000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e240000c13d000000000006004b00002e350000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000060550008a0000000505500210000000010020019000002e580000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000e260010009c00002e8e0000213d000000010020019000002e8e0000c13d000000400010043f000000200030008c00002e550000413d00000000010b043300000e9c0010019800002e550000c13d0000000502500270000000000201001f00000000020004150000000102200069000000000200000200000e9d0110019700000e9b0010009c00002e5e0000c13d000000000001042d0000000001000019000036c700010430000000000001042f000000000003004b00002e660000c13d00000060020000390000000001020433000000000001004b00002e940000c13d000000400100043d00000e9e02000041000000000021043500000db20010009c00000db201008041000000400110021000000e60011001c7000036c7000104300000001f0230003900000e80022001970000003f0220003900000e8104200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000e260040009c00002e8e0000213d000000010050019000002e8e0000c13d000000400040043f0000001f0430018f000000000632043600000e8205300198000400000006001d000000000356001900002e800000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b00002e7c0000c13d000000000004004b00002e5b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002e5b0000013d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c700010430000000040200002900000db20020009c00000db202008041000000400220021000000db20010009c00000db2010080410000006001100210000000000121019f000036c70001043000030000000000020000001001000039000000000301041a0000001101000039000000000201041a000000000032001a00002ed50000413d0000000001320019000100000003001d000000000031004b00002ecd0000a13d000000010110008a000300000001001d000000000010043f0000001201000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000010020019000002eca0000613d000000000101043b000000000101041a000200000001001d00000e8d010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f000000010020019000002ecc0000613d000000000101043b000000020010006c0000000103000029000000030100002900002ea60000413d000000000001042d0000000001000019000036c700010430000000000001042f000000400100043d00000e8c02000041000000000021043500000db20010009c00000db201008041000000400110021000000e60011001c7000036c70001043000000e2202000041000000000020043f000000040010043f00000e2301000041000036c7000104300000000201000039000000000201041a00000e2401200197000000a0022002700000ffff0220018f000000000001042d000c000000000002000900000002001d0000000016010434000500000001001d000000400500043d000400200050003d0000000401600029000000400010043f0000001f0130018f000800000001001d0000000301100210000001000210008900030ecb0010028700020ecb00200227000100000005001d000a00000006001d00000000006504350000005f0130003900070ec90010019b000b0ec90030019b000600200030003d00000000080000190000000a0080006c00002f3d0000813d00000009010000290000000204100367000000400100043d00000020021000390000000b032000290000000b0000006b00002f050000613d000000000504034f0000000006020019000000005705043c0000000006760436000000000036004b00002f010000c13d000000080000006b00002f0e0000613d0000000005030433000000030550017f0000000b04400360000000000404043b000000020440017f000000000454019f000000000043043500000006040000290000000003140019000c00000008001d000000000083043500000000004104350000000703100029000000000013004b0000000004000039000000010400403900000e260030009c00002f3f0000213d000000010040019000002f3f0000c13d000000400030043f00000db20020009c00000db2020080410000004002200210000000000101043300000db20010009c00000db2010080410000006001100210000000000121019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c7000080100200003936c536bb0000040f000000010020019000002f450000613d0000000c0800002900000005028000290000000002020433000000000101043b000000000112013f00000004028000290000000000120435000000200880003a00002ef60000c13d00000e2201000041000000000010043f0000001101000039000000040010043f00000e2301000041000036c7000104300000000101000029000000000001042d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c7000104300000000001000019000036c70001043000000e24061001970000000701000039000000000201041a00000e3803200197000000000363019f000000000031041b000000000100041400000e240520019700000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000030300003900000e390400004136c536b60000040f000000010020019000002f5a0000613d000000000001042d0000000001000019000036c700010430000000400400043d000027110020008c00002f790000813d00000e240510019800002f850000613d0000000203000039000000000103041a00000e5101100197000000a00620021000000e5206600197000000000116019f000000000151019f000000000013041b000000000024043500000db20040009c00000db2040080410000004001400210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d0200003900000e530400004136c536b60000040f000000010020019000002f8e0000613d000000000001042d0000002401400039000000000021043500000e5801000041000000000014043500000004014000390000271002000039000000000021043500000db20040009c00000db204008041000000400140021000000e57011001c7000036c70001043000000e5a0100004100000000001404350000000401400039000000000001043500000db20040009c00000db204008041000000400140021000000e23011001c7000036c7000104300000000001000019000036c7000104300006000000000002000500000003001d000300000002001d000400000001001d000000400100043d00000ed10010009c000031770000813d0000006002100039000000400020043f00000040021000390000000000020435000000200210003900000000000204350000000000010435000000aa01000039000000000101041a000000050010006c0000317d0000a13d0000000501000029000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000400200043d00000e7d0020009c000031770000213d000000000101043b0000006003200039000000400030043f000000000101041a000000400320003900000eb1001001980000000004000039000000010400c039000000000043043500000e24031001970000000002320436000000a00110027000000e260110019700000000001204350000317d0000c13d000000000003004b00002fe50000c13d0000000501000029000000010110008a000600000001001d000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000400200043d00000e7d0020009c000031770000213d000000000101043b0000006003200039000000400030043f000000000101041a00000eb1001001980000000003000039000000010300c0390000004004200039000000000034043500000e24031001980000000002320436000000a00110027000000e26011001970000000000120435000000060100002900002fc40000613d000200000002001d000000040100002900000e2401100197000600000003001d000000000013004b000031800000c13d0000000001000411000400000001001d000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a000000ff001001900000000001000411000030030000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000e2401100197000000060010006c0000307c0000613d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a000000ff0010019000000000010004110000301d0000613d000000140100008a00000000011000310000000201100367000000000101043b0000006001100270000100000001001d0000000601000029000000000010043f000000b101000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000010200002900000e2402200197000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a000000ff001001900000307c0000c13d000000aa01000039000000000101041a0000000502000029000000000021004b000031870000a13d000000000020043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a00000eb1001001980000000501000029000031870000c13d000000000010043f000000b001000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a000100000001001d0000000001000411000000000010043f0000004601000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a000000ff00100190000030780000613d000000140100008a00000000011000310000000201100367000000000101043b00040060001002780000000102000029000000040120014f00000e24001001980000318a0000c13d000000030100002900040e240010019c000031830000613d000000dc01000039000000000101041a000300000001001d000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000000043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a000000ff00100190000030da0000c13d0000000301000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b0000000602000029000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a000000ff00100190000030da0000c13d0000000301000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b0000000402000029000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000101041a000000ff00100190000031920000613d0000000501000029000000000010043f000000b001000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000201041a00000e3802200197000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000eb40400004100000006050000290000000006000019000000050700002936c536b60000040f0000000100200190000031750000613d0000000601000029000000000010043f000000af01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000201041a00000e9503200197000000010220008a00000e2602200197000000000232019f000000000021041b0000000401000029000000000010043f000000af01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000201041a00000e9503200197000000010220003900000e2602200197000000000232019f000000000021041b0000000501000029000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000301043b000000000103041a00000e380110019700000004011001af000300000003001d000000000013041b00000e8d010000410000000000100443000000000100041400000db20010009c00000db201008041000000c00110021000000e66011001c70000800b0200003936c536bb0000040f0000000100200190000031860000613d0000000303000029000000000203041a00000e9902200197000000000101043b000000a00110021000000e9801100197000000000112019f000000000013041b00000005010000290000000101100039000300000001001d000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031750000613d000000000101043b000000000201041a00000e24002001980000000605000029000031670000c13d000000aa03000039000000000303041a000000030030006b000031670000613d00000e9d0220019700000002030000290000000003030433000000a00330021000000e9803300197000000000232019f000000000252019f000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000040300003900000e9a040000410000000406000029000000050700002936c536b60000040f0000000100200190000031750000613d000000000001042d0000000001000019000036c70001043000000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c700010430000000400100043d00000eba020000410000318c0000013d000000400100043d00000ed2020000410000318c0000013d000000400100043d00000ed3020000410000318c0000013d000000000001042f000000400100043d00000eb2020000410000318c0000013d000000400100043d00000eb302000041000000000021043500000db20010009c00000db201008041000000400110021000000e60011001c7000036c700010430000000400200043d000600000002001d00000db5010000410000000000120435000000040120003936c535890000040f0000000602000029000000000121004900000db20010009c00000db201008041000000600110021000000db20020009c00000db2020080410000004002200210000000000121019f000036c7000104300002000000000002000200000002001d000100000001001d000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031c50000613d000000000101043b000000020200002900000e2402200197000200000002001d000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000031c50000613d000000000101043b000000000101041a000000ff00100190000031c70000613d000000000001042d0000000001000019000036c700010430000000400100043d00000024021000390000000103000029000000000032043500000e6e02000041000000000021043500000004021000390000000203000029000000000032043500000db20010009c00000db201008041000000400110021000000e57011001c7000036c7000104300003000000000002000200000002001d000300000001001d000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b000000020200002900000e2402200197000200000002001d000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b000000000101041a000000ff00100190000032800000613d0000000301000029000000000010043f0000000d01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b0000000202000029000000000020043f000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b000000000201041a00000ec802200197000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d020000390000000403000039000000000700041100000ed4040000410000000305000029000000020600002936c536b60000040f00000001002001900000327e0000613d0000000301000029000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b0000000202000029000000000020043f0000000201100039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b000000000101041a000100000001001d0000000301000029000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b0000000102000029000000000020043f0000000101100039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b000000000201041a00000e3802200197000000000021041b0000000301000029000000000010043f0000000f01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b0000000202000029000000000020043f0000000201100039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f00000001002001900000327e0000613d000000000101043b000000000001041b000000000001042d0000000001000019000036c700010430000000400100043d00000024021000390000000303000029000000000032043500000e6e02000041000000000021043500000004021000390000000203000029000000000032043500000db20010009c00000db201008041000000400110021000000e57011001c7000036c700010430000000400300043d000027110020008c000032ab0000813d0000000404000039000000000504041a00000e5105500197000000a00620021000000e5206600197000000000656019f00000e2405100197000000000156019f000000000014041b000000000023043500000db20030009c00000db2030080410000004001300210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000dba011001c70000800d02000039000000020300003900000e540400004136c536b60000040f0000000100200190000032b70000613d000000000001042d0000002401300039000000000021043500000e5601000041000000000013043500000004013000390000271002000039000000000021043500000db20030009c00000db203008041000000400130021000000e57011001c7000036c7000104300000000001000019000036c7000104300001000000000002000000400300043d00000ed10030009c000033100000813d0000006002300039000000400020043f00000040023000390000000000020435000000200230003900000000000204350000000000030435000000aa02000039000000000202041a000000000012004b000033180000a13d000100000001001d000000000010043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000000301034f0000000100200190000033160000613d000000400100043d00000e7d0010009c0000000105000029000033100000213d000000000203043b0000006003100039000000400030043f000000000202041a000000400310003900000eb1002001980000000004000039000000010400c0390000000000430435000000a00320027000000e26033001970000002004100039000000000034043500000e24022001970000000000210435000033180000c13d000000000002004b0000330f0000c13d000000010550008a000100000005001d000000000050043f000000ae01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f000000000301034f0000000100200190000033160000613d000000400100043d00000e7d0010009c0000000105000029000033100000213d000000000203043b0000006003100039000000400030043f000000000202041a00000eb1002001980000000003000039000000010300c03900000040041000390000000000340435000000a00320027000000e26033001970000002004100039000000000034043500000e24022001980000000000210435000032ec0000613d000000000001042d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c7000104300000000001000019000036c700010430000000400100043d00000eba02000041000000000021043500000db20010009c00000db201008041000000400110021000000e60011001c7000036c70001043000000e2405100198000033330000613d0000000601000039000000000201041a00000e3802200197000000000252019f000000000021041b000000000100041400000db20010009c00000db201008041000000c00110021000000e36011001c70000800d02000039000000020300003900000e550400004136c536b60000040f00000001002001900000333d0000613d000000000001042d000000400100043d00000e590200004100000000002104350000000402100039000000000002043500000db20010009c00000db201008041000000400110021000000e23011001c7000036c7000104300000000001000019000036c7000104300000000104000039000000000304041a000000010530019000000001093002700000007f0990618f0000001f0090008c00000000020000390000000102002039000000000025004b000033f30000c13d000000400600043d0000000002960436000000000005004b0000335a0000613d000000000040043f000000000009004b000033600000613d00000e330500004100000000030000190000000007230019000000000805041a000000000087043500000001055000390000002003300039000000000093004b000033520000413d000033610000013d00000ec8033001970000000000320435000000000009004b00000020030000390000000003006039000033610000013d00000000030000190000003f03300039000000200500008a000000000753016f0000000003670019000000000073004b0000000007000039000000010700403900000e260030009c000033ed0000213d0000000100700190000033ed0000c13d000000400030043f000000007801043400000e260080009c000033ed0000213d000000200090008c000033810000413d000000000040043f0000001f0a800039000000050aa0027000000e340aa0009a000000200080008c00000e330a0040410000001f09900039000000050990027000000e340990009a00000000009a004b000033810000813d00000000000a041b000000010aa0003900000000009a004b0000337d0000413d0000001f0080008c0000339f0000a13d000000000040043f000000000b580170000033a90000613d00000e3309000041000000200a000039000000010cb0008a000000050cc0027000000e350cc0009a000000000d1a0019000000000d0d04330000000000d9041b000000200aa0003900000001099000390000000000c9004b0000338b0000c13d00000000008b004b0000339c0000813d000000030b800210000000f80bb0018f00000ecb0bb0027f00000ecb0bb00167000000000a1a0019000000000a0a0433000000000aba016f0000000000a9041b000000010880021000000001088001bf000033af0000013d000000000008004b000033ae0000613d000000030980021000000ecb0990027f00000ecb09900167000000000a07043300000000099a016f0000000108800210000000000889019f000033af0000013d000000200a00003900000e330900004100000000008b004b000033940000413d0000339c0000013d0000000008000019000000000084041b000000400400003900000000044304360000000006060433000000400830003900000000006804350000006008300039000000000006004b000033c00000613d0000000009000019000000000a890019000000000b920019000000000b0b04330000000000ba04350000002009900039000000000069004b000033b90000413d000000000286001900000000000204350000001f02600039000000000252016f00000000068200190000000002360049000000000024043500000000020104330000000001260436000000000002004b000033d30000613d000000000400001900000000061400190000000008470019000000000808043300000000008604350000002004400039000000000024004b000033cc0000413d000000000412001900000000000404350000001f02200039000000000252016f0000000001310049000000000121001900000db20010009c00000db201008041000000600110021000000db20030009c00000db2030080410000004002300210000000000121019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c70000800d02000039000000010300003900000e370400004136c536b60000040f0000000100200190000033f90000613d000000000001042d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c70001043000000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c7000104300000000001000019000036c7000104300005000000000002000500000002001d000000000010043f0000000801000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000034790000613d000000000601043b0000000501000029000000003401043400000ece0040009c0000347b0000813d000000000106041a000000010210019000000001051002700000007f0550618f0000001f0050008c00000000010000390000000101002039000000000012004b000034810000c13d000000200050008c000300000006001d000400000004001d0000343a0000413d000100000005001d000200000003001d000000000060043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f0000000100200190000034790000613d00000004040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000030600002900000002030000290000343a0000813d000000000002041b0000000102200039000000000012004b000034360000413d0000001f0040008c000034660000a13d000000000060043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f0000000100200190000034790000613d000000040800002900000ec902800198000000000101043b0000000507000029000034740000613d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030600002900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000034510000c13d000000000082004b000034620000813d0000000302800210000000f80220018f00000ecb0220027f00000ecb0220016700000000037300190000000003030433000000000223016f000000000021041b000000010180021000000001011001bf000000000016041b000000000001042d000000000004004b000034710000613d000000030140021000000ecb0110027f00000ecb011001670000000002030433000000000112016f0000000102400210000000000121019f000000000016041b000000000001042d0000000001000019000000000016041b000000000001042d00000020030000390000000306000029000000000082004b0000345a0000413d000034620000013d0000000001000019000036c70001043000000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c70001043000000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c7000104300006000000000002000500000002001d000600000001001d000000000010043f0000000b01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000035700000613d000000000101043b000000000101041a000000ff00100190000035780000c13d0000000a01000039000000200010043f000000000100041400000db20010009c00000db201008041000000c00110021000000e2c011001c7000080100200003936c536bb0000040f0000000100200190000035700000613d000000000701043b0000000501000029000000003401043400000ece0040009c0000000608000029000035720000813d000000000107041a000000010210019000000001051002700000007f0550618f0000001f0050008c00000000010000390000000101002039000000000012004b000035830000c13d000000200050008c000300000007001d000400000004001d000034d80000413d000100000005001d000200000003001d000000000070043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f0000000100200190000035700000613d00000004040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000060800002900000003070000290000000203000029000034d80000813d000000000002041b0000000102200039000000000012004b000034d40000413d0000001f0040008c000000200a00008a000035060000a13d000000000070043f000000000100041400000db20010009c00000db201008041000000c00110021000000dba011001c7000080100200003936c536bb0000040f0000000100200190000035700000613d0000000409000029000000200a00008a0000000002a90170000000000101043b000035630000613d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000006080000290000000506000029000000030700002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000034f20000c13d000000000092004b000035030000813d0000000302900210000000f80220018f00000ecb0220027f00000ecb0220016700000000036300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf000035110000013d000000000004004b0000350a0000613d00000000010304330000350b0000013d0000000001000019000000030240021000000ecb0220027f00000ecb02200167000000000121016f0000000102400210000000000121019f000000000017041b0000000903000039000000000203041a000000400400043d0000000001240436000000000030043f000000000002004b0000000003010019000035230000613d00000e6a0500004100000000030100190000000006000019000000000705041a000000000373043600000001055000390000000106600039000000000026004b0000351d0000413d00000000034300490000001f033000390000000005a3016f0000000003450019000000000053004b0000000005000039000000010500403900000e260030009c000035720000213d0000000100500190000035720000c13d000000400030043f000000000002004b0000353d0000613d00000000040404330000000005000019000000000054004b0000356a0000a13d000000050650021000000000061600190000000006060433000000000086004b000035460000613d0000000105500039000000000025004b000035330000413d00000e620100004100000000001304350000000401300039000000000081043500000db20030009c00000db203008041000000400130021000000e23011001c7000036c700010430000000000005004b0000354f0000613d000000010250008a000000000024004b0000356a0000a13d000000050220021000000000011200190000000001010433000035500000013d000000000100001900000020023000390000000000820435000000000013043500000db20030009c00000db2030080410000004001300210000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e2c011001c70000800d02000039000000010300003900000e6b0400004136c536b60000040f0000000100200190000035700000613d000000000001042d0000002003000039000000060800002900000005060000290000000307000029000000000092004b000034fb0000413d000035030000013d00000e2201000041000000000010043f0000003201000039000000040010043f00000e2301000041000036c7000104300000000001000019000036c70001043000000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c700010430000000400100043d00000e6902000041000000000021043500000004021000390000000603000029000000000032043500000db20010009c00000db201008041000000400110021000000e23011001c7000036c70001043000000e2201000041000000000010043f0000002201000039000000040010043f00000e2301000041000036c700010430000000400210003900000ed503000041000000000032043500000020021000390000000e030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0004000000000002000000400400043d00000ed00040009c000036570000813d00000e24051001970000004001400039000000400010043f000000200140003900000ed60300004100000000003104350000002001000039000000000014043500000000230204340000000001000414000000040050008c000035ce0000c13d00000001010000320000360a0000613d00000e260010009c000036570000213d0000001f0310003900000ec9033001970000003f0330003900000ec903300197000000400a00043d00000000033a00190000000000a3004b0000000004000039000000010400403900000e260030009c000036570000213d0000000100400190000036570000c13d000000400030043f00000000051a043600000ec9021001980000001f0310018f00000000012500190000000304000367000035c00000613d000000000604034f000000006706043c0000000005750436000000000015004b000035bc0000c13d000000000003004b0000360b0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000360b0000013d000200000004001d00000db20030009c00000db203008041000000600330021000000db20020009c00000db2020080410000004002200210000000000223019f00000db20010009c00000db201008041000000c001100210000000000112019f000100000005001d000000000205001936c536b60000040f00030000000103550000000003010019000000600330027000010db20030019d00000db204300198000036220000613d0000001f0340003900000e80033001970000003f0330003900000e8103300197000000400a00043d00000000033a00190000000000a3004b0000000005000039000000010500403900000e260030009c000036570000213d0000000100500190000036570000c13d000000400030043f0000001f0540018f00000000034a043600000e82064001980000000004630019000035fc0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b000035f80000c13d000000000005004b000036240000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000036240000013d000000600a0000390000000002000415000000040220008a000000050220021000000000010a0433000000000001004b0000362c0000c13d00020000000a001d00000db301000041000000000010044300000004010000390000000400100443000000000100041400000db20010009c00000db201008041000000c00110021000000db4011001c7000080020200003936c536bb0000040f0000000100200190000036860000613d0000000002000415000000040220008a0000363f0000013d000000600a000039000000800300003900000000010a04330000000100200190000036730000613d0000000002000415000000030220008a0000000502200210000000000001004b0000362f0000613d000000050220027000000000020a001f000036490000013d00020000000a001d00000db301000041000000000010044300000001010000290000000400100443000000000100041400000db20010009c00000db201008041000000c00110021000000db4011001c7000080020200003936c536bb0000040f0000000100200190000036860000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000020a000029000036870000613d00000000010a0433000000050220027000000000020a001f000000000001004b000036560000613d00000e630010009c0000365d0000213d000000200010008c0000365d0000413d0000002001a000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000365d0000c13d000000000001004b0000365f0000613d000000000001042d00000e2201000041000000000010043f0000004101000039000000040010043f00000e2301000041000036c7000104300000000001000019000036c700010430000000400100043d000000640210003900000ed7030000410000000000320435000000440210003900000ed803000041000000000032043500000024021000390000002a03000039000000000032043500000db502000041000000000021043500000004021000390000002003000039000000000032043500000db20010009c00000db201008041000000400110021000000e2b011001c7000036c700010430000000000001004b000036980000c13d000000400200043d000100000002001d00000db50100004100000000001204350000000401200039000000020200002936c528260000040f0000000102000029000000000121004900000db20010009c00000db201008041000000600110021000000db20020009c00000db2020080410000004002200210000000000121019f000036c700010430000000000001042f000000400100043d000000440210003900000e8303000041000000000032043500000024021000390000001d03000039000000000032043500000db502000041000000000021043500000004021000390000002003000039000000000032043500000db20010009c00000db201008041000000400110021000000e84011001c7000036c70001043000000db20030009c00000db203008041000000400230021000000db20010009c00000db2010080410000006001100210000000000121019f000036c700010430000000000001042f00000db20010009c00000db201008041000000400110021000000db20020009c00000db2020080410000006002200210000000000112019f000000000200041400000db20020009c00000db202008041000000c002200210000000000112019f00000e36011001c7000080100200003936c536bb0000040f0000000100200190000036b40000613d000000000101043b000000000001042d0000000001000019000036c700010430000036b9002104210000000102000039000000000001042d0000000002000019000000000001042d000036be002104230000000102000039000000000001042d0000000002000019000000000001042d000036c3002104250000000102000039000000000001042d0000000002000019000000000001042d000036c500000432000036c60001042e000036c70001043000000000000000000000000000000000000000000000000000000000ffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a65640000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024980000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000009010d07b00000000000000000000000000000000000000000000000000000000b6f10c7800000000000000000000000000000000000000000000000000000000d547741e00000000000000000000000000000000000000000000000000000000e57553d900000000000000000000000000000000000000000000000000000000e8a3d48400000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f28083c300000000000000000000000000000000000000000000000000000000e57553da00000000000000000000000000000000000000000000000000000000e715032200000000000000000000000000000000000000000000000000000000de903ddc00000000000000000000000000000000000000000000000000000000de903ddd00000000000000000000000000000000000000000000000000000000e159163400000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000d637ed5900000000000000000000000000000000000000000000000000000000ca15c87200000000000000000000000000000000000000000000000000000000ce80564100000000000000000000000000000000000000000000000000000000ce80564200000000000000000000000000000000000000000000000000000000d37c353b00000000000000000000000000000000000000000000000000000000d45573f600000000000000000000000000000000000000000000000000000000ca15c87300000000000000000000000000000000000000000000000000000000cb2ef6f700000000000000000000000000000000000000000000000000000000c68907dd00000000000000000000000000000000000000000000000000000000c68907de00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000b6f10c7900000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000a0a8e45f00000000000000000000000000000000000000000000000000000000a32fa5b200000000000000000000000000000000000000000000000000000000acd083f700000000000000000000000000000000000000000000000000000000acd083f800000000000000000000000000000000000000000000000000000000ad1eefc500000000000000000000000000000000000000000000000000000000b24f2d3900000000000000000000000000000000000000000000000000000000a32fa5b300000000000000000000000000000000000000000000000000000000ac9650d800000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a2309ff800000000000000000000000000000000000000000000000000000000a0a8e46000000000000000000000000000000000000000000000000000000000a217fddf000000000000000000000000000000000000000000000000000000009bcf7a1400000000000000000000000000000000000000000000000000000000a05112fb00000000000000000000000000000000000000000000000000000000a05112fc00000000000000000000000000000000000000000000000000000000a07ced9e000000000000000000000000000000000000000000000000000000009bcf7a15000000000000000000000000000000000000000000000000000000009fc4d68f00000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000938e3d7b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009010d07c0000000000000000000000000000000000000000000000000000000091d14854000000000000000000000000000000000000000000000000000000003f3e4c100000000000000000000000000000000000000000000000000000000063b45e2c0000000000000000000000000000000000000000000000000000000074bc7db6000000000000000000000000000000000000000000000000000000008304053100000000000000000000000000000000000000000000000000000000830405320000000000000000000000000000000000000000000000000000000084bb1e42000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000074bc7db7000000000000000000000000000000000000000000000000000000007e54523c000000000000000000000000000000000000000000000000000000006f8934f3000000000000000000000000000000000000000000000000000000006f8934f40000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000063b45e2d000000000000000000000000000000000000000000000000000000006f4f2837000000000000000000000000000000000000000000000000000000004cc157de00000000000000000000000000000000000000000000000000000000600dd5e900000000000000000000000000000000000000000000000000000000600dd5ea000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000004cc157df00000000000000000000000000000000000000000000000000000000572b6c050000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c6800000000000000000000000000000000000000000000000000000000492e224b000000000000000000000000000000000000000000000000000000003f3e4c110000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000023a2902a000000000000000000000000000000000000000000000000000000002a552059000000000000000000000000000000000000000000000000000000002f2ff15c000000000000000000000000000000000000000000000000000000002f2ff15d0000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000003b1475a7000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002ab4d052000000000000000000000000000000000000000000000000000000002419f51a000000000000000000000000000000000000000000000000000000002419f51b00000000000000000000000000000000000000000000000000000000248a9ca30000000000000000000000000000000000000000000000000000000023a2902b0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001e7ac48800000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000013af403500000000000000000000000000000000000000000000000000000000079fe40d00000000000000000000000000000000000000000000000000000000079fe40e00000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000200000008000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000000000000000000000400000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe000000000000000000000000000000000ffffffffffffffffffffffffffffffff00000000000000000000000000000000000000840000000000000000000000000200000000000000000000000000000000000040000000000000000000000000f5f5e435226095aac6c89057dd891fbc51c34bb66255507ec9a8d134e060f2a00a0a1bcadd9f6a5539376fa82276e043ae3cb4499daaaf8136572ecb1f9f0d60f5f5e435226095aac6c89057dd891fbc51c34bb66255507ec9a8d134e060f29ffbbf02894b197a2e8fe64f1107c9315666b9affd746622204b741f905bdbf55a0440fd76b4e685d17019b0eef836cea9994650028b99dddfb48be06fa4240aa6fbbf02894b197a2e8fe64f1107c9315666b9affd746622204b741f905bdbf559b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30a4ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f3090200000000000000000000000000000000000000000000000000000000000000c9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a16ffffffffffffffffffffffff00000000000000000000000000000000000000008292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7681955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0df4803e074bd026baaf6ed2e288c9515f68c72fb7216eebdd7cae1718a53ec375f4803e074bd026baaf6ed2e288c9515f68c72fb7216eebdd7cae1718a53ec376f4803e074bd026baaf6ed2e288c9515f68c72fb7216eebdd7cae1718a53ec377ef76e30f82cef9253094d0d65d59e3c3265bbc72eb79ef44631eea2b65477abc9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63ac2ae920192ffec1f2616e363ccfeffb7844a5d9224b2df5eacfefada8376073ac2ae920192ffec1f2616e363ccfeffb7844a5d9224b2df5eacfefada8376083ac2ae920192ffec1f2616e363ccfeffb7844a5d9224b2df5eacfefada8376093c1d9018211352470a0b0ee84cb84e91f63a65e5dd0d5ae48def7a13e5fec56b8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6cc0f812f8ddca516ded9c50a14f608811abd0ca4c286c7fd4f7b929b9b37615ffc0f812f8ddca516ded9c50a14f608811abd0ca4c286c7fd4f7b929b9b3761600c0f812f8ddca516ded9c50a14f608811abd0ca4c286c7fd4f7b929b9b3761601a61ff9969cd29919d795b3964cbadde7732aadaf7785d6676929103004722555aa1fe84c85911a7d358294720714cd9e59026622476a58d2c1e9f4660beb892d6bd6b5318a46e5fff572d5e4258a20774aab40cc35ac7680654b9081fcc82f8053dc756ca187b2955f2817bac54c9af3f4b0064167314f37c4c32a076d2513de53dc756ca187b2955f2817bac54c9af3f4b0064167314f37c4c32a076d2513df53dc756ca187b2955f2817bac54c9af3f4b0064167314f37c4c32a076d2513e0218ec9ec3c5ff64b2699c28848dc9016111be41c78a08e2e81d640a75eca9339bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffff0000000000000000000000000000000000000000e2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f1830490d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b3335249856800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000038343fd2000000000000000000000000000000000000000000000000000000003df2b0dc00000000000000000000000000000000000000000000000000000000d315d8ec000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206991eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a38512a0365091ef1a40953c670dce28177e37520648a6fdc91506bffac0ab045570d8fd36a9b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000f409ec73000000000000000000000000000000000000000000000000000000000f2624ee000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000200000000000000000000000000000004000000000000000000000000cd915d3c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfba0f3592000000000000000000000000000000000000000000000000000000006e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c6df1d8db2a036436ffe0b2d1833f2c5f1e624818dfce2578c0faa4b83ef9998d5d0580b3000000000000000000000000000000000000000000000000000000000878b1060000000000000000000000000000000000000000000000000000000044726f704552433732310000000000000000000000000000000000000000000025e5fda40000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000ffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffd246da9440709ce0dd3f4fd669abc85ada012ab9774b8ecdcc5059ba1486b9c1000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000000000000000000000000000000000000000006400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31b06307db00000000000000000000000000000000000000000000000000000000456e637279707465642062617463680000000000000000000000000000000000eef043febddf4e1d1cf1f72ff1407b84e036e805aa0934418cb82095da8d7164000000000000000000000000000000000000000000000000ffffffffffffffbf7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d9f7f092500000000000000000000000000000000000000000000000000000000f40f1cc000000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132000000000000000000000000000000000000000000000000fffffffffffffeff000000000000000000000000000000000000000000000000ffffffffffffff5f000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee23b872dd00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000bfb89d82000000000000000000000000000000000000000000000000000000002156000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff00000000ffffffffffffffff0000000000000000000000000000000000000000ffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef150b7a020000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000d1a57ed600000000000000000000000000000000000000000000000000000000fa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e2e076300000000000000000000000000000000000000000000000000000000004562091e00000000000000000000000000000000000000000000000000000000fe381cc9000000000000000000000000000000000000000000000000000000009e7762db00000000000000000000000000000000000000000000000000000000f13474e90000000000000000000000000000000000000000000000000000000021537570706c790000000000000000000000000000000000000000000000000021546f6b656e7300000000000000000000000000000000000000000000000000f8086cee80709bd44c82f89dbca54115ebd05e840a88ab81df9cf5be9754eb6353540000000000000000000000000000000000000000000000000000000000000656a73e00000000000000000000000000000000000000000000000000000000bf4016fceeaaa4ac5cf4be865b559ff85825ab4ca7aa7b661d16e2f544c0309856c4ef51000000000000000000000000000000000000000000000000000000008f4eb6040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000007260843c00000000000000000000000000000000000000000000000000000000df5c6b02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000059c896be000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925ffffffffffffffff0000000000000000ffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000ffffff000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000100000000000000000000000000000000000000000000000000000000df2d9b4200000000000000000000000000000000000000000000000000000000f2672935fc79f5237559e2e2999dbe743bf65430894ac2b37666890e7c69e1af4169c622000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000800000000000000000d49c166a0000000000000000000000000000000000000000000000000000000087d20a6d000000000000000000000000000000000000000000000000000000002d99739600000000000000000000000000000000000000000000000000000000cfb3b94200000000000000000000000000000000000000000000000000000000943f7b8c000000000000000000000000000000000000000000000000000000005b5e139effffffffffffffffffffffffffffffffffffffffffffffffffffffff5b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0001ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffff00000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffffa0a114810000000000000000000000000000000000000000000000000000000000ea553b3400000000000000000000000000000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b215472616e736665722d526f6c650000000000000000000000000000000000005361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e0000000000000000000000000000000000000000a164697066735822122007906fb3a73cd3d0126cd753d2b4fa30e7b0d724390c4c2b4cf3bc8c4a686a64002a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.