ERC-721
Overview
Max Total Supply
2,222 WINNER
Holders
2,188
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WINNERLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ItsFrance
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-18 */ // Sources flattened with hardhat v2.9.9 https://hardhat.org // File erc721a/contracts/[email protected] // SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 ) external; /** * @dev Transfers `tokenId` token 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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File erc721a/contracts/[email protected] // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File @openzeppelin/contracts/utils/[email protected] // 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/[email protected] // 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 @openzeppelin/contracts/security/[email protected] // 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 @openzeppelin/contracts/utils/math/[email protected] // 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/[email protected] // 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 operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File contracts/france.sol pragma solidity >=0.8.9 <0.9.0; contract ItsFrance is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer { using Strings for uint256; mapping (address => uint256) public walletTokens; uint256 public price = 0 ether; uint256 public maxTokensPerTx = 1; uint256 public freeTokensPerWallet = 1; uint256 public limitTokensPerWallet = 1; uint256 public maxSupply = 2222; bool public openForMint = true; string public baseURI = "https://purple-electoral-penguin-724.mypinata.cloud/ipfs/QmZ9vqPu7TQSZyfqAyx9Sej7FeQAWxPzesxgt5J8EB37W8/"; constructor() ERC721A("It's France", "WINNER") DefaultOperatorFilterer(){} function mint(uint256 amount) external payable { require(amount > 0, "Invalid mint amount!"); require(totalSupply() + amount <= maxSupply, "Max supply exceeded!"); if (msg.sender != owner()) { require(openForMint, "Public mint is not open yet"); require(amount <= maxTokensPerTx, "Exceeded max number tokens per tx"); require(walletTokens[msg.sender] + amount <= limitTokensPerWallet, 'Exceed limit tokens per wallet!'); require(tx.origin == msg.sender, "The caller is another contract"); uint256 tokensAlreadyMint = walletTokens[msg.sender]; uint256 remainFree = (freeTokensPerWallet > tokensAlreadyMint ? (freeTokensPerWallet - tokensAlreadyMint) : 0); require( msg.value >= (amount - remainFree) * price, "Insufficient funds!" ); walletTokens[msg.sender] += amount; } _mint(msg.sender, amount); } function devMint(uint256 _mintAmount, address _receiver) public onlyOwner { require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!" ); _mint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setMaxTokensPerTx(uint256 _maxTokensPerTx) external onlyOwner { maxTokensPerTx = _maxTokensPerTx; } function setMaxTokensPerWallet(uint256 _maxTokensPerWallet) external onlyOwner { limitTokensPerWallet = _maxTokensPerWallet; } function setTokenPrice(uint256 _price) public onlyOwner { price = _price; } function setFreeTokensPerWallet(uint256 amount) public onlyOwner { freeTokensPerWallet = amount; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = baseURI; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _tokenId.toString(), ".json" ) ) : ""; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function setSaleForPublic(bool _state) public onlyOwner { openForMint = _state; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeTokensPerWallet","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":"limitTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openForMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerWallet","type":"uint256"}],"name":"setMaxTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleForPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b556001600c556001600d556001600e556108ae600f556001601060006101000a81548160ff0219169083151502179055506040518060a001604052806068815260200162003fb460689139601190805190602001906200006a92919062000442565b503480156200007857600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f49742773204672616e63650000000000000000000000000000000000000000008152506040518060400160405280600681526020017f57494e4e4552000000000000000000000000000000000000000000000000000081525081600290805190602001906200011492919062000442565b5080600390805190602001906200012d92919062000442565b506200013e6200036b60201b60201c565b6000819055505050620001666200015a6200037460201b60201c565b6200037c60201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200036357801562000229576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ef92919062000537565b600060405180830381600087803b1580156200020a57600080fd5b505af11580156200021f573d6000803e3d6000fd5b5050505062000362565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002e3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002a992919062000537565b600060405180830381600087803b158015620002c457600080fd5b505af1158015620002d9573d6000803e3d6000fd5b5050505062000361565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200032c919062000564565b600060405180830381600087803b1580156200034757600080fd5b505af11580156200035c573d6000803e3d6000fd5b505050505b5b5b5050620005e5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200045090620005b0565b90600052602060002090601f016020900481019282620004745760008555620004c0565b82601f106200048f57805160ff1916838001178555620004c0565b82800160010185558215620004c0579182015b82811115620004bf578251825591602001919060010190620004a2565b5b509050620004cf9190620004d3565b5090565b5b80821115620004ee576000816000905550600101620004d4565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200051f82620004f2565b9050919050565b620005318162000512565b82525050565b60006040820190506200054e600083018562000526565b6200055d602083018462000526565b9392505050565b60006020820190506200057b600083018462000526565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005c957607f821691505b602082108103620005df57620005de62000581565b5b50919050565b6139bf80620005f56000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d5abeb0114610747578063e985e9c514610772578063f2fde38b146107af578063f9992803146107d857610204565b8063a22cb46514610666578063aac5d69f1461068f578063b88d4fde146106b8578063b9bed05e146106e157610204565b8063720f9cc9116100e7578063720f9cc9146105a05780638da5cb5b146105c957806395d89b41146105f4578063a035b1fe1461061f578063a0712d681461064a57610204565b80636c0360eb146104f85780636f8b44b01461052357806370a082311461054c578063715018a61461058957610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104155780635e307a481461043e5780636352211e14610469578063648e04ac146104a65780636a61e5fc146104cf57610204565b80633ccfd60b1461037f57806342842e0e146103965780634429eda7146103bf5780634caf8c67146103ea57610204565b806318160ddd116101d757806318160ddd146102d7578063211272311461030257806323b872dd1461032d5780632d1a12f61461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906129d8565b610815565b60405161023d9190612a20565b60405180910390f35b34801561025257600080fd5b5061025b6108a7565b6040516102689190612ad4565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612b2c565b610939565b6040516102a59190612b9a565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612be1565b6109b5565b005b3480156102e357600080fd5b506102ec610af6565b6040516102f99190612c30565b60405180910390f35b34801561030e57600080fd5b50610317610b0d565b6040516103249190612c30565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612c4b565b610b13565b005b34801561036257600080fd5b5061037d60048036038101906103789190612c9e565b610cf5565b005b34801561038b57600080fd5b50610394610d62565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190612c4b565b610dfa565b005b3480156103cb57600080fd5b506103d4610fdc565b6040516103e19190612a20565b60405180910390f35b3480156103f657600080fd5b506103ff610fef565b60405161040c9190612c30565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612e13565b610ff5565b005b34801561044a57600080fd5b50610453611017565b6040516104609190612c30565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612b2c565b61101d565b60405161049d9190612b9a565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612b2c565b61102f565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612b2c565b611041565b005b34801561050457600080fd5b5061050d611053565b60405161051a9190612ad4565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190612b2c565b6110e1565b005b34801561055857600080fd5b50610573600480360381019061056e9190612e5c565b6110f3565b6040516105809190612c30565b60405180910390f35b34801561059557600080fd5b5061059e6111ab565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190612eb5565b6111bf565b005b3480156105d557600080fd5b506105de6111e4565b6040516105eb9190612b9a565b60405180910390f35b34801561060057600080fd5b5061060961120e565b6040516106169190612ad4565b60405180910390f35b34801561062b57600080fd5b506106346112a0565b6040516106419190612c30565b60405180910390f35b610664600480360381019061065f9190612b2c565b6112a6565b005b34801561067257600080fd5b5061068d60048036038101906106889190612ee2565b611633565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612b2c565b6117aa565b005b3480156106c457600080fd5b506106df60048036038101906106da9190612fc3565b6117bc565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612b2c565b6119a1565b005b34801561071657600080fd5b50610731600480360381019061072c9190612b2c565b6119b3565b60405161073e9190612ad4565b60405180910390f35b34801561075357600080fd5b5061075c611add565b6040516107699190612c30565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613046565b611ae3565b6040516107a69190612a20565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612e5c565b611b77565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190612e5c565b611bfa565b60405161080c9190612c30565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108b6906130b5565b80601f01602080910402602001604051908101604052809291908181526020018280546108e2906130b5565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b600061094482611c12565b61097a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c08261101d565b90508073ffffffffffffffffffffffffffffffffffffffff166109e1611c71565b73ffffffffffffffffffffffffffffffffffffffff1614610a4457610a0d81610a08611c71565b611ae3565b610a43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b00611c79565b6001546000540303905090565b600e5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ce3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b8557610b80848484611c82565b610cef565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bce9291906130e6565b602060405180830381865afa158015610beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0f9190613124565b8015610ca157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610c5f9291906130e6565b602060405180830381865afa158015610c7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca09190613124565b5b610ce257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cd99190612b9a565b60405180910390fd5b5b610cee848484611c82565b5b50505050565b610cfd611fa4565b600f5482610d09610af6565b610d139190613180565b1115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613222565b60405180910390fd5b610d5e8183612022565b5050565b610d6a611fa4565b610d726121f4565b6000610d7c6111e4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d9f90613273565b60006040518083038185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b5050905080610def57600080fd5b50610df8612243565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610fca573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6c57610e6784848461224d565b610fd6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610eb59291906130e6565b602060405180830381865afa158015610ed2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef69190613124565b8015610f8857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f469291906130e6565b602060405180830381865afa158015610f63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f879190613124565b5b610fc957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fc09190612b9a565b60405180910390fd5b5b610fd584848461224d565b5b50505050565b601060009054906101000a900460ff1681565b600d5481565b610ffd611fa4565b80601190805190602001906110139291906128c9565b5050565b600c5481565b60006110288261226d565b9050919050565b611037611fa4565b80600d8190555050565b611049611fa4565b80600b8190555050565b60118054611060906130b5565b80601f016020809104026020016040519081016040528092919081815260200182805461108c906130b5565b80156110d95780601f106110ae576101008083540402835291602001916110d9565b820191906000526020600020905b8154815290600101906020018083116110bc57829003601f168201915b505050505081565b6110e9611fa4565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361115a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b3611fa4565b6111bd6000612339565b565b6111c7611fa4565b80601060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461121d906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611249906130b5565b80156112965780601f1061126b57610100808354040283529160200191611296565b820191906000526020600020905b81548152906001019060200180831161127957829003601f168201915b5050505050905090565b600b5481565b600081116112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e0906132d4565b60405180910390fd5b600f54816112f5610af6565b6112ff9190613180565b1115611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613222565b60405180910390fd5b6113486111e4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461162657601060009054906101000a900460ff166113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613340565b60405180910390fd5b600c5481111561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906133d2565b60405180910390fd5b600e5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c9190613180565b111561149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114949061343e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461150b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611502906134aa565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081600d5411611561576000611570565b81600d5461156f91906134ca565b5b9050600b54818461158191906134ca565b61158b91906134fe565b3410156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906135a4565b60405180910390fd5b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161c9190613180565b9250508190555050505b6116303382612022565b50565b61163b611c71565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361169f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116ac611c71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611759611c71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161179e9190612a20565b60405180910390a35050565b6117b2611fa4565b80600e8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561198d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361182f5761182a858585856123ff565b61199a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016118789291906130e6565b602060405180830381865afa158015611895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b99190613124565b801561194b57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016119099291906130e6565b602060405180830381865afa158015611926573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194a9190613124565b5b61198c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016119839190612b9a565b60405180910390fd5b5b611999858585856123ff565b5b5050505050565b6119a9611fa4565b80600c8190555050565b60606119be82611c12565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613636565b60405180910390fd5b600060118054611a0c906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a38906130b5565b8015611a855780601f10611a5a57610100808354040283529160200191611a85565b820191906000526020600020905b815481529060010190602001808311611a6857829003601f168201915b505050505090506000815111611aaa5760405180602001604052806000815250611ad5565b80611ab484612472565b604051602001611ac59291906136de565b6040516020818303038152906040525b915050919050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b7f611fa4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be59061377f565b60405180910390fd5b611bf781612339565b50565b600a6020528060005260406000206000915090505481565b600081611c1d611c79565b11158015611c2c575060005482105b8015611c6a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000611c8d8261226d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cf4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611d0084612540565b91509150611d168187611d11611c71565b612562565b611d6257611d2b86611d26611c71565b611ae3565b611d61576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611dc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd586868660016125a6565b8015611de057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611eae85611e8a8888876125ac565b7c0200000000000000000000000000000000000000000000000000000000176125d4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f345760006001850190506000600460008381526020019081526020016000205403611f32576000548114611f31578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f9c86868660016125ff565b505050505050565b611fac612605565b73ffffffffffffffffffffffffffffffffffffffff16611fca6111e4565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906137eb565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361208e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036120c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d560008483856125a6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061214c8361213d60008660006125ac565b6121468561260d565b176125d4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612170578060008190555050506121ef60008483856125ff565b505050565b600260095403612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223090613857565b60405180910390fd5b6002600981905550565b6001600981905550565b612268838383604051806020016040528060008152506117bc565b505050565b6000808290508061227c611c79565b11612302576000548110156123015760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036122ff575b600081036122f55760046000836001900393508381526020019081526020016000205490506122cb565b8092505050612334565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61240a848484610b13565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461246c576124358484848461261d565b61246b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600060016124818461276d565b01905060008167ffffffffffffffff8111156124a05761249f612ce8565b5b6040519080825280601f01601f1916602001820160405280156124d25781602001600182028036833780820191505090505b509050600082602001820190505b600115612535578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161252957612528613877565b5b049450600085036124e0575b819350505050919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125c38686846128c0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612643611c71565b8786866040518563ffffffff1660e01b815260040161266594939291906138fb565b6020604051808303816000875af19250505080156126a157506040513d601f19601f8201168201806040525081019061269e919061395c565b60015b61271a573d80600081146126d1576040519150601f19603f3d011682016040523d82523d6000602084013e6126d6565b606091505b506000815103612712576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106127cb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816127c1576127c0613877565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612808576d04ee2d6d415b85acef810000000083816127fe576127fd613877565b5b0492506020810190505b662386f26fc10000831061283757662386f26fc10000838161282d5761282c613877565b5b0492506010810190505b6305f5e1008310612860576305f5e100838161285657612855613877565b5b0492506008810190505b612710831061288557612710838161287b5761287a613877565b5b0492506004810190505b606483106128a8576064838161289e5761289d613877565b5b0492506002810190505b600a83106128b7576001810190505b80915050919050565b60009392505050565b8280546128d5906130b5565b90600052602060002090601f0160209004810192826128f7576000855561293e565b82601f1061291057805160ff191683800117855561293e565b8280016001018555821561293e579182015b8281111561293d578251825591602001919060010190612922565b5b50905061294b919061294f565b5090565b5b80821115612968576000816000905550600101612950565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b581612980565b81146129c057600080fd5b50565b6000813590506129d2816129ac565b92915050565b6000602082840312156129ee576129ed612976565b5b60006129fc848285016129c3565b91505092915050565b60008115159050919050565b612a1a81612a05565b82525050565b6000602082019050612a356000830184612a11565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a75578082015181840152602081019050612a5a565b83811115612a84576000848401525b50505050565b6000601f19601f8301169050919050565b6000612aa682612a3b565b612ab08185612a46565b9350612ac0818560208601612a57565b612ac981612a8a565b840191505092915050565b60006020820190508181036000830152612aee8184612a9b565b905092915050565b6000819050919050565b612b0981612af6565b8114612b1457600080fd5b50565b600081359050612b2681612b00565b92915050565b600060208284031215612b4257612b41612976565b5b6000612b5084828501612b17565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8482612b59565b9050919050565b612b9481612b79565b82525050565b6000602082019050612baf6000830184612b8b565b92915050565b612bbe81612b79565b8114612bc957600080fd5b50565b600081359050612bdb81612bb5565b92915050565b60008060408385031215612bf857612bf7612976565b5b6000612c0685828601612bcc565b9250506020612c1785828601612b17565b9150509250929050565b612c2a81612af6565b82525050565b6000602082019050612c456000830184612c21565b92915050565b600080600060608486031215612c6457612c63612976565b5b6000612c7286828701612bcc565b9350506020612c8386828701612bcc565b9250506040612c9486828701612b17565b9150509250925092565b60008060408385031215612cb557612cb4612976565b5b6000612cc385828601612b17565b9250506020612cd485828601612bcc565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d2082612a8a565b810181811067ffffffffffffffff82111715612d3f57612d3e612ce8565b5b80604052505050565b6000612d5261296c565b9050612d5e8282612d17565b919050565b600067ffffffffffffffff821115612d7e57612d7d612ce8565b5b612d8782612a8a565b9050602081019050919050565b82818337600083830152505050565b6000612db6612db184612d63565b612d48565b905082815260208101848484011115612dd257612dd1612ce3565b5b612ddd848285612d94565b509392505050565b600082601f830112612dfa57612df9612cde565b5b8135612e0a848260208601612da3565b91505092915050565b600060208284031215612e2957612e28612976565b5b600082013567ffffffffffffffff811115612e4757612e4661297b565b5b612e5384828501612de5565b91505092915050565b600060208284031215612e7257612e71612976565b5b6000612e8084828501612bcc565b91505092915050565b612e9281612a05565b8114612e9d57600080fd5b50565b600081359050612eaf81612e89565b92915050565b600060208284031215612ecb57612eca612976565b5b6000612ed984828501612ea0565b91505092915050565b60008060408385031215612ef957612ef8612976565b5b6000612f0785828601612bcc565b9250506020612f1885828601612ea0565b9150509250929050565b600067ffffffffffffffff821115612f3d57612f3c612ce8565b5b612f4682612a8a565b9050602081019050919050565b6000612f66612f6184612f22565b612d48565b905082815260208101848484011115612f8257612f81612ce3565b5b612f8d848285612d94565b509392505050565b600082601f830112612faa57612fa9612cde565b5b8135612fba848260208601612f53565b91505092915050565b60008060008060808587031215612fdd57612fdc612976565b5b6000612feb87828801612bcc565b9450506020612ffc87828801612bcc565b935050604061300d87828801612b17565b925050606085013567ffffffffffffffff81111561302e5761302d61297b565b5b61303a87828801612f95565b91505092959194509250565b6000806040838503121561305d5761305c612976565b5b600061306b85828601612bcc565b925050602061307c85828601612bcc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130cd57607f821691505b6020821081036130e0576130df613086565b5b50919050565b60006040820190506130fb6000830185612b8b565b6131086020830184612b8b565b9392505050565b60008151905061311e81612e89565b92915050565b60006020828403121561313a57613139612976565b5b60006131488482850161310f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318b82612af6565b915061319683612af6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131cb576131ca613151565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061320c601483612a46565b9150613217826131d6565b602082019050919050565b6000602082019050818103600083015261323b816131ff565b9050919050565b600081905092915050565b50565b600061325d600083613242565b91506132688261324d565b600082019050919050565b600061327e82613250565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006132be601483612a46565b91506132c982613288565b602082019050919050565b600060208201905081810360008301526132ed816132b1565b9050919050565b7f5075626c6963206d696e74206973206e6f74206f70656e207965740000000000600082015250565b600061332a601b83612a46565b9150613335826132f4565b602082019050919050565b600060208201905081810360008301526133598161331d565b9050919050565b7f4578636565646564206d6178206e756d62657220746f6b656e7320706572207460008201527f7800000000000000000000000000000000000000000000000000000000000000602082015250565b60006133bc602183612a46565b91506133c782613360565b604082019050919050565b600060208201905081810360008301526133eb816133af565b9050919050565b7f457863656564206c696d697420746f6b656e73207065722077616c6c65742100600082015250565b6000613428601f83612a46565b9150613433826133f2565b602082019050919050565b600060208201905081810360008301526134578161341b565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613494601e83612a46565b915061349f8261345e565b602082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b60006134d582612af6565b91506134e083612af6565b9250828210156134f3576134f2613151565b5b828203905092915050565b600061350982612af6565b915061351483612af6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354d5761354c613151565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061358e601383612a46565b915061359982613558565b602082019050919050565b600060208201905081810360008301526135bd81613581565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613620602f83612a46565b915061362b826135c4565b604082019050919050565b6000602082019050818103600083015261364f81613613565b9050919050565b600081905092915050565b600061366c82612a3b565b6136768185613656565b9350613686818560208601612a57565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006136c8600583613656565b91506136d382613692565b600582019050919050565b60006136ea8285613661565b91506136f68284613661565b9150613701826136bb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613769602683612a46565b91506137748261370d565b604082019050919050565b600060208201905081810360008301526137988161375c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137d5602083612a46565b91506137e08261379f565b602082019050919050565b60006020820190508181036000830152613804816137c8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613841601f83612a46565b915061384c8261380b565b602082019050919050565b6000602082019050818103600083015261387081613834565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006138cd826138a6565b6138d781856138b1565b93506138e7818560208601612a57565b6138f081612a8a565b840191505092915050565b60006080820190506139106000830187612b8b565b61391d6020830186612b8b565b61392a6040830185612c21565b818103606083015261393c81846138c2565b905095945050505050565b600081519050613956816129ac565b92915050565b60006020828403121561397257613971612976565b5b600061398084828501613947565b9150509291505056fea2646970667358221220e9ad968aa6efb5ada215c6acd4138802dad2943900e07097822a2a0881d6ddb664736f6c634300080e003368747470733a2f2f707572706c652d656c6563746f72616c2d70656e6775696e2d3732342e6d7970696e6174612e636c6f75642f697066732f516d5a3976715075375451535a7966714179783953656a37466551415778507a6573786774354a384542333757382f
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d5abeb0114610747578063e985e9c514610772578063f2fde38b146107af578063f9992803146107d857610204565b8063a22cb46514610666578063aac5d69f1461068f578063b88d4fde146106b8578063b9bed05e146106e157610204565b8063720f9cc9116100e7578063720f9cc9146105a05780638da5cb5b146105c957806395d89b41146105f4578063a035b1fe1461061f578063a0712d681461064a57610204565b80636c0360eb146104f85780636f8b44b01461052357806370a082311461054c578063715018a61461058957610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104155780635e307a481461043e5780636352211e14610469578063648e04ac146104a65780636a61e5fc146104cf57610204565b80633ccfd60b1461037f57806342842e0e146103965780634429eda7146103bf5780634caf8c67146103ea57610204565b806318160ddd116101d757806318160ddd146102d7578063211272311461030257806323b872dd1461032d5780632d1a12f61461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906129d8565b610815565b60405161023d9190612a20565b60405180910390f35b34801561025257600080fd5b5061025b6108a7565b6040516102689190612ad4565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612b2c565b610939565b6040516102a59190612b9a565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612be1565b6109b5565b005b3480156102e357600080fd5b506102ec610af6565b6040516102f99190612c30565b60405180910390f35b34801561030e57600080fd5b50610317610b0d565b6040516103249190612c30565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612c4b565b610b13565b005b34801561036257600080fd5b5061037d60048036038101906103789190612c9e565b610cf5565b005b34801561038b57600080fd5b50610394610d62565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190612c4b565b610dfa565b005b3480156103cb57600080fd5b506103d4610fdc565b6040516103e19190612a20565b60405180910390f35b3480156103f657600080fd5b506103ff610fef565b60405161040c9190612c30565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612e13565b610ff5565b005b34801561044a57600080fd5b50610453611017565b6040516104609190612c30565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612b2c565b61101d565b60405161049d9190612b9a565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612b2c565b61102f565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612b2c565b611041565b005b34801561050457600080fd5b5061050d611053565b60405161051a9190612ad4565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190612b2c565b6110e1565b005b34801561055857600080fd5b50610573600480360381019061056e9190612e5c565b6110f3565b6040516105809190612c30565b60405180910390f35b34801561059557600080fd5b5061059e6111ab565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190612eb5565b6111bf565b005b3480156105d557600080fd5b506105de6111e4565b6040516105eb9190612b9a565b60405180910390f35b34801561060057600080fd5b5061060961120e565b6040516106169190612ad4565b60405180910390f35b34801561062b57600080fd5b506106346112a0565b6040516106419190612c30565b60405180910390f35b610664600480360381019061065f9190612b2c565b6112a6565b005b34801561067257600080fd5b5061068d60048036038101906106889190612ee2565b611633565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612b2c565b6117aa565b005b3480156106c457600080fd5b506106df60048036038101906106da9190612fc3565b6117bc565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612b2c565b6119a1565b005b34801561071657600080fd5b50610731600480360381019061072c9190612b2c565b6119b3565b60405161073e9190612ad4565b60405180910390f35b34801561075357600080fd5b5061075c611add565b6040516107699190612c30565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613046565b611ae3565b6040516107a69190612a20565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612e5c565b611b77565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190612e5c565b611bfa565b60405161080c9190612c30565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108b6906130b5565b80601f01602080910402602001604051908101604052809291908181526020018280546108e2906130b5565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b600061094482611c12565b61097a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c08261101d565b90508073ffffffffffffffffffffffffffffffffffffffff166109e1611c71565b73ffffffffffffffffffffffffffffffffffffffff1614610a4457610a0d81610a08611c71565b611ae3565b610a43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b00611c79565b6001546000540303905090565b600e5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ce3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b8557610b80848484611c82565b610cef565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bce9291906130e6565b602060405180830381865afa158015610beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0f9190613124565b8015610ca157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610c5f9291906130e6565b602060405180830381865afa158015610c7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca09190613124565b5b610ce257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cd99190612b9a565b60405180910390fd5b5b610cee848484611c82565b5b50505050565b610cfd611fa4565b600f5482610d09610af6565b610d139190613180565b1115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613222565b60405180910390fd5b610d5e8183612022565b5050565b610d6a611fa4565b610d726121f4565b6000610d7c6111e4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d9f90613273565b60006040518083038185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b5050905080610def57600080fd5b50610df8612243565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610fca573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6c57610e6784848461224d565b610fd6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610eb59291906130e6565b602060405180830381865afa158015610ed2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef69190613124565b8015610f8857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f469291906130e6565b602060405180830381865afa158015610f63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f879190613124565b5b610fc957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fc09190612b9a565b60405180910390fd5b5b610fd584848461224d565b5b50505050565b601060009054906101000a900460ff1681565b600d5481565b610ffd611fa4565b80601190805190602001906110139291906128c9565b5050565b600c5481565b60006110288261226d565b9050919050565b611037611fa4565b80600d8190555050565b611049611fa4565b80600b8190555050565b60118054611060906130b5565b80601f016020809104026020016040519081016040528092919081815260200182805461108c906130b5565b80156110d95780601f106110ae576101008083540402835291602001916110d9565b820191906000526020600020905b8154815290600101906020018083116110bc57829003601f168201915b505050505081565b6110e9611fa4565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361115a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b3611fa4565b6111bd6000612339565b565b6111c7611fa4565b80601060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461121d906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611249906130b5565b80156112965780601f1061126b57610100808354040283529160200191611296565b820191906000526020600020905b81548152906001019060200180831161127957829003601f168201915b5050505050905090565b600b5481565b600081116112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e0906132d4565b60405180910390fd5b600f54816112f5610af6565b6112ff9190613180565b1115611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613222565b60405180910390fd5b6113486111e4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461162657601060009054906101000a900460ff166113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613340565b60405180910390fd5b600c5481111561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906133d2565b60405180910390fd5b600e5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c9190613180565b111561149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114949061343e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461150b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611502906134aa565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081600d5411611561576000611570565b81600d5461156f91906134ca565b5b9050600b54818461158191906134ca565b61158b91906134fe565b3410156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906135a4565b60405180910390fd5b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161c9190613180565b9250508190555050505b6116303382612022565b50565b61163b611c71565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361169f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116ac611c71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611759611c71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161179e9190612a20565b60405180910390a35050565b6117b2611fa4565b80600e8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561198d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361182f5761182a858585856123ff565b61199a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016118789291906130e6565b602060405180830381865afa158015611895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b99190613124565b801561194b57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016119099291906130e6565b602060405180830381865afa158015611926573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194a9190613124565b5b61198c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016119839190612b9a565b60405180910390fd5b5b611999858585856123ff565b5b5050505050565b6119a9611fa4565b80600c8190555050565b60606119be82611c12565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613636565b60405180910390fd5b600060118054611a0c906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a38906130b5565b8015611a855780601f10611a5a57610100808354040283529160200191611a85565b820191906000526020600020905b815481529060010190602001808311611a6857829003601f168201915b505050505090506000815111611aaa5760405180602001604052806000815250611ad5565b80611ab484612472565b604051602001611ac59291906136de565b6040516020818303038152906040525b915050919050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b7f611fa4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be59061377f565b60405180910390fd5b611bf781612339565b50565b600a6020528060005260406000206000915090505481565b600081611c1d611c79565b11158015611c2c575060005482105b8015611c6a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000611c8d8261226d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cf4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611d0084612540565b91509150611d168187611d11611c71565b612562565b611d6257611d2b86611d26611c71565b611ae3565b611d61576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611dc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd586868660016125a6565b8015611de057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611eae85611e8a8888876125ac565b7c0200000000000000000000000000000000000000000000000000000000176125d4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f345760006001850190506000600460008381526020019081526020016000205403611f32576000548114611f31578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f9c86868660016125ff565b505050505050565b611fac612605565b73ffffffffffffffffffffffffffffffffffffffff16611fca6111e4565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906137eb565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361208e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036120c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d560008483856125a6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061214c8361213d60008660006125ac565b6121468561260d565b176125d4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612170578060008190555050506121ef60008483856125ff565b505050565b600260095403612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223090613857565b60405180910390fd5b6002600981905550565b6001600981905550565b612268838383604051806020016040528060008152506117bc565b505050565b6000808290508061227c611c79565b11612302576000548110156123015760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036122ff575b600081036122f55760046000836001900393508381526020019081526020016000205490506122cb565b8092505050612334565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61240a848484610b13565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461246c576124358484848461261d565b61246b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600060016124818461276d565b01905060008167ffffffffffffffff8111156124a05761249f612ce8565b5b6040519080825280601f01601f1916602001820160405280156124d25781602001600182028036833780820191505090505b509050600082602001820190505b600115612535578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161252957612528613877565b5b049450600085036124e0575b819350505050919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125c38686846128c0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612643611c71565b8786866040518563ffffffff1660e01b815260040161266594939291906138fb565b6020604051808303816000875af19250505080156126a157506040513d601f19601f8201168201806040525081019061269e919061395c565b60015b61271a573d80600081146126d1576040519150601f19603f3d011682016040523d82523d6000602084013e6126d6565b606091505b506000815103612712576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106127cb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816127c1576127c0613877565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612808576d04ee2d6d415b85acef810000000083816127fe576127fd613877565b5b0492506020810190505b662386f26fc10000831061283757662386f26fc10000838161282d5761282c613877565b5b0492506010810190505b6305f5e1008310612860576305f5e100838161285657612855613877565b5b0492506008810190505b612710831061288557612710838161287b5761287a613877565b5b0492506004810190505b606483106128a8576064838161289e5761289d613877565b5b0492506002810190505b600a83106128b7576001810190505b80915050919050565b60009392505050565b8280546128d5906130b5565b90600052602060002090601f0160209004810192826128f7576000855561293e565b82601f1061291057805160ff191683800117855561293e565b8280016001018555821561293e579182015b8281111561293d578251825591602001919060010190612922565b5b50905061294b919061294f565b5090565b5b80821115612968576000816000905550600101612950565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b581612980565b81146129c057600080fd5b50565b6000813590506129d2816129ac565b92915050565b6000602082840312156129ee576129ed612976565b5b60006129fc848285016129c3565b91505092915050565b60008115159050919050565b612a1a81612a05565b82525050565b6000602082019050612a356000830184612a11565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a75578082015181840152602081019050612a5a565b83811115612a84576000848401525b50505050565b6000601f19601f8301169050919050565b6000612aa682612a3b565b612ab08185612a46565b9350612ac0818560208601612a57565b612ac981612a8a565b840191505092915050565b60006020820190508181036000830152612aee8184612a9b565b905092915050565b6000819050919050565b612b0981612af6565b8114612b1457600080fd5b50565b600081359050612b2681612b00565b92915050565b600060208284031215612b4257612b41612976565b5b6000612b5084828501612b17565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8482612b59565b9050919050565b612b9481612b79565b82525050565b6000602082019050612baf6000830184612b8b565b92915050565b612bbe81612b79565b8114612bc957600080fd5b50565b600081359050612bdb81612bb5565b92915050565b60008060408385031215612bf857612bf7612976565b5b6000612c0685828601612bcc565b9250506020612c1785828601612b17565b9150509250929050565b612c2a81612af6565b82525050565b6000602082019050612c456000830184612c21565b92915050565b600080600060608486031215612c6457612c63612976565b5b6000612c7286828701612bcc565b9350506020612c8386828701612bcc565b9250506040612c9486828701612b17565b9150509250925092565b60008060408385031215612cb557612cb4612976565b5b6000612cc385828601612b17565b9250506020612cd485828601612bcc565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d2082612a8a565b810181811067ffffffffffffffff82111715612d3f57612d3e612ce8565b5b80604052505050565b6000612d5261296c565b9050612d5e8282612d17565b919050565b600067ffffffffffffffff821115612d7e57612d7d612ce8565b5b612d8782612a8a565b9050602081019050919050565b82818337600083830152505050565b6000612db6612db184612d63565b612d48565b905082815260208101848484011115612dd257612dd1612ce3565b5b612ddd848285612d94565b509392505050565b600082601f830112612dfa57612df9612cde565b5b8135612e0a848260208601612da3565b91505092915050565b600060208284031215612e2957612e28612976565b5b600082013567ffffffffffffffff811115612e4757612e4661297b565b5b612e5384828501612de5565b91505092915050565b600060208284031215612e7257612e71612976565b5b6000612e8084828501612bcc565b91505092915050565b612e9281612a05565b8114612e9d57600080fd5b50565b600081359050612eaf81612e89565b92915050565b600060208284031215612ecb57612eca612976565b5b6000612ed984828501612ea0565b91505092915050565b60008060408385031215612ef957612ef8612976565b5b6000612f0785828601612bcc565b9250506020612f1885828601612ea0565b9150509250929050565b600067ffffffffffffffff821115612f3d57612f3c612ce8565b5b612f4682612a8a565b9050602081019050919050565b6000612f66612f6184612f22565b612d48565b905082815260208101848484011115612f8257612f81612ce3565b5b612f8d848285612d94565b509392505050565b600082601f830112612faa57612fa9612cde565b5b8135612fba848260208601612f53565b91505092915050565b60008060008060808587031215612fdd57612fdc612976565b5b6000612feb87828801612bcc565b9450506020612ffc87828801612bcc565b935050604061300d87828801612b17565b925050606085013567ffffffffffffffff81111561302e5761302d61297b565b5b61303a87828801612f95565b91505092959194509250565b6000806040838503121561305d5761305c612976565b5b600061306b85828601612bcc565b925050602061307c85828601612bcc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130cd57607f821691505b6020821081036130e0576130df613086565b5b50919050565b60006040820190506130fb6000830185612b8b565b6131086020830184612b8b565b9392505050565b60008151905061311e81612e89565b92915050565b60006020828403121561313a57613139612976565b5b60006131488482850161310f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318b82612af6565b915061319683612af6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131cb576131ca613151565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061320c601483612a46565b9150613217826131d6565b602082019050919050565b6000602082019050818103600083015261323b816131ff565b9050919050565b600081905092915050565b50565b600061325d600083613242565b91506132688261324d565b600082019050919050565b600061327e82613250565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006132be601483612a46565b91506132c982613288565b602082019050919050565b600060208201905081810360008301526132ed816132b1565b9050919050565b7f5075626c6963206d696e74206973206e6f74206f70656e207965740000000000600082015250565b600061332a601b83612a46565b9150613335826132f4565b602082019050919050565b600060208201905081810360008301526133598161331d565b9050919050565b7f4578636565646564206d6178206e756d62657220746f6b656e7320706572207460008201527f7800000000000000000000000000000000000000000000000000000000000000602082015250565b60006133bc602183612a46565b91506133c782613360565b604082019050919050565b600060208201905081810360008301526133eb816133af565b9050919050565b7f457863656564206c696d697420746f6b656e73207065722077616c6c65742100600082015250565b6000613428601f83612a46565b9150613433826133f2565b602082019050919050565b600060208201905081810360008301526134578161341b565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613494601e83612a46565b915061349f8261345e565b602082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b60006134d582612af6565b91506134e083612af6565b9250828210156134f3576134f2613151565b5b828203905092915050565b600061350982612af6565b915061351483612af6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354d5761354c613151565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061358e601383612a46565b915061359982613558565b602082019050919050565b600060208201905081810360008301526135bd81613581565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613620602f83612a46565b915061362b826135c4565b604082019050919050565b6000602082019050818103600083015261364f81613613565b9050919050565b600081905092915050565b600061366c82612a3b565b6136768185613656565b9350613686818560208601612a57565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006136c8600583613656565b91506136d382613692565b600582019050919050565b60006136ea8285613661565b91506136f68284613661565b9150613701826136bb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613769602683612a46565b91506137748261370d565b604082019050919050565b600060208201905081810360008301526137988161375c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137d5602083612a46565b91506137e08261379f565b602082019050919050565b60006020820190508181036000830152613804816137c8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613841601f83612a46565b915061384c8261380b565b602082019050919050565b6000602082019050818103600083015261387081613834565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006138cd826138a6565b6138d781856138b1565b93506138e7818560208601612a57565b6138f081612a8a565b840191505092915050565b60006080820190506139106000830187612b8b565b61391d6020830186612b8b565b61392a6040830185612c21565b818103606083015261393c81846138c2565b905095945050505050565b600081519050613956816129ac565b92915050565b60006020828403121561397257613971612976565b5b600061398084828501613947565b9150509291505056fea2646970667358221220e9ad968aa6efb5ada215c6acd4138802dad2943900e07097822a2a0881d6ddb664736f6c634300080e0033
Deployed Bytecode Sourcemap
71329:4418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14697:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20344:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22290:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21838:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13751:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71629:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75102:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72994:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74934:160;;;;;;;;;;;;;:::i;:::-;;75305:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71713:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71584:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74609:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71544:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20133:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73729:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73632:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71750:130;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74721:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15376:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47615:103;;;;;;;;;;;;;:::i;:::-;;74831:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46967:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20513:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71507:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71974:1012;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22566:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73484:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75516:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73354:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73849:636;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71675:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22945:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47873:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71452:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14697:615;14782:4;15097:10;15082:25;;:11;:25;;;;:102;;;;15174:10;15159:25;;:11;:25;;;;15082:102;:179;;;;15251:10;15236:25;;:11;:25;;;;15082:179;15062:199;;14697:615;;;:::o;20344:100::-;20398:13;20431:5;20424:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20344:100;:::o;22290:204::-;22358:7;22383:16;22391:7;22383;:16::i;:::-;22378:64;;22408:34;;;;;;;;;;;;;;22378:64;22462:15;:24;22478:7;22462:24;;;;;;;;;;;;;;;;;;;;;22455:31;;22290:204;;;:::o;21838:386::-;21911:13;21927:16;21935:7;21927;:16::i;:::-;21911:32;;21983:5;21960:28;;:19;:17;:19::i;:::-;:28;;;21956:175;;22008:44;22025:5;22032:19;:17;:19::i;:::-;22008:16;:44::i;:::-;22003:128;;22080:35;;;;;;;;;;;;;;22003:128;21956:175;22170:2;22143:15;:24;22159:7;22143:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22208:7;22204:2;22188:28;;22197:5;22188:28;;;;;;;;;;;;21900:324;21838:386;;:::o;13751:315::-;13804:7;14032:15;:13;:15::i;:::-;14017:12;;14001:13;;:28;:46;13994:53;;13751:315;:::o;71629:39::-;;;;:::o;75102:195::-;75230:4;70233:1;69047:42;70187:43;;;:47;70183:699;;;70474:10;70466:18;;:4;:18;;;70462:85;;75252:37:::1;75271:4;75277:2;75281:7;75252:18;:37::i;:::-;70525:7:::0;;70462:85;69047:42;70607:40;;;70656:4;70663:10;70607:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;69047:42;70703:40;;;70752:4;70759;70703:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70607:157;70561:310;;70844:10;70825:30;;;;;;;;;;;:::i;:::-;;;;;;;;70561:310;70183:699;75252:37:::1;75271:4;75277:2;75281:7;75252:18;:37::i;:::-;75102:195:::0;;;;;:::o;72994:243::-;46853:13;:11;:13::i;:::-;73132:9:::1;;73117:11;73101:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;73079:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;73200:29;73206:9;73217:11;73200:5;:29::i;:::-;72994:243:::0;;:::o;74934:160::-;46853:13;:11;:13::i;:::-;50783:21:::1;:19;:21::i;:::-;74996:7:::2;75017;:5;:7::i;:::-;75009:21;;75038;75009:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74995:69;;;75083:2;75075:11;;;::::0;::::2;;74984:110;50827:20:::1;:18;:20::i;:::-;74934:160::o:0;75305:203::-;75437:4;70233:1;69047:42;70187:43;;;:47;70183:699;;;70474:10;70466:18;;:4;:18;;;70462:85;;75459:41:::1;75482:4;75488:2;75492:7;75459:22;:41::i;:::-;70525:7:::0;;70462:85;69047:42;70607:40;;;70656:4;70663:10;70607:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;69047:42;70703:40;;;70752:4;70759;70703:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70607:157;70561:310;;70844:10;70825:30;;;;;;;;;;;:::i;:::-;;;;;;;;70561:310;70183:699;75459:41:::1;75482:4;75488:2;75492:7;75459:22;:41::i;:::-;75305:203:::0;;;;;:::o;71713:30::-;;;;;;;;;;;;;:::o;71584:38::-;;;;:::o;74609:104::-;46853:13;:11;:13::i;:::-;74694:11:::1;74684:7;:21;;;;;;;;;;;;:::i;:::-;;74609:104:::0;:::o;71544:33::-;;;;:::o;20133:144::-;20197:7;20240:27;20259:7;20240:18;:27::i;:::-;20217:52;;20133:144;;;:::o;73729:112::-;46853:13;:11;:13::i;:::-;73827:6:::1;73805:19;:28;;;;73729:112:::0;:::o;73632:89::-;46853:13;:11;:13::i;:::-;73707:6:::1;73699:5;:14;;;;73632:89:::0;:::o;71750:130::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74721:102::-;46853:13;:11;:13::i;:::-;74805:10:::1;74793:9;:22;;;;74721:102:::0;:::o;15376:224::-;15440:7;15481:1;15464:19;;:5;:19;;;15460:60;;15492:28;;;;;;;;;;;;;;15460:60;9931:13;15538:18;:25;15557:5;15538:25;;;;;;;;;;;;;;;;:54;15531:61;;15376:224;;;:::o;47615:103::-;46853:13;:11;:13::i;:::-;47680:30:::1;47707:1;47680:18;:30::i;:::-;47615:103::o:0;74831:95::-;46853:13;:11;:13::i;:::-;74912:6:::1;74898:11;;:20;;;;;;;;;;;;;;;;;;74831:95:::0;:::o;46967:87::-;47013:7;47040:6;;;;;;;;;;;47033:13;;46967:87;:::o;20513:104::-;20569:13;20602:7;20595:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20513:104;:::o;71507:30::-;;;;:::o;71974:1012::-;72049:1;72040:6;:10;72032:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;72120:9;;72110:6;72094:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;72086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72183:7;:5;:7::i;:::-;72169:21;;:10;:21;;;72165:778;;72215:11;;;;;;;;;;;72207:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;72291:14;;72281:6;:24;;72273:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;72403:20;;72393:6;72366:12;:24;72379:10;72366:24;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:57;;72358:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;72507:10;72494:23;;:9;:23;;;72486:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;72567:25;72595:12;:24;72608:10;72595:24;;;;;;;;;;;;;;;;72567:52;;72634:18;72678:17;72656:19;;:39;:87;;72742:1;72656:87;;;72721:17;72699:19;;:39;;;;:::i;:::-;72656:87;72634:110;;72822:5;;72808:10;72799:6;:19;;;;:::i;:::-;72798:29;;;;:::i;:::-;72785:9;:42;;72759:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;72925:6;72897:12;:24;72910:10;72897:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;72192:751;;72165:778;72953:25;72959:10;72971:6;72953:5;:25::i;:::-;71974:1012;:::o;22566:308::-;22677:19;:17;:19::i;:::-;22665:31;;:8;:31;;;22661:61;;22705:17;;;;;;;;;;;;;;22661:61;22787:8;22735:18;:39;22754:19;:17;:19::i;:::-;22735:39;;;;;;;;;;;;;;;:49;22775:8;22735:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22847:8;22811:55;;22826:19;:17;:19::i;:::-;22811:55;;;22857:8;22811:55;;;;;;:::i;:::-;;;;;;;;22566:308;;:::o;73484:140::-;46853:13;:11;:13::i;:::-;73597:19:::1;73574:20;:42;;;;73484:140:::0;:::o;75516:228::-;75667:4;70233:1;69047:42;70187:43;;;:47;70183:699;;;70474:10;70466:18;;:4;:18;;;70462:85;;75689:47:::1;75712:4;75718:2;75722:7;75731:4;75689:22;:47::i;:::-;70525:7:::0;;70462:85;69047:42;70607:40;;;70656:4;70663:10;70607:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;69047:42;70703:40;;;70752:4;70759;70703:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70607:157;70561:310;;70844:10;70825:30;;;;;;;;;;;:::i;:::-;;;;;;;;70561:310;70183:699;75689:47:::1;75712:4;75718:2;75722:7;75731:4;75689:22;:47::i;:::-;75516:228:::0;;;;;;:::o;73354:122::-;46853:13;:11;:13::i;:::-;73453:15:::1;73436:14;:32;;;;73354:122:::0;:::o;73849:636::-;73968:13;74021:17;74029:8;74021:7;:17::i;:::-;73999:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;74126:28;74157:7;74126:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74226:1;74201:14;74195:28;:32;:282;;;;;;;;;;;;;;;;;74319:14;74360:19;:8;:17;:19::i;:::-;74276:160;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74195:282;74175:302;;;73849:636;;;:::o;71675:31::-;;;;:::o;22945:164::-;23042:4;23066:18;:25;23085:5;23066:25;;;;;;;;;;;;;;;:35;23092:8;23066:35;;;;;;;;;;;;;;;;;;;;;;;;;23059:42;;22945:164;;;;:::o;47873:201::-;46853:13;:11;:13::i;:::-;47982:1:::1;47962:22;;:8;:22;;::::0;47954:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;48038:28;48057:8;48038:18;:28::i;:::-;47873:201:::0;:::o;71452:48::-;;;;;;;;;;;;;;;;;:::o;24090:273::-;24147:4;24203:7;24184:15;:13;:15::i;:::-;:26;;:66;;;;;24237:13;;24227:7;:23;24184:66;:152;;;;;24335:1;10701:8;24288:17;:26;24306:7;24288:26;;;;;;;;;;;;:43;:48;24184:152;24164:172;;24090:273;;;:::o;42651:105::-;42711:7;42738:10;42731:17;;42651:105;:::o;73245:101::-;73310:7;73337:1;73330:8;;73245:101;:::o;31555:2800::-;31689:27;31719;31738:7;31719:18;:27::i;:::-;31689:57;;31804:4;31763:45;;31779:19;31763:45;;;31759:86;;31817:28;;;;;;;;;;;;;;31759:86;31859:27;31888:23;31915:28;31935:7;31915:19;:28::i;:::-;31858:85;;;;32043:62;32062:15;32079:4;32085:19;:17;:19::i;:::-;32043:18;:62::i;:::-;32038:174;;32125:43;32142:4;32148:19;:17;:19::i;:::-;32125:16;:43::i;:::-;32120:92;;32177:35;;;;;;;;;;;;;;32120:92;32038:174;32243:1;32229:16;;:2;:16;;;32225:52;;32254:23;;;;;;;;;;;;;;32225:52;32290:43;32312:4;32318:2;32322:7;32331:1;32290:21;:43::i;:::-;32426:15;32423:160;;;32566:1;32545:19;32538:30;32423:160;32961:18;:24;32980:4;32961:24;;;;;;;;;;;;;;;;32959:26;;;;;;;;;;;;33030:18;:22;33049:2;33030:22;;;;;;;;;;;;;;;;33028:24;;;;;;;;;;;33352:145;33389:2;33437:45;33452:4;33458:2;33462:19;33437:14;:45::i;:::-;10979:8;33410:72;33352:18;:145::i;:::-;33323:17;:26;33341:7;33323:26;;;;;;;;;;;:174;;;;33667:1;10979:8;33617:19;:46;:51;33613:626;;33689:19;33721:1;33711:7;:11;33689:33;;33878:1;33844:17;:30;33862:11;33844:30;;;;;;;;;;;;:35;33840:384;;33982:13;;33967:11;:28;33963:242;;34162:19;34129:17;:30;34147:11;34129:30;;;;;;;;;;;:52;;;;33963:242;33840:384;33670:569;33613:626;34286:7;34282:2;34267:27;;34276:4;34267:27;;;;;;;;;;;;34305:42;34326:4;34332:2;34336:7;34345:1;34305:20;:42::i;:::-;31678:2677;;;31555:2800;;;:::o;47132:132::-;47207:12;:10;:12::i;:::-;47196:23;;:7;:5;:7::i;:::-;:23;;;47188:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47132:132::o;25921:1529::-;25986:20;26009:13;;25986:36;;26051:1;26037:16;;:2;:16;;;26033:48;;26062:19;;;;;;;;;;;;;;26033:48;26108:1;26096:8;:13;26092:44;;26118:18;;;;;;;;;;;;;;26092:44;26149:61;26179:1;26183:2;26187:12;26201:8;26149:21;:61::i;:::-;26692:1;10068:2;26663:1;:25;;26662:31;26650:8;:44;26624:18;:22;26643:2;26624:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26971:139;27008:2;27062:33;27085:1;27089:2;27093:1;27062:14;:33::i;:::-;27029:30;27050:8;27029:20;:30::i;:::-;:66;26971:18;:139::i;:::-;26937:17;:31;26955:12;26937:31;;;;;;;;;;;:173;;;;27127:15;27145:12;27127:30;;27172:11;27201:8;27186:12;:23;27172:37;;27224:101;27276:9;;;;;;27272:2;27251:35;;27268:1;27251:35;;;;;;;;;;;;27320:3;27310:7;:13;27224:101;;27357:3;27341:13;:19;;;;26398:974;;27382:60;27411:1;27415:2;27419:12;27433:8;27382:20;:60::i;:::-;25975:1475;25921:1529;;:::o;50863:293::-;50265:1;50997:7;;:19;50989:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50265:1;51130:7;:18;;;;50863:293::o;51164:213::-;50221:1;51347:7;:22;;;;51164:213::o;23180:185::-;23318:39;23335:4;23341:2;23345:7;23318:39;;;;;;;;;;;;:16;:39::i;:::-;23180:185;;;:::o;17050:1129::-;17117:7;17137:12;17152:7;17137:22;;17220:4;17201:15;:13;:15::i;:::-;:23;17197:915;;17254:13;;17247:4;:20;17243:869;;;17292:14;17309:17;:23;17327:4;17309:23;;;;;;;;;;;;17292:40;;17425:1;10701:8;17398:6;:23;:28;17394:699;;17917:113;17934:1;17924:6;:11;17917:113;;17977:17;:25;17995:6;;;;;;;17977:25;;;;;;;;;;;;17968:34;;17917:113;;;18063:6;18056:13;;;;;;17394:699;17269:843;17243:869;17197:915;18140:31;;;;;;;;;;;;;;17050:1129;;;;:::o;48234:191::-;48308:16;48327:6;;;;;;;;;;;48308:25;;48353:8;48344:6;;:17;;;;;;;;;;;;;;;;;;48408:8;48377:40;;48398:8;48377:40;;;;;;;;;;;;48297:128;48234:191;:::o;23436:399::-;23603:31;23616:4;23622:2;23626:7;23603:12;:31::i;:::-;23667:1;23649:2;:14;;;:19;23645:183;;23688:56;23719:4;23725:2;23729:7;23738:5;23688:30;:56::i;:::-;23683:145;;23772:40;;;;;;;;;;;;;;23683:145;23645:183;23436:399;;;;:::o;64699:716::-;64755:13;64806:14;64843:1;64823:17;64834:5;64823:10;:17::i;:::-;:21;64806:38;;64859:20;64893:6;64882:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64859:41;;64915:11;65044:6;65040:2;65036:15;65028:6;65024:28;65017:35;;65081:288;65088:4;65081:288;;;65113:5;;;;;;;;65255:8;65250:2;65243:5;65239:14;65234:30;65229:3;65221:44;65311:2;65302:11;;;;;;:::i;:::-;;;;;65345:1;65336:5;:10;65081:288;65332:21;65081:288;65390:6;65383:13;;;;;64699:716;;;:::o;29891:652::-;29986:27;30015:23;30056:53;30112:15;30056:71;;30298:7;30292:4;30285:21;30333:22;30327:4;30320:36;30409:4;30403;30393:21;30370:44;;30505:19;30499:26;30480:45;;30236:300;29891:652;;;:::o;30656:645::-;30798:11;30960:15;30954:4;30950:26;30942:34;;31119:15;31108:9;31104:31;31091:44;;31266:15;31255:9;31252:30;31245:4;31234:9;31231:19;31228:55;31218:65;;30656:645;;;;;:::o;41484:159::-;;;;;:::o;39796:309::-;39931:7;39951:16;11102:3;39977:19;:40;;39951:67;;11102:3;40044:31;40055:4;40061:2;40065:9;40044:10;:31::i;:::-;40036:40;;:61;;40029:68;;;39796:309;;;;;:::o;19624:447::-;19704:14;19872:15;19865:5;19861:27;19852:36;;20046:5;20032:11;20008:22;20004:40;20001:51;19994:5;19991:62;19981:72;;19624:447;;;;:::o;42302:158::-;;;;;:::o;45514:98::-;45567:7;45594:10;45587:17;;45514:98;:::o;21454:322::-;21524:14;21755:1;21745:8;21742:15;21717:23;21713:45;21703:55;;21454:322;;;:::o;38306:716::-;38469:4;38515:2;38490:45;;;38536:19;:17;:19::i;:::-;38557:4;38563:7;38572:5;38490:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38486:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38790:1;38773:6;:13;:18;38769:235;;38819:40;;;;;;;;;;;;;;38769:235;38962:6;38956:13;38947:6;38943:2;38939:15;38932:38;38486:529;38659:54;;;38649:64;;;:6;:64;;;;38642:71;;;38306:716;;;;;;:::o;61561:922::-;61614:7;61634:14;61651:1;61634:18;;61701:6;61692:5;:15;61688:102;;61737:6;61728:15;;;;;;:::i;:::-;;;;;61772:2;61762:12;;;;61688:102;61817:6;61808:5;:15;61804:102;;61853:6;61844:15;;;;;;:::i;:::-;;;;;61888:2;61878:12;;;;61804:102;61933:6;61924:5;:15;61920:102;;61969:6;61960:15;;;;;;:::i;:::-;;;;;62004:2;61994:12;;;;61920:102;62049:5;62040;:14;62036:99;;62084:5;62075:14;;;;;;:::i;:::-;;;;;62118:1;62108:11;;;;62036:99;62162:5;62153;:14;62149:99;;62197:5;62188:14;;;;;;:::i;:::-;;;;;62231:1;62221:11;;;;62149:99;62275:5;62266;:14;62262:99;;62310:5;62301:14;;;;;;:::i;:::-;;;;;62344:1;62334:11;;;;62262:99;62388:5;62379;:14;62375:66;;62424:1;62414:11;;;;62375:66;62469:6;62462:13;;;61561:922;;;:::o;40681:147::-;40818:6;40681:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:474::-;5983:6;5991;6040:2;6028:9;6019:7;6015:23;6011:32;6008:119;;;6046:79;;:::i;:::-;6008:119;6166:1;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6137:117;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5915:474;;;;;:::o;6395:117::-;6504:1;6501;6494:12;6518:117;6627:1;6624;6617:12;6641:180;6689:77;6686:1;6679:88;6786:4;6783:1;6776:15;6810:4;6807:1;6800:15;6827:281;6910:27;6932:4;6910:27;:::i;:::-;6902:6;6898:40;7040:6;7028:10;7025:22;7004:18;6992:10;6989:34;6986:62;6983:88;;;7051:18;;:::i;:::-;6983:88;7091:10;7087:2;7080:22;6870:238;6827:281;;:::o;7114:129::-;7148:6;7175:20;;:::i;:::-;7165:30;;7204:33;7232:4;7224:6;7204:33;:::i;:::-;7114:129;;;:::o;7249:308::-;7311:4;7401:18;7393:6;7390:30;7387:56;;;7423:18;;:::i;:::-;7387:56;7461:29;7483:6;7461:29;:::i;:::-;7453:37;;7545:4;7539;7535:15;7527:23;;7249:308;;;:::o;7563:154::-;7647:6;7642:3;7637;7624:30;7709:1;7700:6;7695:3;7691:16;7684:27;7563:154;;;:::o;7723:412::-;7801:5;7826:66;7842:49;7884:6;7842:49;:::i;:::-;7826:66;:::i;:::-;7817:75;;7915:6;7908:5;7901:21;7953:4;7946:5;7942:16;7991:3;7982:6;7977:3;7973:16;7970:25;7967:112;;;7998:79;;:::i;:::-;7967:112;8088:41;8122:6;8117:3;8112;8088:41;:::i;:::-;7807:328;7723:412;;;;;:::o;8155:340::-;8211:5;8260:3;8253:4;8245:6;8241:17;8237:27;8227:122;;8268:79;;:::i;:::-;8227:122;8385:6;8372:20;8410:79;8485:3;8477:6;8470:4;8462:6;8458:17;8410:79;:::i;:::-;8401:88;;8217:278;8155:340;;;;:::o;8501:509::-;8570:6;8619:2;8607:9;8598:7;8594:23;8590:32;8587:119;;;8625:79;;:::i;:::-;8587:119;8773:1;8762:9;8758:17;8745:31;8803:18;8795:6;8792:30;8789:117;;;8825:79;;:::i;:::-;8789:117;8930:63;8985:7;8976:6;8965:9;8961:22;8930:63;:::i;:::-;8920:73;;8716:287;8501:509;;;;:::o;9016:329::-;9075:6;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9016:329;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:323::-;9668:6;9717:2;9705:9;9696:7;9692:23;9688:32;9685:119;;;9723:79;;:::i;:::-;9685:119;9843:1;9868:50;9910:7;9901:6;9890:9;9886:22;9868:50;:::i;:::-;9858:60;;9814:114;9612:323;;;;:::o;9941:468::-;10006:6;10014;10063:2;10051:9;10042:7;10038:23;10034:32;10031:119;;;10069:79;;:::i;:::-;10031:119;10189:1;10214:53;10259:7;10250:6;10239:9;10235:22;10214:53;:::i;:::-;10204:63;;10160:117;10316:2;10342:50;10384:7;10375:6;10364:9;10360:22;10342:50;:::i;:::-;10332:60;;10287:115;9941:468;;;;;:::o;10415:307::-;10476:4;10566:18;10558:6;10555:30;10552:56;;;10588:18;;:::i;:::-;10552:56;10626:29;10648:6;10626:29;:::i;:::-;10618:37;;10710:4;10704;10700:15;10692:23;;10415:307;;;:::o;10728:410::-;10805:5;10830:65;10846:48;10887:6;10846:48;:::i;:::-;10830:65;:::i;:::-;10821:74;;10918:6;10911:5;10904:21;10956:4;10949:5;10945:16;10994:3;10985:6;10980:3;10976:16;10973:25;10970:112;;;11001:79;;:::i;:::-;10970:112;11091:41;11125:6;11120:3;11115;11091:41;:::i;:::-;10811:327;10728:410;;;;;:::o;11157:338::-;11212:5;11261:3;11254:4;11246:6;11242:17;11238:27;11228:122;;11269:79;;:::i;:::-;11228:122;11386:6;11373:20;11411:78;11485:3;11477:6;11470:4;11462:6;11458:17;11411:78;:::i;:::-;11402:87;;11218:277;11157:338;;;;:::o;11501:943::-;11596:6;11604;11612;11620;11669:3;11657:9;11648:7;11644:23;11640:33;11637:120;;;11676:79;;:::i;:::-;11637:120;11796:1;11821:53;11866:7;11857:6;11846:9;11842:22;11821:53;:::i;:::-;11811:63;;11767:117;11923:2;11949:53;11994:7;11985:6;11974:9;11970:22;11949:53;:::i;:::-;11939:63;;11894:118;12051:2;12077:53;12122:7;12113:6;12102:9;12098:22;12077:53;:::i;:::-;12067:63;;12022:118;12207:2;12196:9;12192:18;12179:32;12238:18;12230:6;12227:30;12224:117;;;12260:79;;:::i;:::-;12224:117;12365:62;12419:7;12410:6;12399:9;12395:22;12365:62;:::i;:::-;12355:72;;12150:287;11501:943;;;;;;;:::o;12450:474::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:332::-;13563:4;13601:2;13590:9;13586:18;13578:26;;13614:71;13682:1;13671:9;13667:17;13658:6;13614:71;:::i;:::-;13695:72;13763:2;13752:9;13748:18;13739:6;13695:72;:::i;:::-;13442:332;;;;;:::o;13780:137::-;13834:5;13865:6;13859:13;13850:22;;13881:30;13905:5;13881:30;:::i;:::-;13780:137;;;;:::o;13923:345::-;13990:6;14039:2;14027:9;14018:7;14014:23;14010:32;14007:119;;;14045:79;;:::i;:::-;14007:119;14165:1;14190:61;14243:7;14234:6;14223:9;14219:22;14190:61;:::i;:::-;14180:71;;14136:125;13923:345;;;;:::o;14274:180::-;14322:77;14319:1;14312:88;14419:4;14416:1;14409:15;14443:4;14440:1;14433:15;14460:305;14500:3;14519:20;14537:1;14519:20;:::i;:::-;14514:25;;14553:20;14571:1;14553:20;:::i;:::-;14548:25;;14707:1;14639:66;14635:74;14632:1;14629:81;14626:107;;;14713:18;;:::i;:::-;14626:107;14757:1;14754;14750:9;14743:16;;14460:305;;;;:::o;14771:170::-;14911:22;14907:1;14899:6;14895:14;14888:46;14771:170;:::o;14947:366::-;15089:3;15110:67;15174:2;15169:3;15110:67;:::i;:::-;15103:74;;15186:93;15275:3;15186:93;:::i;:::-;15304:2;15299:3;15295:12;15288:19;;14947:366;;;:::o;15319:419::-;15485:4;15523:2;15512:9;15508:18;15500:26;;15572:9;15566:4;15562:20;15558:1;15547:9;15543:17;15536:47;15600:131;15726:4;15600:131;:::i;:::-;15592:139;;15319:419;;;:::o;15744:147::-;15845:11;15882:3;15867:18;;15744:147;;;;:::o;15897:114::-;;:::o;16017:398::-;16176:3;16197:83;16278:1;16273:3;16197:83;:::i;:::-;16190:90;;16289:93;16378:3;16289:93;:::i;:::-;16407:1;16402:3;16398:11;16391:18;;16017:398;;;:::o;16421:379::-;16605:3;16627:147;16770:3;16627:147;:::i;:::-;16620:154;;16791:3;16784:10;;16421:379;;;:::o;16806:170::-;16946:22;16942:1;16934:6;16930:14;16923:46;16806:170;:::o;16982:366::-;17124:3;17145:67;17209:2;17204:3;17145:67;:::i;:::-;17138:74;;17221:93;17310:3;17221:93;:::i;:::-;17339:2;17334:3;17330:12;17323:19;;16982:366;;;:::o;17354:419::-;17520:4;17558:2;17547:9;17543:18;17535:26;;17607:9;17601:4;17597:20;17593:1;17582:9;17578:17;17571:47;17635:131;17761:4;17635:131;:::i;:::-;17627:139;;17354:419;;;:::o;17779:177::-;17919:29;17915:1;17907:6;17903:14;17896:53;17779:177;:::o;17962:366::-;18104:3;18125:67;18189:2;18184:3;18125:67;:::i;:::-;18118:74;;18201:93;18290:3;18201:93;:::i;:::-;18319:2;18314:3;18310:12;18303:19;;17962:366;;;:::o;18334:419::-;18500:4;18538:2;18527:9;18523:18;18515:26;;18587:9;18581:4;18577:20;18573:1;18562:9;18558:17;18551:47;18615:131;18741:4;18615:131;:::i;:::-;18607:139;;18334:419;;;:::o;18759:220::-;18899:34;18895:1;18887:6;18883:14;18876:58;18968:3;18963:2;18955:6;18951:15;18944:28;18759:220;:::o;18985:366::-;19127:3;19148:67;19212:2;19207:3;19148:67;:::i;:::-;19141:74;;19224:93;19313:3;19224:93;:::i;:::-;19342:2;19337:3;19333:12;19326:19;;18985:366;;;:::o;19357:419::-;19523:4;19561:2;19550:9;19546:18;19538:26;;19610:9;19604:4;19600:20;19596:1;19585:9;19581:17;19574:47;19638:131;19764:4;19638:131;:::i;:::-;19630:139;;19357:419;;;:::o;19782:181::-;19922:33;19918:1;19910:6;19906:14;19899:57;19782:181;:::o;19969:366::-;20111:3;20132:67;20196:2;20191:3;20132:67;:::i;:::-;20125:74;;20208:93;20297:3;20208:93;:::i;:::-;20326:2;20321:3;20317:12;20310:19;;19969:366;;;:::o;20341:419::-;20507:4;20545:2;20534:9;20530:18;20522:26;;20594:9;20588:4;20584:20;20580:1;20569:9;20565:17;20558:47;20622:131;20748:4;20622:131;:::i;:::-;20614:139;;20341:419;;;:::o;20766:180::-;20906:32;20902:1;20894:6;20890:14;20883:56;20766:180;:::o;20952:366::-;21094:3;21115:67;21179:2;21174:3;21115:67;:::i;:::-;21108:74;;21191:93;21280:3;21191:93;:::i;:::-;21309:2;21304:3;21300:12;21293:19;;20952:366;;;:::o;21324:419::-;21490:4;21528:2;21517:9;21513:18;21505:26;;21577:9;21571:4;21567:20;21563:1;21552:9;21548:17;21541:47;21605:131;21731:4;21605:131;:::i;:::-;21597:139;;21324:419;;;:::o;21749:191::-;21789:4;21809:20;21827:1;21809:20;:::i;:::-;21804:25;;21843:20;21861:1;21843:20;:::i;:::-;21838:25;;21882:1;21879;21876:8;21873:34;;;21887:18;;:::i;:::-;21873:34;21932:1;21929;21925:9;21917:17;;21749:191;;;;:::o;21946:348::-;21986:7;22009:20;22027:1;22009:20;:::i;:::-;22004:25;;22043:20;22061:1;22043:20;:::i;:::-;22038:25;;22231:1;22163:66;22159:74;22156:1;22153:81;22148:1;22141:9;22134:17;22130:105;22127:131;;;22238:18;;:::i;:::-;22127:131;22286:1;22283;22279:9;22268:20;;21946:348;;;;:::o;22300:169::-;22440:21;22436:1;22428:6;22424:14;22417:45;22300:169;:::o;22475:366::-;22617:3;22638:67;22702:2;22697:3;22638:67;:::i;:::-;22631:74;;22714:93;22803:3;22714:93;:::i;:::-;22832:2;22827:3;22823:12;22816:19;;22475:366;;;:::o;22847:419::-;23013:4;23051:2;23040:9;23036:18;23028:26;;23100:9;23094:4;23090:20;23086:1;23075:9;23071:17;23064:47;23128:131;23254:4;23128:131;:::i;:::-;23120:139;;22847:419;;;:::o;23272:234::-;23412:34;23408:1;23400:6;23396:14;23389:58;23481:17;23476:2;23468:6;23464:15;23457:42;23272:234;:::o;23512:366::-;23654:3;23675:67;23739:2;23734:3;23675:67;:::i;:::-;23668:74;;23751:93;23840:3;23751:93;:::i;:::-;23869:2;23864:3;23860:12;23853:19;;23512:366;;;:::o;23884:419::-;24050:4;24088:2;24077:9;24073:18;24065:26;;24137:9;24131:4;24127:20;24123:1;24112:9;24108:17;24101:47;24165:131;24291:4;24165:131;:::i;:::-;24157:139;;23884:419;;;:::o;24309:148::-;24411:11;24448:3;24433:18;;24309:148;;;;:::o;24463:377::-;24569:3;24597:39;24630:5;24597:39;:::i;:::-;24652:89;24734:6;24729:3;24652:89;:::i;:::-;24645:96;;24750:52;24795:6;24790:3;24783:4;24776:5;24772:16;24750:52;:::i;:::-;24827:6;24822:3;24818:16;24811:23;;24573:267;24463:377;;;;:::o;24846:155::-;24986:7;24982:1;24974:6;24970:14;24963:31;24846:155;:::o;25007:400::-;25167:3;25188:84;25270:1;25265:3;25188:84;:::i;:::-;25181:91;;25281:93;25370:3;25281:93;:::i;:::-;25399:1;25394:3;25390:11;25383:18;;25007:400;;;:::o;25413:701::-;25694:3;25716:95;25807:3;25798:6;25716:95;:::i;:::-;25709:102;;25828:95;25919:3;25910:6;25828:95;:::i;:::-;25821:102;;25940:148;26084:3;25940:148;:::i;:::-;25933:155;;26105:3;26098:10;;25413:701;;;;;:::o;26120:225::-;26260:34;26256:1;26248:6;26244:14;26237:58;26329:8;26324:2;26316:6;26312:15;26305:33;26120:225;:::o;26351:366::-;26493:3;26514:67;26578:2;26573:3;26514:67;:::i;:::-;26507:74;;26590:93;26679:3;26590:93;:::i;:::-;26708:2;26703:3;26699:12;26692:19;;26351:366;;;:::o;26723:419::-;26889:4;26927:2;26916:9;26912:18;26904:26;;26976:9;26970:4;26966:20;26962:1;26951:9;26947:17;26940:47;27004:131;27130:4;27004:131;:::i;:::-;26996:139;;26723:419;;;:::o;27148:182::-;27288:34;27284:1;27276:6;27272:14;27265:58;27148:182;:::o;27336:366::-;27478:3;27499:67;27563:2;27558:3;27499:67;:::i;:::-;27492:74;;27575:93;27664:3;27575:93;:::i;:::-;27693:2;27688:3;27684:12;27677:19;;27336:366;;;:::o;27708:419::-;27874:4;27912:2;27901:9;27897:18;27889:26;;27961:9;27955:4;27951:20;27947:1;27936:9;27932:17;27925:47;27989:131;28115:4;27989:131;:::i;:::-;27981:139;;27708:419;;;:::o;28133:181::-;28273:33;28269:1;28261:6;28257:14;28250:57;28133:181;:::o;28320:366::-;28462:3;28483:67;28547:2;28542:3;28483:67;:::i;:::-;28476:74;;28559:93;28648:3;28559:93;:::i;:::-;28677:2;28672:3;28668:12;28661:19;;28320:366;;;:::o;28692:419::-;28858:4;28896:2;28885:9;28881:18;28873:26;;28945:9;28939:4;28935:20;28931:1;28920:9;28916:17;28909:47;28973:131;29099:4;28973:131;:::i;:::-;28965:139;;28692:419;;;:::o;29117:180::-;29165:77;29162:1;29155:88;29262:4;29259:1;29252:15;29286:4;29283:1;29276:15;29303:98;29354:6;29388:5;29382:12;29372:22;;29303:98;;;:::o;29407:168::-;29490:11;29524:6;29519:3;29512:19;29564:4;29559:3;29555:14;29540:29;;29407:168;;;;:::o;29581:360::-;29667:3;29695:38;29727:5;29695:38;:::i;:::-;29749:70;29812:6;29807:3;29749:70;:::i;:::-;29742:77;;29828:52;29873:6;29868:3;29861:4;29854:5;29850:16;29828:52;:::i;:::-;29905:29;29927:6;29905:29;:::i;:::-;29900:3;29896:39;29889:46;;29671:270;29581:360;;;;:::o;29947:640::-;30142:4;30180:3;30169:9;30165:19;30157:27;;30194:71;30262:1;30251:9;30247:17;30238:6;30194:71;:::i;:::-;30275:72;30343:2;30332:9;30328:18;30319:6;30275:72;:::i;:::-;30357;30425:2;30414:9;30410:18;30401:6;30357:72;:::i;:::-;30476:9;30470:4;30466:20;30461:2;30450:9;30446:18;30439:48;30504:76;30575:4;30566:6;30504:76;:::i;:::-;30496:84;;29947:640;;;;;;;:::o;30593:141::-;30649:5;30680:6;30674:13;30665:22;;30696:32;30722:5;30696:32;:::i;:::-;30593:141;;;;:::o;30740:349::-;30809:6;30858:2;30846:9;30837:7;30833:23;30829:32;30826:119;;;30864:79;;:::i;:::-;30826:119;30984:1;31009:63;31064:7;31055:6;31044:9;31040:22;31009:63;:::i;:::-;30999:73;;30955:127;30740:349;;;;:::o
Swarm Source
ipfs://e9ad968aa6efb5ada215c6acd4138802dad2943900e07097822a2a0881d6ddb6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.