Source Code
Overview
APE Balance
0 APE
More Info
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ApeTest3
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at curtis.apescan.io on 2024-12-24 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // 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 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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`, * 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 be 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // 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 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: BaseApepes.sol pragma solidity 0.8.28; contract ApeTest3 is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public _maxSupply = 11; uint256 public maxMintAmountPerWallet = 10; uint256 public maxMintAmountPerTx = 10; string baseURL = ""; string ExtensionURL = ".json"; uint256 _initalPrice = 1 ; uint256 public costOfNFT = 1 ; uint256 public numberOfFreeNFTs = 0; string HiddenURL; bool public revealed = false; bool public paused = false; uint256 public ServiceFee = 0 ether ; error ContractPaused(); error MaxMintWalletExceeded(); error MaxSupply(); error InvalidMintAmount(); error InsufficientFund(); error NoSmartContract(); error TokenNotExisting(); constructor(string memory _initBaseURI) ERC721A("ApeTest11", "Apetst22") { baseURL = _initBaseURI; } // ================== Mint Function ======================= modifier mintCompliance(uint256 _mintAmount) { if (msg.sender != tx.origin) revert NoSmartContract(); if (totalSupply() + _mintAmount > _maxSupply) revert MaxSupply(); if (_mintAmount > maxMintAmountPerTx) revert InvalidMintAmount(); if(paused) revert ContractPaused(); _; } modifier mintPriceCompliance(uint256 _mintAmount) { if(balanceOf(msg.sender) + _mintAmount > maxMintAmountPerWallet) revert MaxMintWalletExceeded(); if (_mintAmount < 0 || _mintAmount > maxMintAmountPerWallet) revert InvalidMintAmount(); if (msg.value < checkCost(_mintAmount) + (ServiceFee * _mintAmount) ) revert InsufficientFund(); _; } /// @notice compliance of minting /// @dev user (msg.sender) mint /// @param _mintAmount the amount of tokens to mint function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { _safeMint(msg.sender, _mintAmount); } /// @dev user (msg.sender) mint /// @param _mintAmount the amount of tokens to mint /// @return value from number to mint function checkCost(uint256 _mintAmount) public view returns (uint256) { uint256 totalMints = _mintAmount + balanceOf(msg.sender); if ((totalMints <= numberOfFreeNFTs) ) { return _initalPrice; } else if ((balanceOf(msg.sender) < numberOfFreeNFTs) && (totalMints > numberOfFreeNFTs) ) { uint256 total = costOfNFT * (_mintAmount - numberOfFreeNFTs); return total; } else { uint256 total2 = costOfNFT * _mintAmount; return total2; } } /// @notice airdrop function to airdrop same amount of tokens to addresses /// @dev only owner function /// @param accounts array of addresses /// @param amount the amount of tokens to airdrop users function airdrop(address[] memory accounts, uint256 amount)public onlyOwner mintCompliance(amount) { for(uint256 i = 0; i < accounts.length; i++){ _safeMint(accounts[i], amount); } } // =================== Orange Functions (Owner Only) =============== /// @dev pause/unpause minting function pause() public onlyOwner { paused = !paused; } /// @dev set URI /// @param uri new URI function setbaseURL(string memory uri) public onlyOwner{ baseURL = uri; } /// @dev extension URI like 'json' function setExtensionURL(string memory uri) public onlyOwner{ ExtensionURL = uri; } /// @dev set new cost of tokenId in WEI /// @param _cost new price in wei function setCostPrice(uint256 _cost) public onlyOwner{ costOfNFT = _cost; } /// @dev only owner /// @param supply new max supply function setMaxSupply(uint256 supply) public onlyOwner{ _maxSupply = supply; } /// @dev only owner /// @param perTx new max mint per transaction function setMaxMintAmountPerTx(uint256 perTx) public onlyOwner{ maxMintAmountPerTx = perTx; } /// @dev only owner /// @param perWallet new max mint per wallet function setMaxMintAmountPerWallet(uint256 perWallet) public onlyOwner{ maxMintAmountPerWallet = perWallet; } /// @dev only owner /// @param perWallet set free number of nft per wallet function setnumberOfFreeNFTs(uint256 perWallet) public onlyOwner{ numberOfFreeNFTs = perWallet; } // ================================ Withdraw Function ==================== /// @notice withdraw ether from contract. /// @dev only owner function function withdraw() public onlyOwner nonReentrant{ (bool owner, ) = payable(owner()).call{value: address(this).balance}(''); require(owner); } // =================== Blue Functions (View Only) ==================== /// @dev return uri of token ID /// @param tokenId token ID to find uri for ///@return value for 'tokenId uri' function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { if (!_exists(tokenId)) revert TokenNotExisting(); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ExtensionURL)) : ''; } /// @dev tokenId to start (1) function _startTokenId() internal view virtual override returns (uint256) { return 1; } ///@dev maxSupply of token /// @return max supply function _baseURI() internal view virtual override returns (string memory) { return baseURL; } //internal function payFee( address to, uint256 amount ) internal { (bool success, ) = payable(to).call{value: amount}(''); require(success, "Payment failed"); } }
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"InsufficientFund","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"MaxMintWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSmartContract","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TokenNotExisting","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":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"ServiceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":"_mintAmount","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOfNFT","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfFreeNFTs","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setnumberOfFreeNFTs","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":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b600a55600a600b55600a600c5560405180602001604052805f815250600d908161003091906104d2565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908161007591906104d2565b506001600f5560016010555f6011555f60135f6101000a81548160ff0219169083151502179055505f601360016101000a81548160ff0219169083151502179055505f6014553480156100c6575f5ffd5b506040516138e03803806138e083398181016040528101906100e891906106c1565b6040518060400160405280600981526020017f41706554657374313100000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4170657473743232000000000000000000000000000000000000000000000000815250816002908161016391906104d2565b50806003908161017391906104d2565b506101826101c360201b60201c565b5f8190555050506101a561019a6101cb60201b60201c565b6101d260201b60201c565b600160098190555080600d90816101bc91906104d2565b5050610708565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061031057607f821691505b602082108103610323576103226102cc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261034a565b61038f868361034a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6103d36103ce6103c9846103a7565b6103b0565b6103a7565b9050919050565b5f819050919050565b6103ec836103b9565b6104006103f8826103da565b848454610356565b825550505050565b5f5f905090565b610417610408565b6104228184846103e3565b505050565b5b818110156104455761043a5f8261040f565b600181019050610428565b5050565b601f82111561048a5761045b81610329565b6104648461033b565b81016020851015610473578190505b61048761047f8561033b565b830182610427565b50505b505050565b5f82821c905092915050565b5f6104aa5f198460080261048f565b1980831691505092915050565b5f6104c2838361049b565b9150826002028217905092915050565b6104db82610295565b67ffffffffffffffff8111156104f4576104f361029f565b5b6104fe82546102f9565b610509828285610449565b5f60209050601f83116001811461053a575f8415610528578287015190505b61053285826104b7565b865550610599565b601f19841661054886610329565b5f5b8281101561056f5784890151825560018201915060208501945060208101905061054a565b8683101561058c5784890151610588601f89168261049b565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f5ffd5b5f5ffd5b5f601f19601f8301169050919050565b6105d3826105ba565b810181811067ffffffffffffffff821117156105f2576105f161029f565b5b80604052505050565b5f6106046105a1565b905061061082826105ca565b919050565b5f67ffffffffffffffff82111561062f5761062e61029f565b5b610638826105ba565b9050602081019050919050565b8281835e5f83830152505050565b5f61066561066084610615565b6105fb565b905082815260208101848484011115610681576106806105b6565b5b61068c848285610645565b509392505050565b5f82601f8301126106a8576106a76105b2565b5b81516106b8848260208601610653565b91505092915050565b5f602082840312156106d6576106d56105aa565b5b5f82015167ffffffffffffffff8111156106f3576106f26105ae565b5b6106ff84828501610694565b91505092915050565b6131cb806107155f395ff3fe608060405260043610610219575f3560e01c8063715018a611610122578063aadb5b37116100aa578063c204642c1161006e578063c204642c14610725578063c87b56dd1461074d578063e098ff7314610789578063e985e9c5146107b3578063f2fde38b146107ef57610219565b8063aadb5b3714610663578063b071401b1461068d578063b0fe6414146106b5578063b88d4fde146106df578063bc951b91146106fb57610219565b806393e90b23116100f157806393e90b23146105a357806394354fd0146105cb57806395d89b41146105f5578063a0712d681461061f578063a22cb4651461063b57610219565b8063715018a614610525578063766b7d091461053b5780638456cb59146105635780638da5cb5b1461057957610219565b806342842e0e116101a5578063626ab3b811610174578063626ab3b8146104355780636352211e1461045d578063676f2602146104995780636f8b44b0146104c157806370a08231146104e957610219565b806342842e0e1461039d5780634d534a7d146103b957806351830227146103e15780635c975abb1461040b57610219565b806311b4a832116101ec57806311b4a832146102db57806318160ddd1461031757806322f4596f1461034157806323b872dd1461036b5780633ccfd60b1461038757610219565b806301ffc9a71461021d57806306fdde0314610259578063081812fc14610283578063095ea7b3146102bf575b5f5ffd5b348015610228575f5ffd5b50610243600480360381019061023e9190612333565b610817565b6040516102509190612378565b60405180910390f35b348015610264575f5ffd5b5061026d6108a8565b60405161027a9190612401565b60405180910390f35b34801561028e575f5ffd5b506102a960048036038101906102a49190612454565b610938565b6040516102b691906124be565b60405180910390f35b6102d960048036038101906102d49190612501565b6109b2565b005b3480156102e6575f5ffd5b5061030160048036038101906102fc9190612454565b610af1565b60405161030e919061254e565b60405180910390f35b348015610322575f5ffd5b5061032b610b80565b604051610338919061254e565b60405180910390f35b34801561034c575f5ffd5b50610355610b95565b604051610362919061254e565b60405180910390f35b61038560048036038101906103809190612567565b610b9b565b005b348015610392575f5ffd5b5061039b610ea9565b005b6103b760048036038101906103b29190612567565b610f3c565b005b3480156103c4575f5ffd5b506103df60048036038101906103da91906126e3565b610f5b565b005b3480156103ec575f5ffd5b506103f5610f76565b6040516104029190612378565b60405180910390f35b348015610416575f5ffd5b5061041f610f88565b60405161042c9190612378565b60405180910390f35b348015610440575f5ffd5b5061045b600480360381019061045691906126e3565b610f9b565b005b348015610468575f5ffd5b50610483600480360381019061047e9190612454565b610fb6565b60405161049091906124be565b60405180910390f35b3480156104a4575f5ffd5b506104bf60048036038101906104ba9190612454565b610fc7565b005b3480156104cc575f5ffd5b506104e760048036038101906104e29190612454565b610fd9565b005b3480156104f4575f5ffd5b5061050f600480360381019061050a919061272a565b610feb565b60405161051c919061254e565b60405180910390f35b348015610530575f5ffd5b506105396110a0565b005b348015610546575f5ffd5b50610561600480360381019061055c9190612454565b6110b3565b005b34801561056e575f5ffd5b506105776110c5565b005b348015610584575f5ffd5b5061058d6110f9565b60405161059a91906124be565b60405180910390f35b3480156105ae575f5ffd5b506105c960048036038101906105c49190612454565b611121565b005b3480156105d6575f5ffd5b506105df611133565b6040516105ec919061254e565b60405180910390f35b348015610600575f5ffd5b50610609611139565b6040516106169190612401565b60405180910390f35b61063960048036038101906106349190612454565b6111c9565b005b348015610646575f5ffd5b50610661600480360381019061065c919061277f565b6113ff565b005b34801561066e575f5ffd5b50610677611505565b604051610684919061254e565b60405180910390f35b348015610698575f5ffd5b506106b360048036038101906106ae9190612454565b61150b565b005b3480156106c0575f5ffd5b506106c961151d565b6040516106d6919061254e565b60405180910390f35b6106f960048036038101906106f4919061285b565b611523565b005b348015610706575f5ffd5b5061070f611595565b60405161071c919061254e565b60405180910390f35b348015610730575f5ffd5b5061074b6004803603810190610746919061299f565b61159b565b005b348015610758575f5ffd5b50610773600480360381019061076e9190612454565b61171f565b6040516107809190612401565b60405180910390f35b348015610794575f5ffd5b5061079d6117bd565b6040516107aa919061254e565b60405180910390f35b3480156107be575f5ffd5b506107d960048036038101906107d491906129f9565b6117c3565b6040516107e69190612378565b60405180910390f35b3480156107fa575f5ffd5b506108156004803603810190610810919061272a565b611851565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108b790612a64565b80601f01602080910402602001604051908101604052809291908181526020018280546108e390612a64565b801561092e5780601f106109055761010080835404028352916020019161092e565b820191905f5260205f20905b81548152906001019060200180831161091157829003601f168201915b5050505050905090565b5f610942826118d3565b610978576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6109bc82610fb6565b90508073ffffffffffffffffffffffffffffffffffffffff166109dd61192d565b73ffffffffffffffffffffffffffffffffffffffff1614610a4057610a0981610a0461192d565b6117c3565b610a3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f5f610afc33610feb565b83610b079190612ac1565b90506011548111610b1d57600f54915050610b7b565b601154610b2933610feb565b108015610b37575060115481115b15610b64575f60115484610b4b9190612af4565b601054610b589190612b27565b90508092505050610b7b565b5f83601054610b739190612b27565b905080925050505b919050565b5f610b89611934565b6001545f540303905090565b600a5481565b5f610ba58261193c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c0c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5f610c17846119ff565b91509150610c2d8187610c2861192d565b611a22565b610c7957610c4286610c3d61192d565b6117c3565b610c78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cde576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ceb8686866001611a65565b8015610cf5575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610dbd85610d99888887611a6b565b7c020000000000000000000000000000000000000000000000000000000017611a92565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610e39575f6001850190505f60045f8381526020019081526020015f205403610e37575f548114610e36578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ea18686866001611abc565b505050505050565b610eb1611ac2565b610eb9611b40565b5f610ec26110f9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ee590612b95565b5f6040518083038185875af1925050503d805f8114610f1f576040519150601f19603f3d011682016040523d82523d5f602084013e610f24565b606091505b5050905080610f31575f5ffd5b50610f3a611b8f565b565b610f5683838360405180602001604052805f815250611523565b505050565b610f63611ac2565b80600e9081610f729190612d49565b5050565b60135f9054906101000a900460ff1681565b601360019054906101000a900460ff1681565b610fa3611ac2565b80600d9081610fb29190612d49565b5050565b5f610fc08261193c565b9050919050565b610fcf611ac2565b8060108190555050565b610fe1611ac2565b80600a8190555050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611051576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6110a8611ac2565b6110b15f611b99565b565b6110bb611ac2565b80600b8190555050565b6110cd611ac2565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611129611ac2565b8060118190555050565b600c5481565b60606003805461114890612a64565b80601f016020809104026020016040519081016040528092919081815260200182805461117490612a64565b80156111bf5780601f10611196576101008083540402835291602001916111bf565b820191905f5260205f20905b8154815290600101906020018083116111a257829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122f576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161123b610b80565b6112459190612ac1565b111561127d576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c548111156112b9576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611300576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b548161130e33610feb565b6113189190612ac1565b1115611350576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f81108061135f5750600b5481115b15611396576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806014546113a49190612b27565b6113ad82610af1565b6113b79190612ac1565b3410156113f0576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113fa3384611c5c565b505050565b8060075f61140b61192d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b461192d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f99190612378565b60405180910390a35050565b60145481565b611513611ac2565b80600c8190555050565b60115481565b61152e848484610b9b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461158f5761155884848484611c79565b61158e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6115a3611ac2565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611609576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611615610b80565b61161f9190612ac1565b1115611657576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611693576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff16156116da576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5f90505b83518110156117195761170c8482815181106116fe576116fd612e18565b5b602002602001015184611c5c565b80806001019150506116df565b50505050565b606061172a826118d3565b611760576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611769611dc4565b90505f8151116117875760405180602001604052805f8152506117b5565b8061179184611e54565b600e6040516020016117a593929190612eff565b6040516020818303038152906040525b915050919050565b60105481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611859611ac2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612f9f565b60405180910390fd5b6118d081611b99565b50565b5f816118dd611934565b111580156118eb57505f5482105b801561192657505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f5f8290508061194a611934565b116119c8575f548110156119c7575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036119c5575b5f81036119bb5760045f836001900393508381526020019081526020015f20549050611994565b80925050506119fa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f5f5f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f5f60e883901c905060e8611a81868684611f1e565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aca611f26565b73ffffffffffffffffffffffffffffffffffffffff16611ae86110f9565b73ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613007565b60405180910390fd5b565b600260095403611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c9061306f565b60405180910390fd5b6002600981905550565b6001600981905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c75828260405180602001604052805f815250611f2d565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c9e61192d565b8786866040518563ffffffff1660e01b8152600401611cc094939291906130df565b6020604051808303815f875af1925050508015611cfb57506040513d601f19601f82011682018060405250810190611cf8919061313d565b60015b611d71573d805f8114611d29576040519150601f19603f3d011682016040523d82523d5f602084013e611d2e565b606091505b505f815103611d69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611dd390612a64565b80601f0160208091040260200160405190810160405280929190818152602001828054611dff90612a64565b8015611e4a5780601f10611e2157610100808354040283529160200191611e4a565b820191905f5260205f20905b815481529060010190602001808311611e2d57829003601f168201915b5050505050905090565b60605f6001611e6284611fc4565b0190505f8167ffffffffffffffff811115611e8057611e7f6125bf565b5b6040519080825280601f01601f191660200182016040528015611eb25781602001600182028036833780820191505090505b5090505f82602001820190505b600115611f13578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f0857611f07613168565b5b0494505f8503611ebf575b819350505050919050565b5f9392505050565b5f33905090565b611f378383612115565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611fbf575f5f5490505f83820390505b611f735f868380600101945086611c79565b611fa9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f6157815f5414611fbc575f5ffd5b50505b505050565b5f5f5f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612020577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161201657612015613168565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061205d576d04ee2d6d415b85acef8100000000838161205357612052613168565b5b0492506020810190505b662386f26fc10000831061208c57662386f26fc10000838161208257612081613168565b5b0492506010810190505b6305f5e10083106120b5576305f5e10083816120ab576120aa613168565b5b0492506008810190505b61271083106120da5761271083816120d0576120cf613168565b5b0492506004810190505b606483106120fd57606483816120f3576120f2613168565b5b0492506002810190505b600a831061210c576001810190505b80915050919050565b5f5f5490505f8203612153576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215f5f848385611a65565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506121d1836121c25f865f611a6b565b6121cb856122be565b17611a92565b60045f8381526020019081526020015f20819055505f5f838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f5fa4600183015b81811461226b5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f5fa4600181019050612232565b505f82036122a5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506122b95f848385611abc565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612312816122de565b811461231c575f5ffd5b50565b5f8135905061232d81612309565b92915050565b5f60208284031215612348576123476122d6565b5b5f6123558482850161231f565b91505092915050565b5f8115159050919050565b6123728161235e565b82525050565b5f60208201905061238b5f830184612369565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6123d382612391565b6123dd818561239b565b93506123ed8185602086016123ab565b6123f6816123b9565b840191505092915050565b5f6020820190508181035f83015261241981846123c9565b905092915050565b5f819050919050565b61243381612421565b811461243d575f5ffd5b50565b5f8135905061244e8161242a565b92915050565b5f60208284031215612469576124686122d6565b5b5f61247684828501612440565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124a88261247f565b9050919050565b6124b88161249e565b82525050565b5f6020820190506124d15f8301846124af565b92915050565b6124e08161249e565b81146124ea575f5ffd5b50565b5f813590506124fb816124d7565b92915050565b5f5f60408385031215612517576125166122d6565b5b5f612524858286016124ed565b925050602061253585828601612440565b9150509250929050565b61254881612421565b82525050565b5f6020820190506125615f83018461253f565b92915050565b5f5f5f6060848603121561257e5761257d6122d6565b5b5f61258b868287016124ed565b935050602061259c868287016124ed565b92505060406125ad86828701612440565b9150509250925092565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6125f5826123b9565b810181811067ffffffffffffffff82111715612614576126136125bf565b5b80604052505050565b5f6126266122cd565b905061263282826125ec565b919050565b5f67ffffffffffffffff821115612651576126506125bf565b5b61265a826123b9565b9050602081019050919050565b828183375f83830152505050565b5f61268761268284612637565b61261d565b9050828152602081018484840111156126a3576126a26125bb565b5b6126ae848285612667565b509392505050565b5f82601f8301126126ca576126c96125b7565b5b81356126da848260208601612675565b91505092915050565b5f602082840312156126f8576126f76122d6565b5b5f82013567ffffffffffffffff811115612715576127146122da565b5b612721848285016126b6565b91505092915050565b5f6020828403121561273f5761273e6122d6565b5b5f61274c848285016124ed565b91505092915050565b61275e8161235e565b8114612768575f5ffd5b50565b5f8135905061277981612755565b92915050565b5f5f60408385031215612795576127946122d6565b5b5f6127a2858286016124ed565b92505060206127b38582860161276b565b9150509250929050565b5f67ffffffffffffffff8211156127d7576127d66125bf565b5b6127e0826123b9565b9050602081019050919050565b5f6127ff6127fa846127bd565b61261d565b90508281526020810184848401111561281b5761281a6125bb565b5b612826848285612667565b509392505050565b5f82601f830112612842576128416125b7565b5b81356128528482602086016127ed565b91505092915050565b5f5f5f5f60808587031215612873576128726122d6565b5b5f612880878288016124ed565b9450506020612891878288016124ed565b93505060406128a287828801612440565b925050606085013567ffffffffffffffff8111156128c3576128c26122da565b5b6128cf8782880161282e565b91505092959194509250565b5f67ffffffffffffffff8211156128f5576128f46125bf565b5b602082029050602081019050919050565b5f5ffd5b5f61291c612917846128db565b61261d565b9050808382526020820190506020840283018581111561293f5761293e612906565b5b835b81811015612968578061295488826124ed565b845260208401935050602081019050612941565b5050509392505050565b5f82601f830112612986576129856125b7565b5b813561299684826020860161290a565b91505092915050565b5f5f604083850312156129b5576129b46122d6565b5b5f83013567ffffffffffffffff8111156129d2576129d16122da565b5b6129de85828601612972565b92505060206129ef85828601612440565b9150509250929050565b5f5f60408385031215612a0f57612a0e6122d6565b5b5f612a1c858286016124ed565b9250506020612a2d858286016124ed565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612a7b57607f821691505b602082108103612a8e57612a8d612a37565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612acb82612421565b9150612ad683612421565b9250828201905080821115612aee57612aed612a94565b5b92915050565b5f612afe82612421565b9150612b0983612421565b9250828203905081811115612b2157612b20612a94565b5b92915050565b5f612b3182612421565b9150612b3c83612421565b9250828202612b4a81612421565b91508282048414831517612b6157612b60612a94565b5b5092915050565b5f81905092915050565b50565b5f612b805f83612b68565b9150612b8b82612b72565b5f82019050919050565b5f612b9f82612b75565b9150819050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612c057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bca565b612c0f8683612bca565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612c4a612c45612c4084612421565b612c27565b612421565b9050919050565b5f819050919050565b612c6383612c30565b612c77612c6f82612c51565b848454612bd6565b825550505050565b5f5f905090565b612c8e612c7f565b612c99818484612c5a565b505050565b5b81811015612cbc57612cb15f82612c86565b600181019050612c9f565b5050565b601f821115612d0157612cd281612ba9565b612cdb84612bbb565b81016020851015612cea578190505b612cfe612cf685612bbb565b830182612c9e565b50505b505050565b5f82821c905092915050565b5f612d215f1984600802612d06565b1980831691505092915050565b5f612d398383612d12565b9150826002028217905092915050565b612d5282612391565b67ffffffffffffffff811115612d6b57612d6a6125bf565b5b612d758254612a64565b612d80828285612cc0565b5f60209050601f831160018114612db1575f8415612d9f578287015190505b612da98582612d2e565b865550612e10565b601f198416612dbf86612ba9565b5f5b82811015612de657848901518255600182019150602085019450602081019050612dc1565b86831015612e035784890151612dff601f891682612d12565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b5f612e5982612391565b612e638185612e45565b9350612e738185602086016123ab565b80840191505092915050565b5f8154612e8b81612a64565b612e958186612e45565b9450600182165f8114612eaf5760018114612ec457612ef6565b60ff1983168652811515820286019350612ef6565b612ecd85612ba9565b5f5b83811015612eee57815481890152600182019150602081019050612ecf565b838801955050505b50505092915050565b5f612f0a8286612e4f565b9150612f168285612e4f565b9150612f228284612e7f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612f8960268361239b565b9150612f9482612f2f565b604082019050919050565b5f6020820190508181035f830152612fb681612f7d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ff160208361239b565b9150612ffc82612fbd565b602082019050919050565b5f6020820190508181035f83015261301e81612fe5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613059601f8361239b565b915061306482613025565b602082019050919050565b5f6020820190508181035f8301526130868161304d565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6130b18261308d565b6130bb8185613097565b93506130cb8185602086016123ab565b6130d4816123b9565b840191505092915050565b5f6080820190506130f25f8301876124af565b6130ff60208301866124af565b61310c604083018561253f565b818103606083015261311e81846130a7565b905095945050505050565b5f8151905061313781612309565b92915050565b5f60208284031215613152576131516122d6565b5b5f61315f84828501613129565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122024e16d4c0e8928a5557e36a1c34c2f86d26f6a3d3839c9e3c18e2d507f0d4b4e64736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000046262626200000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610219575f3560e01c8063715018a611610122578063aadb5b37116100aa578063c204642c1161006e578063c204642c14610725578063c87b56dd1461074d578063e098ff7314610789578063e985e9c5146107b3578063f2fde38b146107ef57610219565b8063aadb5b3714610663578063b071401b1461068d578063b0fe6414146106b5578063b88d4fde146106df578063bc951b91146106fb57610219565b806393e90b23116100f157806393e90b23146105a357806394354fd0146105cb57806395d89b41146105f5578063a0712d681461061f578063a22cb4651461063b57610219565b8063715018a614610525578063766b7d091461053b5780638456cb59146105635780638da5cb5b1461057957610219565b806342842e0e116101a5578063626ab3b811610174578063626ab3b8146104355780636352211e1461045d578063676f2602146104995780636f8b44b0146104c157806370a08231146104e957610219565b806342842e0e1461039d5780634d534a7d146103b957806351830227146103e15780635c975abb1461040b57610219565b806311b4a832116101ec57806311b4a832146102db57806318160ddd1461031757806322f4596f1461034157806323b872dd1461036b5780633ccfd60b1461038757610219565b806301ffc9a71461021d57806306fdde0314610259578063081812fc14610283578063095ea7b3146102bf575b5f5ffd5b348015610228575f5ffd5b50610243600480360381019061023e9190612333565b610817565b6040516102509190612378565b60405180910390f35b348015610264575f5ffd5b5061026d6108a8565b60405161027a9190612401565b60405180910390f35b34801561028e575f5ffd5b506102a960048036038101906102a49190612454565b610938565b6040516102b691906124be565b60405180910390f35b6102d960048036038101906102d49190612501565b6109b2565b005b3480156102e6575f5ffd5b5061030160048036038101906102fc9190612454565b610af1565b60405161030e919061254e565b60405180910390f35b348015610322575f5ffd5b5061032b610b80565b604051610338919061254e565b60405180910390f35b34801561034c575f5ffd5b50610355610b95565b604051610362919061254e565b60405180910390f35b61038560048036038101906103809190612567565b610b9b565b005b348015610392575f5ffd5b5061039b610ea9565b005b6103b760048036038101906103b29190612567565b610f3c565b005b3480156103c4575f5ffd5b506103df60048036038101906103da91906126e3565b610f5b565b005b3480156103ec575f5ffd5b506103f5610f76565b6040516104029190612378565b60405180910390f35b348015610416575f5ffd5b5061041f610f88565b60405161042c9190612378565b60405180910390f35b348015610440575f5ffd5b5061045b600480360381019061045691906126e3565b610f9b565b005b348015610468575f5ffd5b50610483600480360381019061047e9190612454565b610fb6565b60405161049091906124be565b60405180910390f35b3480156104a4575f5ffd5b506104bf60048036038101906104ba9190612454565b610fc7565b005b3480156104cc575f5ffd5b506104e760048036038101906104e29190612454565b610fd9565b005b3480156104f4575f5ffd5b5061050f600480360381019061050a919061272a565b610feb565b60405161051c919061254e565b60405180910390f35b348015610530575f5ffd5b506105396110a0565b005b348015610546575f5ffd5b50610561600480360381019061055c9190612454565b6110b3565b005b34801561056e575f5ffd5b506105776110c5565b005b348015610584575f5ffd5b5061058d6110f9565b60405161059a91906124be565b60405180910390f35b3480156105ae575f5ffd5b506105c960048036038101906105c49190612454565b611121565b005b3480156105d6575f5ffd5b506105df611133565b6040516105ec919061254e565b60405180910390f35b348015610600575f5ffd5b50610609611139565b6040516106169190612401565b60405180910390f35b61063960048036038101906106349190612454565b6111c9565b005b348015610646575f5ffd5b50610661600480360381019061065c919061277f565b6113ff565b005b34801561066e575f5ffd5b50610677611505565b604051610684919061254e565b60405180910390f35b348015610698575f5ffd5b506106b360048036038101906106ae9190612454565b61150b565b005b3480156106c0575f5ffd5b506106c961151d565b6040516106d6919061254e565b60405180910390f35b6106f960048036038101906106f4919061285b565b611523565b005b348015610706575f5ffd5b5061070f611595565b60405161071c919061254e565b60405180910390f35b348015610730575f5ffd5b5061074b6004803603810190610746919061299f565b61159b565b005b348015610758575f5ffd5b50610773600480360381019061076e9190612454565b61171f565b6040516107809190612401565b60405180910390f35b348015610794575f5ffd5b5061079d6117bd565b6040516107aa919061254e565b60405180910390f35b3480156107be575f5ffd5b506107d960048036038101906107d491906129f9565b6117c3565b6040516107e69190612378565b60405180910390f35b3480156107fa575f5ffd5b506108156004803603810190610810919061272a565b611851565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108b790612a64565b80601f01602080910402602001604051908101604052809291908181526020018280546108e390612a64565b801561092e5780601f106109055761010080835404028352916020019161092e565b820191905f5260205f20905b81548152906001019060200180831161091157829003601f168201915b5050505050905090565b5f610942826118d3565b610978576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6109bc82610fb6565b90508073ffffffffffffffffffffffffffffffffffffffff166109dd61192d565b73ffffffffffffffffffffffffffffffffffffffff1614610a4057610a0981610a0461192d565b6117c3565b610a3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f5f610afc33610feb565b83610b079190612ac1565b90506011548111610b1d57600f54915050610b7b565b601154610b2933610feb565b108015610b37575060115481115b15610b64575f60115484610b4b9190612af4565b601054610b589190612b27565b90508092505050610b7b565b5f83601054610b739190612b27565b905080925050505b919050565b5f610b89611934565b6001545f540303905090565b600a5481565b5f610ba58261193c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c0c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5f610c17846119ff565b91509150610c2d8187610c2861192d565b611a22565b610c7957610c4286610c3d61192d565b6117c3565b610c78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cde576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ceb8686866001611a65565b8015610cf5575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610dbd85610d99888887611a6b565b7c020000000000000000000000000000000000000000000000000000000017611a92565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610e39575f6001850190505f60045f8381526020019081526020015f205403610e37575f548114610e36578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ea18686866001611abc565b505050505050565b610eb1611ac2565b610eb9611b40565b5f610ec26110f9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ee590612b95565b5f6040518083038185875af1925050503d805f8114610f1f576040519150601f19603f3d011682016040523d82523d5f602084013e610f24565b606091505b5050905080610f31575f5ffd5b50610f3a611b8f565b565b610f5683838360405180602001604052805f815250611523565b505050565b610f63611ac2565b80600e9081610f729190612d49565b5050565b60135f9054906101000a900460ff1681565b601360019054906101000a900460ff1681565b610fa3611ac2565b80600d9081610fb29190612d49565b5050565b5f610fc08261193c565b9050919050565b610fcf611ac2565b8060108190555050565b610fe1611ac2565b80600a8190555050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611051576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6110a8611ac2565b6110b15f611b99565b565b6110bb611ac2565b80600b8190555050565b6110cd611ac2565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611129611ac2565b8060118190555050565b600c5481565b60606003805461114890612a64565b80601f016020809104026020016040519081016040528092919081815260200182805461117490612a64565b80156111bf5780601f10611196576101008083540402835291602001916111bf565b820191905f5260205f20905b8154815290600101906020018083116111a257829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122f576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161123b610b80565b6112459190612ac1565b111561127d576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c548111156112b9576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611300576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b548161130e33610feb565b6113189190612ac1565b1115611350576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f81108061135f5750600b5481115b15611396576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806014546113a49190612b27565b6113ad82610af1565b6113b79190612ac1565b3410156113f0576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113fa3384611c5c565b505050565b8060075f61140b61192d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b461192d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f99190612378565b60405180910390a35050565b60145481565b611513611ac2565b80600c8190555050565b60115481565b61152e848484610b9b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461158f5761155884848484611c79565b61158e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6115a3611ac2565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611609576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611615610b80565b61161f9190612ac1565b1115611657576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611693576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff16156116da576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5f90505b83518110156117195761170c8482815181106116fe576116fd612e18565b5b602002602001015184611c5c565b80806001019150506116df565b50505050565b606061172a826118d3565b611760576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611769611dc4565b90505f8151116117875760405180602001604052805f8152506117b5565b8061179184611e54565b600e6040516020016117a593929190612eff565b6040516020818303038152906040525b915050919050565b60105481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611859611ac2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612f9f565b60405180910390fd5b6118d081611b99565b50565b5f816118dd611934565b111580156118eb57505f5482105b801561192657505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f5f8290508061194a611934565b116119c8575f548110156119c7575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036119c5575b5f81036119bb5760045f836001900393508381526020019081526020015f20549050611994565b80925050506119fa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f5f5f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f5f60e883901c905060e8611a81868684611f1e565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aca611f26565b73ffffffffffffffffffffffffffffffffffffffff16611ae86110f9565b73ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613007565b60405180910390fd5b565b600260095403611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c9061306f565b60405180910390fd5b6002600981905550565b6001600981905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c75828260405180602001604052805f815250611f2d565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c9e61192d565b8786866040518563ffffffff1660e01b8152600401611cc094939291906130df565b6020604051808303815f875af1925050508015611cfb57506040513d601f19601f82011682018060405250810190611cf8919061313d565b60015b611d71573d805f8114611d29576040519150601f19603f3d011682016040523d82523d5f602084013e611d2e565b606091505b505f815103611d69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611dd390612a64565b80601f0160208091040260200160405190810160405280929190818152602001828054611dff90612a64565b8015611e4a5780601f10611e2157610100808354040283529160200191611e4a565b820191905f5260205f20905b815481529060010190602001808311611e2d57829003601f168201915b5050505050905090565b60605f6001611e6284611fc4565b0190505f8167ffffffffffffffff811115611e8057611e7f6125bf565b5b6040519080825280601f01601f191660200182016040528015611eb25781602001600182028036833780820191505090505b5090505f82602001820190505b600115611f13578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f0857611f07613168565b5b0494505f8503611ebf575b819350505050919050565b5f9392505050565b5f33905090565b611f378383612115565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611fbf575f5f5490505f83820390505b611f735f868380600101945086611c79565b611fa9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f6157815f5414611fbc575f5ffd5b50505b505050565b5f5f5f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612020577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161201657612015613168565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061205d576d04ee2d6d415b85acef8100000000838161205357612052613168565b5b0492506020810190505b662386f26fc10000831061208c57662386f26fc10000838161208257612081613168565b5b0492506010810190505b6305f5e10083106120b5576305f5e10083816120ab576120aa613168565b5b0492506008810190505b61271083106120da5761271083816120d0576120cf613168565b5b0492506004810190505b606483106120fd57606483816120f3576120f2613168565b5b0492506002810190505b600a831061210c576001810190505b80915050919050565b5f5f5490505f8203612153576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215f5f848385611a65565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506121d1836121c25f865f611a6b565b6121cb856122be565b17611a92565b60045f8381526020019081526020015f20819055505f5f838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f5fa4600183015b81811461226b5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f5fa4600181019050612232565b505f82036122a5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506122b95f848385611abc565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612312816122de565b811461231c575f5ffd5b50565b5f8135905061232d81612309565b92915050565b5f60208284031215612348576123476122d6565b5b5f6123558482850161231f565b91505092915050565b5f8115159050919050565b6123728161235e565b82525050565b5f60208201905061238b5f830184612369565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6123d382612391565b6123dd818561239b565b93506123ed8185602086016123ab565b6123f6816123b9565b840191505092915050565b5f6020820190508181035f83015261241981846123c9565b905092915050565b5f819050919050565b61243381612421565b811461243d575f5ffd5b50565b5f8135905061244e8161242a565b92915050565b5f60208284031215612469576124686122d6565b5b5f61247684828501612440565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124a88261247f565b9050919050565b6124b88161249e565b82525050565b5f6020820190506124d15f8301846124af565b92915050565b6124e08161249e565b81146124ea575f5ffd5b50565b5f813590506124fb816124d7565b92915050565b5f5f60408385031215612517576125166122d6565b5b5f612524858286016124ed565b925050602061253585828601612440565b9150509250929050565b61254881612421565b82525050565b5f6020820190506125615f83018461253f565b92915050565b5f5f5f6060848603121561257e5761257d6122d6565b5b5f61258b868287016124ed565b935050602061259c868287016124ed565b92505060406125ad86828701612440565b9150509250925092565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6125f5826123b9565b810181811067ffffffffffffffff82111715612614576126136125bf565b5b80604052505050565b5f6126266122cd565b905061263282826125ec565b919050565b5f67ffffffffffffffff821115612651576126506125bf565b5b61265a826123b9565b9050602081019050919050565b828183375f83830152505050565b5f61268761268284612637565b61261d565b9050828152602081018484840111156126a3576126a26125bb565b5b6126ae848285612667565b509392505050565b5f82601f8301126126ca576126c96125b7565b5b81356126da848260208601612675565b91505092915050565b5f602082840312156126f8576126f76122d6565b5b5f82013567ffffffffffffffff811115612715576127146122da565b5b612721848285016126b6565b91505092915050565b5f6020828403121561273f5761273e6122d6565b5b5f61274c848285016124ed565b91505092915050565b61275e8161235e565b8114612768575f5ffd5b50565b5f8135905061277981612755565b92915050565b5f5f60408385031215612795576127946122d6565b5b5f6127a2858286016124ed565b92505060206127b38582860161276b565b9150509250929050565b5f67ffffffffffffffff8211156127d7576127d66125bf565b5b6127e0826123b9565b9050602081019050919050565b5f6127ff6127fa846127bd565b61261d565b90508281526020810184848401111561281b5761281a6125bb565b5b612826848285612667565b509392505050565b5f82601f830112612842576128416125b7565b5b81356128528482602086016127ed565b91505092915050565b5f5f5f5f60808587031215612873576128726122d6565b5b5f612880878288016124ed565b9450506020612891878288016124ed565b93505060406128a287828801612440565b925050606085013567ffffffffffffffff8111156128c3576128c26122da565b5b6128cf8782880161282e565b91505092959194509250565b5f67ffffffffffffffff8211156128f5576128f46125bf565b5b602082029050602081019050919050565b5f5ffd5b5f61291c612917846128db565b61261d565b9050808382526020820190506020840283018581111561293f5761293e612906565b5b835b81811015612968578061295488826124ed565b845260208401935050602081019050612941565b5050509392505050565b5f82601f830112612986576129856125b7565b5b813561299684826020860161290a565b91505092915050565b5f5f604083850312156129b5576129b46122d6565b5b5f83013567ffffffffffffffff8111156129d2576129d16122da565b5b6129de85828601612972565b92505060206129ef85828601612440565b9150509250929050565b5f5f60408385031215612a0f57612a0e6122d6565b5b5f612a1c858286016124ed565b9250506020612a2d858286016124ed565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612a7b57607f821691505b602082108103612a8e57612a8d612a37565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612acb82612421565b9150612ad683612421565b9250828201905080821115612aee57612aed612a94565b5b92915050565b5f612afe82612421565b9150612b0983612421565b9250828203905081811115612b2157612b20612a94565b5b92915050565b5f612b3182612421565b9150612b3c83612421565b9250828202612b4a81612421565b91508282048414831517612b6157612b60612a94565b5b5092915050565b5f81905092915050565b50565b5f612b805f83612b68565b9150612b8b82612b72565b5f82019050919050565b5f612b9f82612b75565b9150819050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612c057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bca565b612c0f8683612bca565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612c4a612c45612c4084612421565b612c27565b612421565b9050919050565b5f819050919050565b612c6383612c30565b612c77612c6f82612c51565b848454612bd6565b825550505050565b5f5f905090565b612c8e612c7f565b612c99818484612c5a565b505050565b5b81811015612cbc57612cb15f82612c86565b600181019050612c9f565b5050565b601f821115612d0157612cd281612ba9565b612cdb84612bbb565b81016020851015612cea578190505b612cfe612cf685612bbb565b830182612c9e565b50505b505050565b5f82821c905092915050565b5f612d215f1984600802612d06565b1980831691505092915050565b5f612d398383612d12565b9150826002028217905092915050565b612d5282612391565b67ffffffffffffffff811115612d6b57612d6a6125bf565b5b612d758254612a64565b612d80828285612cc0565b5f60209050601f831160018114612db1575f8415612d9f578287015190505b612da98582612d2e565b865550612e10565b601f198416612dbf86612ba9565b5f5b82811015612de657848901518255600182019150602085019450602081019050612dc1565b86831015612e035784890151612dff601f891682612d12565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b5f612e5982612391565b612e638185612e45565b9350612e738185602086016123ab565b80840191505092915050565b5f8154612e8b81612a64565b612e958186612e45565b9450600182165f8114612eaf5760018114612ec457612ef6565b60ff1983168652811515820286019350612ef6565b612ecd85612ba9565b5f5b83811015612eee57815481890152600182019150602081019050612ecf565b838801955050505b50505092915050565b5f612f0a8286612e4f565b9150612f168285612e4f565b9150612f228284612e7f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612f8960268361239b565b9150612f9482612f2f565b604082019050919050565b5f6020820190508181035f830152612fb681612f7d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ff160208361239b565b9150612ffc82612fbd565b602082019050919050565b5f6020820190508181035f83015261301e81612fe5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613059601f8361239b565b915061306482613025565b602082019050919050565b5f6020820190508181035f8301526130868161304d565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6130b18261308d565b6130bb8185613097565b93506130cb8185602086016123ab565b6130d4816123b9565b840191505092915050565b5f6080820190506130f25f8301876124af565b6130ff60208301866124af565b61310c604083018561253f565b818103606083015261311e81846130a7565b905095945050505050565b5f8151905061313781612309565b92915050565b5f60208284031215613152576131516122d6565b5b5f61315f84828501613129565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122024e16d4c0e8928a5557e36a1c34c2f86d26f6a3d3839c9e3c18e2d507f0d4b4e64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000046262626200000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): bbbb
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 6262626200000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
73255:6707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21997:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29390:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28823:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75679:564;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18650:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73366:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33029:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78526:197;;;;;;;;;;;;;:::i;:::-;;35950:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77166:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73778:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73821:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77017:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24292:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77382:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77562:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19834:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;77966:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76859:75;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78210:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73468:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23075:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75347:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29948:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73861:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77757:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73683:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36741:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73411:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76503:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78954:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73639:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30339:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21997:639;22082:4;22421:10;22406:25;;:11;:25;;;;:102;;;;22498:10;22483:25;;:11;:25;;;;22406:102;:179;;;;22575:10;22560:25;;:11;:25;;;;22406:179;22386:199;;21997:639;;;:::o;22899:100::-;22953:13;22986:5;22979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:100;:::o;29390:218::-;29466:7;29491:16;29499:7;29491;:16::i;:::-;29486:64;;29516:34;;;;;;;;;;;;;;29486:64;29570:15;:24;29586:7;29570:24;;;;;;;;;;;:30;;;;;;;;;;;;29563:37;;29390:218;;;:::o;28823:408::-;28912:13;28928:16;28936:7;28928;:16::i;:::-;28912:32;;28984:5;28961:28;;:19;:17;:19::i;:::-;:28;;;28957:175;;29009:44;29026:5;29033:19;:17;:19::i;:::-;29009:16;:44::i;:::-;29004:128;;29081:35;;;;;;;;;;;;;;29004:128;28957:175;29177:2;29144:15;:24;29160:7;29144:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29215:7;29211:2;29195:28;;29204:5;29195:28;;;;;;;;;;;;28901:330;28823:408;;:::o;75679:564::-;75740:7;75762:18;75797:21;75807:10;75797:9;:21::i;:::-;75783:11;:35;;;;:::i;:::-;75762:56;;75850:16;;75836:10;:30;75831:401;;75890:12;;75883:19;;;;;75831:401;75951:16;;75927:21;75937:10;75927:9;:21::i;:::-;:40;75926:77;;;;;75986:16;;75973:10;:29;75926:77;75922:310;;;76020:13;76063:16;;76049:11;:30;;;;:::i;:::-;76036:9;;:44;;;;:::i;:::-;76020:60;;76100:5;76093:12;;;;;;75922:310;76150:14;76179:11;76167:9;;:23;;;;:::i;:::-;76150:40;;76210:6;76203:13;;;;75679:564;;;;:::o;18650:323::-;18711:7;18939:15;:13;:15::i;:::-;18924:12;;18908:13;;:28;:46;18901:53;;18650:323;:::o;73366:30::-;;;;:::o;33029:2825::-;33171:27;33201;33220:7;33201:18;:27::i;:::-;33171:57;;33286:4;33245:45;;33261:19;33245:45;;;33241:86;;33299:28;;;;;;;;;;;;;;33241:86;33341:27;33370:23;33397:35;33424:7;33397:26;:35::i;:::-;33340:92;;;;33532:68;33557:15;33574:4;33580:19;:17;:19::i;:::-;33532:24;:68::i;:::-;33527:180;;33620:43;33637:4;33643:19;:17;:19::i;:::-;33620:16;:43::i;:::-;33615:92;;33672:35;;;;;;;;;;;;;;33615:92;33527:180;33738:1;33724:16;;:2;:16;;;33720:52;;33749:23;;;;;;;;;;;;;;33720:52;33785:43;33807:4;33813:2;33817:7;33826:1;33785:21;:43::i;:::-;33921:15;33918:160;;;34061:1;34040:19;34033:30;33918:160;34458:18;:24;34477:4;34458:24;;;;;;;;;;;;;;;;34456:26;;;;;;;;;;;;34527:18;:22;34546:2;34527:22;;;;;;;;;;;;;;;;34525:24;;;;;;;;;;;34849:146;34886:2;34935:45;34950:4;34956:2;34960:19;34935:14;:45::i;:::-;15049:8;34907:73;34849:18;:146::i;:::-;34820:17;:26;34838:7;34820:26;;;;;;;;;;;:175;;;;35166:1;15049:8;35115:19;:47;:52;35111:627;;35188:19;35220:1;35210:7;:11;35188:33;;35377:1;35343:17;:30;35361:11;35343:30;;;;;;;;;;;;:35;35339:384;;35481:13;;35466:11;:28;35462:242;;35661:19;35628:17;:30;35646:11;35628:30;;;;;;;;;;;:52;;;;35462:242;35339:384;35169:569;35111:627;35785:7;35781:2;35766:27;;35775:4;35766:27;;;;;;;;;;;;35804:42;35825:4;35831:2;35835:7;35844:1;35804:20;:42::i;:::-;33160:2694;;;33029:2825;;;:::o;78526:197::-;2014:13;:11;:13::i;:::-;72572:21:::1;:19;:21::i;:::-;78615:10:::2;78639:7;:5;:7::i;:::-;78631:21;;78660;78631:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78614:72;;;78705:5;78697:14;;;;;;78575:148;72616:20:::1;:18;:20::i;:::-;78526:197::o:0;35950:193::-;36096:39;36113:4;36119:2;36123:7;36096:39;;;;;;;;;;;;:16;:39::i;:::-;35950:193;;;:::o;77166:103::-;2014:13;:11;:13::i;:::-;77254:3:::1;77239:12;:18;;;;;;:::i;:::-;;77166:103:::0;:::o;73778:28::-;;;;;;;;;;;;;:::o;73821:26::-;;;;;;;;;;;;;:::o;77017:93::-;2014:13;:11;:13::i;:::-;77095:3:::1;77085:7;:13;;;;;;:::i;:::-;;77017:93:::0;:::o;24292:152::-;24364:7;24407:27;24426:7;24407:18;:27::i;:::-;24384:52;;24292:152;;;:::o;77382:95::-;2014:13;:11;:13::i;:::-;77460:5:::1;77448:9;:17;;;;77382:95:::0;:::o;77562:98::-;2014:13;:11;:13::i;:::-;77642:6:::1;77629:10;:19;;;;77562:98:::0;:::o;19834:233::-;19906:7;19947:1;19930:19;;:5;:19;;;19926:60;;19958:28;;;;;;;;;;;;;;19926:60;13993:13;20004:18;:25;20023:5;20004:25;;;;;;;;;;;;;;;;:55;19997:62;;19834:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;77966:129::-;2014:13;:11;:13::i;:::-;78074:9:::1;78049:22;:34;;;;77966:129:::0;:::o;76859:75::-;2014:13;:11;:13::i;:::-;76916:6:::1;;;;;;;;;;;76915:7;76906:6;;:16;;;;;;;;;;;;;;;;;;76859:75::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;78210:117::-;2014:13;:11;:13::i;:::-;78306:9:::1;78287:16;:28;;;;78210:117:::0;:::o;73468:38::-;;;;:::o;23075:104::-;23131:13;23164:7;23157:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23075:104;:::o;75347:168::-;75412:11;74485:9;74471:23;;:10;:23;;;74467:53;;74503:17;;;;;;;;;;;;;;74467:53;74570:10;;74556:11;74539:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;74535:65;;;74589:11;;;;;;;;;;;;;;74535:65;74633:18;;74619:11;:32;74615:64;;;74660:19;;;;;;;;;;;;;;74615:64;74697:6;;;;;;;;;;;74694:34;;;74712:16;;;;;;;;;;;;;;74694:34;75445:11:::1;74874:22;;74860:11;74836:21;74846:10;74836:9;:21::i;:::-;:35;;;;:::i;:::-;:60;74833:95;;;74905:23;;;;;;;;;;;;;;74833:95;74961:1;74947:11;:15;:55;;;;74980:22;;74966:11;:36;74947:55;74943:87;;;75011:19;;;;;;;;;;;;;;74943:87;75100:11;75087:10;;:24;;;;:::i;:::-;75061:22;75071:11;75061:9;:22::i;:::-;:51;;;;:::i;:::-;75049:9;:63;75045:95;;;75122:18;;;;;;;;;;;;;;75045:95;75469:34:::2;75479:10;75491:11;75469:9;:34::i;:::-;74743:1:::1;75347:168:::0;;:::o;29948:234::-;30095:8;30043:18;:39;30062:19;:17;:19::i;:::-;30043:39;;;;;;;;;;;;;;;:49;30083:8;30043:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30155:8;30119:55;;30134:19;:17;:19::i;:::-;30119:55;;;30165:8;30119:55;;;;;;:::i;:::-;;;;;;;;29948:234;;:::o;73861:35::-;;;;:::o;77757:113::-;2014:13;:11;:13::i;:::-;77853:5:::1;77832:18;:26;;;;77757:113:::0;:::o;73683:35::-;;;;:::o;36741:407::-;36916:31;36929:4;36935:2;36939:7;36916:12;:31::i;:::-;36980:1;36962:2;:14;;;:19;36958:183;;37001:56;37032:4;37038:2;37042:7;37051:5;37001:30;:56::i;:::-;36996:145;;37085:40;;;;;;;;;;;;;;36996:145;36958:183;36741:407;;;;:::o;73411:42::-;;;;:::o;76503:224::-;2014:13;:11;:13::i;:::-;76594:6:::1;74485:9;74471:23;;:10;:23;;;74467:53;;74503:17;;;;;;;;;;;;;;74467:53;74570:10;;74556:11;74539:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;74535:65;;;74589:11;;;;;;;;;;;;;;74535:65;74633:18;;74619:11;:32;74615:64;;;74660:19;;;;;;;;;;;;;;74615:64;74697:6;;;;;;;;;;;74694:34;;;74712:16;;;;;;;;;;;;;;74694:34;76619:9:::2;76631:1;76619:13;;76615:101;76638:8;:15;76634:1;:19;76615:101;;;76672:30;76682:8;76691:1;76682:11;;;;;;;;:::i;:::-;;;;;;;;76695:6;76672:9;:30::i;:::-;76655:3;;;;;;;76615:101;;;;2038:1:::1;76503:224:::0;;:::o;78954:381::-;79028:13;79061:16;79069:7;79061;:16::i;:::-;79056:48;;79086:18;;;;;;;;;;;;;;79056:48;79132:28;79163:10;:8;:10::i;:::-;79132:41;;79222:1;79197:14;79191:28;:32;:132;;;;;;;;;;;;;;;;;79259:14;79275:18;:7;:16;:18::i;:::-;79295:12;79242:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79191:132;79184:139;;;78954:381;;;:::o;73639:28::-;;;;:::o;30339:164::-;30436:4;30460:18;:25;30479:5;30460:25;;;;;;;;;;;;;;;:35;30486:8;30460:35;;;;;;;;;;;;;;;;;;;;;;;;;30453:42;;30339:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;30761:282::-;30826:4;30882:7;30863:15;:13;:15::i;:::-;:26;;:66;;;;;30916:13;;30906:7;:23;30863:66;:153;;;;;31015:1;14769:8;30967:17;:26;30985:7;30967:26;;;;;;;;;;;;:44;:49;30863:153;30843:173;;30761:282;;;:::o;53069:105::-;53129:7;53156:10;53149:17;;53069:105;:::o;79394:107::-;79459:7;79488:1;79481:8;;79394:107;:::o;25447:1275::-;25514:7;25534:12;25549:7;25534:22;;25617:4;25598:15;:13;:15::i;:::-;:23;25594:1061;;25651:13;;25644:4;:20;25640:1015;;;25689:14;25706:17;:23;25724:4;25706:23;;;;;;;;;;;;25689:40;;25823:1;14769:8;25795:6;:24;:29;25791:845;;26460:113;26477:1;26467:6;:11;26460:113;;26520:17;:25;26538:6;;;;;;;26520:25;;;;;;;;;;;;26511:34;;26460:113;;;26606:6;26599:13;;;;;;25791:845;25666:989;25640:1015;25594:1061;26683:31;;;;;;;;;;;;;;25447:1275;;;;:::o;31924:485::-;32026:27;32055:23;32096:38;32137:15;:24;32153:7;32137:24;;;;;;;;;;;32096:65;;32314:18;32291:41;;32371:19;32365:26;32346:45;;32276:126;31924:485;;;:::o;31152:659::-;31301:11;31466:16;31459:5;31455:28;31446:37;;31626:16;31615:9;31611:32;31598:45;;31776:15;31765:9;31762:30;31754:5;31743:9;31740:20;31737:56;31727:66;;31152:659;;;;;:::o;37810:159::-;;;;;:::o;52378:311::-;52513:7;52533:16;15173:3;52559:19;:41;;52533:68;;15173:3;52627:31;52638:4;52644:2;52648:9;52627:10;:31::i;:::-;52619:40;;:62;;52612:69;;;52378:311;;;;;:::o;27270:450::-;27350:14;27518:16;27511:5;27507:28;27498:37;;27695:5;27681:11;27656:23;27652:41;27649:52;27642:5;27639:63;27629:73;;27270:450;;;;:::o;38634:158::-;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;72652:293::-;72054:1;72786:7;;:19;72778:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;72054:1;72919:7;:18;;;;72652:293::o;72953:213::-;72010:1;73136:7;:22;;;;72953:213::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;46901:112::-;46978:27;46988:2;46992:8;46978:27;;;;;;;;;;;;:9;:27::i;:::-;46901:112;;:::o;39232:716::-;39395:4;39441:2;39416:45;;;39462:19;:17;:19::i;:::-;39483:4;39489:7;39498:5;39416:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39412:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39716:1;39699:6;:13;:18;39695:235;;39745:40;;;;;;;;;;;;;;39695:235;39888:6;39882:13;39873:6;39869:2;39865:15;39858:38;39412:529;39585:54;;;39575:64;;;:6;:64;;;;39568:71;;;39232:716;;;;;;:::o;79581:114::-;79641:13;79676:7;79669:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79581:114;:::o;68333:716::-;68389:13;68440:14;68477:1;68457:17;68468:5;68457:10;:17::i;:::-;:21;68440:38;;68493:20;68527:6;68516:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68493:41;;68549:11;68678:6;68674:2;68670:15;68662:6;68658:28;68651:35;;68715:288;68722:4;68715:288;;;68747:5;;;;;;;;68889:8;68884:2;68877:5;68873:14;68868:30;68863:3;68855:44;68945:2;68936:11;;;;;;:::i;:::-;;;;;68979:1;68970:5;:10;68715:288;68966:21;68715:288;69024:6;69017:13;;;;;68333:716;;;:::o;52079:147::-;52216:6;52079:147;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;46128:689::-;46259:19;46265:2;46269:8;46259:5;:19::i;:::-;46338:1;46320:2;:14;;;:19;46316:483;;46360:11;46374:13;;46360:27;;46406:13;46428:8;46422:3;:14;46406:30;;46455:233;46486:62;46525:1;46529:2;46533:7;;;;;;46542:5;46486:30;:62::i;:::-;46481:167;;46584:40;;;;;;;;;;;;;;46481:167;46683:3;46675:5;:11;46455:233;;46770:3;46753:13;;:20;46749:34;;46775:8;;;46749:34;46341:458;;46316:483;46128:689;;;:::o;65199:922::-;65252:7;65272:14;65289:1;65272:18;;65339:6;65330:5;:15;65326:102;;65375:6;65366:15;;;;;;:::i;:::-;;;;;65410:2;65400:12;;;;65326:102;65455:6;65446:5;:15;65442:102;;65491:6;65482:15;;;;;;:::i;:::-;;;;;65526:2;65516:12;;;;65442:102;65571:6;65562:5;:15;65558:102;;65607:6;65598:15;;;;;;:::i;:::-;;;;;65642:2;65632:12;;;;65558:102;65687:5;65678;:14;65674:99;;65722:5;65713:14;;;;;;:::i;:::-;;;;;65756:1;65746:11;;;;65674:99;65800:5;65791;:14;65787:99;;65835:5;65826:14;;;;;;:::i;:::-;;;;;65869:1;65859:11;;;;65787:99;65913:5;65904;:14;65900:99;;65948:5;65939:14;;;;;;:::i;:::-;;;;;65982:1;65972:11;;;;65900:99;66026:5;66017;:14;66013:66;;66062:1;66052:11;;;;66013:66;66107:6;66100:13;;;65199:922;;;:::o;40410:2966::-;40483:20;40506:13;;40483:36;;40546:1;40534:8;:13;40530:44;;40556:18;;;;;;;;;;;;;;40530:44;40587:61;40617:1;40621:2;40625:12;40639:8;40587:21;:61::i;:::-;41131:1;14131:2;41101:1;:26;;41100:32;41088:8;:45;41062:18;:22;41081:2;41062:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41410:139;41447:2;41501:33;41524:1;41528:2;41532:1;41501:14;:33::i;:::-;41468:30;41489:8;41468:20;:30::i;:::-;:66;41410:18;:139::i;:::-;41376:17;:31;41394:12;41376:31;;;;;;;;;;;:173;;;;41566:16;41597:11;41626:8;41611:12;:23;41597:37;;42147:16;42143:2;42139:25;42127:37;;42519:12;42479:8;42438:1;42376:25;42317:1;42256;42229:335;42890:1;42876:12;42872:20;42830:346;42931:3;42922:7;42919:16;42830:346;;43149:7;43139:8;43136:1;43109:25;43106:1;43103;43098:59;42984:1;42975:7;42971:15;42960:26;;42830:346;;;42834:77;43221:1;43209:8;:13;43205:45;;43231:19;;;;;;;;;;;;;;43205:45;43283:3;43267:13;:19;;;;40836:2462;;43308:60;43337:1;43341:2;43345:12;43359:8;43308:20;:60::i;:::-;40472:2904;40410:2966;;:::o;27822:324::-;27892:14;28125:1;28115:8;28112:15;28086:24;28082:46;28072:56;;27822:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:180;6054:77;6051:1;6044:88;6151:4;6148:1;6141:15;6175:4;6172:1;6165:15;6192:281;6275:27;6297:4;6275:27;:::i;:::-;6267:6;6263:40;6405:6;6393:10;6390:22;6369:18;6357:10;6354:34;6351:62;6348:88;;;6416:18;;:::i;:::-;6348:88;6456:10;6452:2;6445:22;6235:238;6192:281;;:::o;6479:129::-;6513:6;6540:20;;:::i;:::-;6530:30;;6569:33;6597:4;6589:6;6569:33;:::i;:::-;6479:129;;;:::o;6614:308::-;6676:4;6766:18;6758:6;6755:30;6752:56;;;6788:18;;:::i;:::-;6752:56;6826:29;6848:6;6826:29;:::i;:::-;6818:37;;6910:4;6904;6900:15;6892:23;;6614:308;;;:::o;6928:148::-;7026:6;7021:3;7016;7003:30;7067:1;7058:6;7053:3;7049:16;7042:27;6928:148;;;:::o;7082:425::-;7160:5;7185:66;7201:49;7243:6;7201:49;:::i;:::-;7185:66;:::i;:::-;7176:75;;7274:6;7267:5;7260:21;7312:4;7305:5;7301:16;7350:3;7341:6;7336:3;7332:16;7329:25;7326:112;;;7357:79;;:::i;:::-;7326:112;7447:54;7494:6;7489:3;7484;7447:54;:::i;:::-;7166:341;7082:425;;;;;:::o;7527:340::-;7583:5;7632:3;7625:4;7617:6;7613:17;7609:27;7599:122;;7640:79;;:::i;:::-;7599:122;7757:6;7744:20;7782:79;7857:3;7849:6;7842:4;7834:6;7830:17;7782:79;:::i;:::-;7773:88;;7589:278;7527:340;;;;:::o;7873:509::-;7942:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:119;;;7997:79;;:::i;:::-;7959:119;8145:1;8134:9;8130:17;8117:31;8175:18;8167:6;8164:30;8161:117;;;8197:79;;:::i;:::-;8161:117;8302:63;8357:7;8348:6;8337:9;8333:22;8302:63;:::i;:::-;8292:73;;8088:287;7873:509;;;;:::o;8388:329::-;8447:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8388:329;;;;:::o;8723:116::-;8793:21;8808:5;8793:21;:::i;:::-;8786:5;8783:32;8773:60;;8829:1;8826;8819:12;8773:60;8723:116;:::o;8845:133::-;8888:5;8926:6;8913:20;8904:29;;8942:30;8966:5;8942:30;:::i;:::-;8845:133;;;;:::o;8984:468::-;9049:6;9057;9106:2;9094:9;9085:7;9081:23;9077:32;9074:119;;;9112:79;;:::i;:::-;9074:119;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:50;9427:7;9418:6;9407:9;9403:22;9385:50;:::i;:::-;9375:60;;9330:115;8984:468;;;;;:::o;9458:307::-;9519:4;9609:18;9601:6;9598:30;9595:56;;;9631:18;;:::i;:::-;9595:56;9669:29;9691:6;9669:29;:::i;:::-;9661:37;;9753:4;9747;9743:15;9735:23;;9458:307;;;:::o;9771:423::-;9848:5;9873:65;9889:48;9930:6;9889:48;:::i;:::-;9873:65;:::i;:::-;9864:74;;9961:6;9954:5;9947:21;9999:4;9992:5;9988:16;10037:3;10028:6;10023:3;10019:16;10016:25;10013:112;;;10044:79;;:::i;:::-;10013:112;10134:54;10181:6;10176:3;10171;10134:54;:::i;:::-;9854:340;9771:423;;;;;:::o;10213:338::-;10268:5;10317:3;10310:4;10302:6;10298:17;10294:27;10284:122;;10325:79;;:::i;:::-;10284:122;10442:6;10429:20;10467:78;10541:3;10533:6;10526:4;10518:6;10514:17;10467:78;:::i;:::-;10458:87;;10274:277;10213:338;;;;:::o;10557:943::-;10652:6;10660;10668;10676;10725:3;10713:9;10704:7;10700:23;10696:33;10693:120;;;10732:79;;:::i;:::-;10693:120;10852:1;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10823:117;10979:2;11005:53;11050:7;11041:6;11030:9;11026:22;11005:53;:::i;:::-;10995:63;;10950:118;11107:2;11133:53;11178:7;11169:6;11158:9;11154:22;11133:53;:::i;:::-;11123:63;;11078:118;11263:2;11252:9;11248:18;11235:32;11294:18;11286:6;11283:30;11280:117;;;11316:79;;:::i;:::-;11280:117;11421:62;11475:7;11466:6;11455:9;11451:22;11421:62;:::i;:::-;11411:72;;11206:287;10557:943;;;;;;;:::o;11506:311::-;11583:4;11673:18;11665:6;11662:30;11659:56;;;11695:18;;:::i;:::-;11659:56;11745:4;11737:6;11733:17;11725:25;;11805:4;11799;11795:15;11787:23;;11506:311;;;:::o;11823:117::-;11932:1;11929;11922:12;11963:710;12059:5;12084:81;12100:64;12157:6;12100:64;:::i;:::-;12084:81;:::i;:::-;12075:90;;12185:5;12214:6;12207:5;12200:21;12248:4;12241:5;12237:16;12230:23;;12301:4;12293:6;12289:17;12281:6;12277:30;12330:3;12322:6;12319:15;12316:122;;;12349:79;;:::i;:::-;12316:122;12464:6;12447:220;12481:6;12476:3;12473:15;12447:220;;;12556:3;12585:37;12618:3;12606:10;12585:37;:::i;:::-;12580:3;12573:50;12652:4;12647:3;12643:14;12636:21;;12523:144;12507:4;12502:3;12498:14;12491:21;;12447:220;;;12451:21;12065:608;;11963:710;;;;;:::o;12696:370::-;12767:5;12816:3;12809:4;12801:6;12797:17;12793:27;12783:122;;12824:79;;:::i;:::-;12783:122;12941:6;12928:20;12966:94;13056:3;13048:6;13041:4;13033:6;13029:17;12966:94;:::i;:::-;12957:103;;12773:293;12696:370;;;;:::o;13072:684::-;13165:6;13173;13222:2;13210:9;13201:7;13197:23;13193:32;13190:119;;;13228:79;;:::i;:::-;13190:119;13376:1;13365:9;13361:17;13348:31;13406:18;13398:6;13395:30;13392:117;;;13428:79;;:::i;:::-;13392:117;13533:78;13603:7;13594:6;13583:9;13579:22;13533:78;:::i;:::-;13523:88;;13319:302;13660:2;13686:53;13731:7;13722:6;13711:9;13707:22;13686:53;:::i;:::-;13676:63;;13631:118;13072:684;;;;;:::o;13762:474::-;13830:6;13838;13887:2;13875:9;13866:7;13862:23;13858:32;13855:119;;;13893:79;;:::i;:::-;13855:119;14013:1;14038:53;14083:7;14074:6;14063:9;14059:22;14038:53;:::i;:::-;14028:63;;13984:117;14140:2;14166:53;14211:7;14202:6;14191:9;14187:22;14166:53;:::i;:::-;14156:63;;14111:118;13762:474;;;;;:::o;14242:180::-;14290:77;14287:1;14280:88;14387:4;14384:1;14377:15;14411:4;14408:1;14401:15;14428:320;14472:6;14509:1;14503:4;14499:12;14489:22;;14556:1;14550:4;14546:12;14577:18;14567:81;;14633:4;14625:6;14621:17;14611:27;;14567:81;14695:2;14687:6;14684:14;14664:18;14661:38;14658:84;;14714:18;;:::i;:::-;14658:84;14479:269;14428:320;;;:::o;14754:180::-;14802:77;14799:1;14792:88;14899:4;14896:1;14889:15;14923:4;14920:1;14913:15;14940:191;14980:3;14999:20;15017:1;14999:20;:::i;:::-;14994:25;;15033:20;15051:1;15033:20;:::i;:::-;15028:25;;15076:1;15073;15069:9;15062:16;;15097:3;15094:1;15091:10;15088:36;;;15104:18;;:::i;:::-;15088:36;14940:191;;;;:::o;15137:194::-;15177:4;15197:20;15215:1;15197:20;:::i;:::-;15192:25;;15231:20;15249:1;15231:20;:::i;:::-;15226:25;;15275:1;15272;15268:9;15260:17;;15299:1;15293:4;15290:11;15287:37;;;15304:18;;:::i;:::-;15287:37;15137:194;;;;:::o;15337:410::-;15377:7;15400:20;15418:1;15400:20;:::i;:::-;15395:25;;15434:20;15452:1;15434:20;:::i;:::-;15429:25;;15489:1;15486;15482:9;15511:30;15529:11;15511:30;:::i;:::-;15500:41;;15690:1;15681:7;15677:15;15674:1;15671:22;15651:1;15644:9;15624:83;15601:139;;15720:18;;:::i;:::-;15601:139;15385:362;15337:410;;;;:::o;15753:147::-;15854:11;15891:3;15876:18;;15753:147;;;;:::o;15906:114::-;;:::o;16026:398::-;16185:3;16206:83;16287:1;16282:3;16206:83;:::i;:::-;16199:90;;16298:93;16387:3;16298:93;:::i;:::-;16416:1;16411:3;16407:11;16400:18;;16026:398;;;:::o;16430:379::-;16614:3;16636:147;16779:3;16636:147;:::i;:::-;16629:154;;16800:3;16793:10;;16430:379;;;:::o;16815:141::-;16864:4;16887:3;16879:11;;16910:3;16907:1;16900:14;16944:4;16941:1;16931:18;16923:26;;16815:141;;;:::o;16962:93::-;16999:6;17046:2;17041;17034:5;17030:14;17026:23;17016:33;;16962:93;;;:::o;17061:107::-;17105:8;17155:5;17149:4;17145:16;17124:37;;17061:107;;;;:::o;17174:393::-;17243:6;17293:1;17281:10;17277:18;17316:97;17346:66;17335:9;17316:97;:::i;:::-;17434:39;17464:8;17453:9;17434:39;:::i;:::-;17422:51;;17506:4;17502:9;17495:5;17491:21;17482:30;;17555:4;17545:8;17541:19;17534:5;17531:30;17521:40;;17250:317;;17174:393;;;;;:::o;17573:60::-;17601:3;17622:5;17615:12;;17573:60;;;:::o;17639:142::-;17689:9;17722:53;17740:34;17749:24;17767:5;17749:24;:::i;:::-;17740:34;:::i;:::-;17722:53;:::i;:::-;17709:66;;17639:142;;;:::o;17787:75::-;17830:3;17851:5;17844:12;;17787:75;;;:::o;17868:269::-;17978:39;18009:7;17978:39;:::i;:::-;18039:91;18088:41;18112:16;18088:41;:::i;:::-;18080:6;18073:4;18067:11;18039:91;:::i;:::-;18033:4;18026:105;17944:193;17868:269;;;:::o;18143:73::-;18188:3;18209:1;18202:8;;18143:73;:::o;18222:189::-;18299:32;;:::i;:::-;18340:65;18398:6;18390;18384:4;18340:65;:::i;:::-;18275:136;18222:189;;:::o;18417:186::-;18477:120;18494:3;18487:5;18484:14;18477:120;;;18548:39;18585:1;18578:5;18548:39;:::i;:::-;18521:1;18514:5;18510:13;18501:22;;18477:120;;;18417:186;;:::o;18609:543::-;18710:2;18705:3;18702:11;18699:446;;;18744:38;18776:5;18744:38;:::i;:::-;18828:29;18846:10;18828:29;:::i;:::-;18818:8;18814:44;19011:2;18999:10;18996:18;18993:49;;;19032:8;19017:23;;18993:49;19055:80;19111:22;19129:3;19111:22;:::i;:::-;19101:8;19097:37;19084:11;19055:80;:::i;:::-;18714:431;;18699:446;18609:543;;;:::o;19158:117::-;19212:8;19262:5;19256:4;19252:16;19231:37;;19158:117;;;;:::o;19281:169::-;19325:6;19358:51;19406:1;19402:6;19394:5;19391:1;19387:13;19358:51;:::i;:::-;19354:56;19439:4;19433;19429:15;19419:25;;19332:118;19281:169;;;;:::o;19455:295::-;19531:4;19677:29;19702:3;19696:4;19677:29;:::i;:::-;19669:37;;19739:3;19736:1;19732:11;19726:4;19723:21;19715:29;;19455:295;;;;:::o;19755:1395::-;19872:37;19905:3;19872:37;:::i;:::-;19974:18;19966:6;19963:30;19960:56;;;19996:18;;:::i;:::-;19960:56;20040:38;20072:4;20066:11;20040:38;:::i;:::-;20125:67;20185:6;20177;20171:4;20125:67;:::i;:::-;20219:1;20243:4;20230:17;;20275:2;20267:6;20264:14;20292:1;20287:618;;;;20949:1;20966:6;20963:77;;;21015:9;21010:3;21006:19;21000:26;20991:35;;20963:77;21066:67;21126:6;21119:5;21066:67;:::i;:::-;21060:4;21053:81;20922:222;20257:887;;20287:618;20339:4;20335:9;20327:6;20323:22;20373:37;20405:4;20373:37;:::i;:::-;20432:1;20446:208;20460:7;20457:1;20454:14;20446:208;;;20539:9;20534:3;20530:19;20524:26;20516:6;20509:42;20590:1;20582:6;20578:14;20568:24;;20637:2;20626:9;20622:18;20609:31;;20483:4;20480:1;20476:12;20471:17;;20446:208;;;20682:6;20673:7;20670:19;20667:179;;;20740:9;20735:3;20731:19;20725:26;20783:48;20825:4;20817:6;20813:17;20802:9;20783:48;:::i;:::-;20775:6;20768:64;20690:156;20667:179;20892:1;20888;20880:6;20876:14;20872:22;20866:4;20859:36;20294:611;;;20257:887;;19847:1303;;;19755:1395;;:::o;21156:180::-;21204:77;21201:1;21194:88;21301:4;21298:1;21291:15;21325:4;21322:1;21315:15;21342:148;21444:11;21481:3;21466:18;;21342:148;;;;:::o;21496:390::-;21602:3;21630:39;21663:5;21630:39;:::i;:::-;21685:89;21767:6;21762:3;21685:89;:::i;:::-;21678:96;;21783:65;21841:6;21836:3;21829:4;21822:5;21818:16;21783:65;:::i;:::-;21873:6;21868:3;21864:16;21857:23;;21606:280;21496:390;;;;:::o;21916:874::-;22019:3;22056:5;22050:12;22085:36;22111:9;22085:36;:::i;:::-;22137:89;22219:6;22214:3;22137:89;:::i;:::-;22130:96;;22257:1;22246:9;22242:17;22273:1;22268:166;;;;22448:1;22443:341;;;;22235:549;;22268:166;22352:4;22348:9;22337;22333:25;22328:3;22321:38;22414:6;22407:14;22400:22;22392:6;22388:35;22383:3;22379:45;22372:52;;22268:166;;22443:341;22510:38;22542:5;22510:38;:::i;:::-;22570:1;22584:154;22598:6;22595:1;22592:13;22584:154;;;22672:7;22666:14;22662:1;22657:3;22653:11;22646:35;22722:1;22713:7;22709:15;22698:26;;22620:4;22617:1;22613:12;22608:17;;22584:154;;;22767:6;22762:3;22758:16;22751:23;;22450:334;;22235:549;;22023:767;;21916:874;;;;:::o;22796:589::-;23021:3;23043:95;23134:3;23125:6;23043:95;:::i;:::-;23036:102;;23155:95;23246:3;23237:6;23155:95;:::i;:::-;23148:102;;23267:92;23355:3;23346:6;23267:92;:::i;:::-;23260:99;;23376:3;23369:10;;22796:589;;;;;;:::o;23391:225::-;23531:34;23527:1;23519:6;23515:14;23508:58;23600:8;23595:2;23587:6;23583:15;23576:33;23391:225;:::o;23622:366::-;23764:3;23785:67;23849:2;23844:3;23785:67;:::i;:::-;23778:74;;23861:93;23950:3;23861:93;:::i;:::-;23979:2;23974:3;23970:12;23963:19;;23622:366;;;:::o;23994:419::-;24160:4;24198:2;24187:9;24183:18;24175:26;;24247:9;24241:4;24237:20;24233:1;24222:9;24218:17;24211:47;24275:131;24401:4;24275:131;:::i;:::-;24267:139;;23994:419;;;:::o;24419:182::-;24559:34;24555:1;24547:6;24543:14;24536:58;24419:182;:::o;24607:366::-;24749:3;24770:67;24834:2;24829:3;24770:67;:::i;:::-;24763:74;;24846:93;24935:3;24846:93;:::i;:::-;24964:2;24959:3;24955:12;24948:19;;24607:366;;;:::o;24979:419::-;25145:4;25183:2;25172:9;25168:18;25160:26;;25232:9;25226:4;25222:20;25218:1;25207:9;25203:17;25196:47;25260:131;25386:4;25260:131;:::i;:::-;25252:139;;24979:419;;;:::o;25404:181::-;25544:33;25540:1;25532:6;25528:14;25521:57;25404:181;:::o;25591:366::-;25733:3;25754:67;25818:2;25813:3;25754:67;:::i;:::-;25747:74;;25830:93;25919:3;25830:93;:::i;:::-;25948:2;25943:3;25939:12;25932:19;;25591:366;;;:::o;25963:419::-;26129:4;26167:2;26156:9;26152:18;26144:26;;26216:9;26210:4;26206:20;26202:1;26191:9;26187:17;26180:47;26244:131;26370:4;26244:131;:::i;:::-;26236:139;;25963:419;;;:::o;26388:98::-;26439:6;26473:5;26467:12;26457:22;;26388:98;;;:::o;26492:168::-;26575:11;26609:6;26604:3;26597:19;26649:4;26644:3;26640:14;26625:29;;26492:168;;;;:::o;26666:373::-;26752:3;26780:38;26812:5;26780:38;:::i;:::-;26834:70;26897:6;26892:3;26834:70;:::i;:::-;26827:77;;26913:65;26971:6;26966:3;26959:4;26952:5;26948:16;26913:65;:::i;:::-;27003:29;27025:6;27003:29;:::i;:::-;26998:3;26994:39;26987:46;;26756:283;26666:373;;;;:::o;27045:640::-;27240:4;27278:3;27267:9;27263:19;27255:27;;27292:71;27360:1;27349:9;27345:17;27336:6;27292:71;:::i;:::-;27373:72;27441:2;27430:9;27426:18;27417:6;27373:72;:::i;:::-;27455;27523:2;27512:9;27508:18;27499:6;27455:72;:::i;:::-;27574:9;27568:4;27564:20;27559:2;27548:9;27544:18;27537:48;27602:76;27673:4;27664:6;27602:76;:::i;:::-;27594:84;;27045:640;;;;;;;:::o;27691:141::-;27747:5;27778:6;27772:13;27763:22;;27794:32;27820:5;27794:32;:::i;:::-;27691:141;;;;:::o;27838:349::-;27907:6;27956:2;27944:9;27935:7;27931:23;27927:32;27924:119;;;27962:79;;:::i;:::-;27924:119;28082:1;28107:63;28162:7;28153:6;28142:9;28138:22;28107:63;:::i;:::-;28097:73;;28053:127;27838:349;;;;:::o;28193:180::-;28241:77;28238:1;28231:88;28338:4;28335:1;28328:15;28362:4;28359:1;28352:15
Swarm Source
ipfs://24e16d4c0e8928a5557e36a1c34c2f86d26f6a3d3839c9e3c18e2d507f0d4b4e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.