Contract Overview
Balance:
0 GLMR
GLMR Value:
$0.00
[ Download CSV Export ]
Contract Name:
PNSPM
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at moonbeam.moonscan.io on 2022-05-06 */ // File: @openzeppelin\contracts\utils\introspection\IERC165.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); } // File: @openzeppelin\contracts\token\ERC721\IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin\contracts\token\ERC721\IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin\contracts\token\ERC721\extensions\IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin\contracts\utils\Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin\contracts\utils\Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin\contracts\utils\Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin\contracts\utils\introspection\ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: erc721a\contracts\ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin\contracts\access\Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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: contracts\PNSPM.sol pragma solidity ^0.8.4; contract PNSPM is ERC721A, Ownable { uint256 public MAX_SUPPLY = 10000; constructor() ERC721A("PNS Pioneer Medal", "PMS PM") {} function totalMinted() public view returns (uint256){ return _totalMinted(); } function safeMint(address to) public onlyOwner { require(_totalMinted() < MAX_SUPPLY, "Exceed maximum supply"); _safeMint(to, 1); } function batchMint(address[] memory to) public onlyOwner { require(_totalMinted() + to.length <= MAX_SUPPLY, "Exceed maximum supply"); for (uint256 i = 0; i< to.length; i++) { _safeMint(to[i], 1); } } function burn(uint256 tokenId) public { _burn(tokenId, true); } function currentId () public view returns (uint256) { return _currentIndex; } function _baseURI() internal pure override returns (string memory) { return "https://nft.pns.link/api/nft_assets/"; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentId","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526127106009553480156200001757600080fd5b506040518060400160405280601181526020017f504e532050696f6e656572204d6564616c0000000000000000000000000000008152506040518060400160405280600681526020017f504d5320504d000000000000000000000000000000000000000000000000000081525081600290805190602001906200009c929190620001cb565b508060039080519060200190620000b5929190620001cb565b50620000c6620000f460201b60201c565b6000819055505050620000ee620000e2620000fd60201b60201c565b6200010560201b60201c565b620002e0565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d9906200027b565b90600052602060002090601f016020900481019282620001fd576000855562000249565b82601f106200021857805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002485782518255916020019190600101906200022b565b5b5090506200025891906200025c565b5090565b5b80821115620002775760008160009055506001016200025d565b5090565b600060028204905060018216806200029457607f821691505b60208210811415620002ab57620002aa620002b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6130bb80620002f06000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610378578063c87b56dd14610394578063d67b06c1146103c4578063e00dd161146103e0578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b806370a08231146102c8578063715018a6146102f85780638da5cb5b1461030257806395d89b4114610320578063a22cb4651461033e578063a2309ff81461035a5761014d565b806323b872dd1161011557806323b872dd1461020a57806332cb6b0c1461022657806340d097c31461024457806342842e0e1461026057806342966c681461027c5780636352211e146102985761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c6004803603810190610167919061288d565b61044a565b6040516101799190612acc565b60405180910390f35b61018a61052c565b6040516101979190612ae7565b60405180910390f35b6101ba60048036038101906101b591906128df565b6105be565b6040516101c79190612a65565b60405180910390f35b6101ea60048036038101906101e59190612810565b61063a565b005b6101f4610745565b6040516102019190612b69565b60405180910390f35b610224600480360381019061021f919061270a565b61075c565b005b61022e61076c565b60405161023b9190612b69565b60405180910390f35b61025e600480360381019061025991906126a5565b610772565b005b61027a6004803603810190610275919061270a565b610847565b005b610296600480360381019061029191906128df565b610867565b005b6102b260048036038101906102ad91906128df565b610875565b6040516102bf9190612a65565b60405180910390f35b6102e260048036038101906102dd91906126a5565b61088b565b6040516102ef9190612b69565b60405180910390f35b61030061095b565b005b61030a6109e3565b6040516103179190612a65565b60405180910390f35b610328610a0d565b6040516103359190612ae7565b60405180910390f35b610358600480360381019061035391906127d4565b610a9f565b005b610362610c17565b60405161036f9190612b69565b60405180910390f35b610392600480360381019061038d9190612759565b610c26565b005b6103ae60048036038101906103a991906128df565b610ca2565b6040516103bb9190612ae7565b60405180910390f35b6103de60048036038101906103d9919061284c565b610d41565b005b6103e8610e83565b6040516103f59190612b69565b60405180910390f35b610418600480360381019061041391906126ce565b610e8c565b6040516104259190612acc565b60405180910390f35b610448600480360381019061044391906126a5565b610f20565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610525575061052482611018565b5b9050919050565b60606002805461053b90612dba565b80601f016020809104026020016040519081016040528092919081815260200182805461056790612dba565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b60006105c982611082565b6105ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064582610875565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ad576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106cc6110d0565b73ffffffffffffffffffffffffffffffffffffffff16141580156106fe57506106fc816106f76110d0565b610e8c565b155b15610735576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107408383836110d8565b505050565b600061074f61118a565b6001546000540303905090565b610767838383611193565b505050565b60095481565b61077a6110d0565b73ffffffffffffffffffffffffffffffffffffffff166107986109e3565b73ffffffffffffffffffffffffffffffffffffffff16146107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590612b49565b60405180910390fd5b6009546107f9611649565b10610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090612b29565b60405180910390fd5b61084481600161165c565b50565b61086283838360405180602001604052806000815250610c26565b505050565b61087281600161167a565b50565b600061088082611a6a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108f3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6109636110d0565b73ffffffffffffffffffffffffffffffffffffffff166109816109e3565b73ffffffffffffffffffffffffffffffffffffffff16146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90612b49565b60405180910390fd5b6109e16000611cf9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610a1c90612dba565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4890612dba565b8015610a955780601f10610a6a57610100808354040283529160200191610a95565b820191906000526020600020905b815481529060010190602001808311610a7857829003601f168201915b5050505050905090565b610aa76110d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610b196110d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bc66110d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c0b9190612acc565b60405180910390a35050565b6000610c21611649565b905090565b610c31848484611193565b610c508373ffffffffffffffffffffffffffffffffffffffff16611dbf565b8015610c655750610c6384848484611de2565b155b15610c9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610cad82611082565b610ce3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610ced611f42565b9050600081511415610d0e5760405180602001604052806000815250610d39565b80610d1884611f62565b604051602001610d29929190612a41565b6040516020818303038152906040525b915050919050565b610d496110d0565b73ffffffffffffffffffffffffffffffffffffffff16610d676109e3565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490612b49565b60405180910390fd5b6009548151610dca611649565b610dd49190612c49565b1115610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90612b29565b60405180910390fd5b60005b8151811015610e7f57610e6c828281518110610e5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600161165c565b8080610e7790612e1d565b915050610e18565b5050565b60008054905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f286110d0565b73ffffffffffffffffffffffffffffffffffffffff16610f466109e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390612b49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390612b09565b60405180910390fd5b61101581611cf9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161108d61118a565b1115801561109c575060005482105b80156110c9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061119e82611a6a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611209576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661122a6110d0565b73ffffffffffffffffffffffffffffffffffffffff1614806112595750611258856112536110d0565b610e8c565b5b8061129e57506112676110d0565b73ffffffffffffffffffffffffffffffffffffffff16611286846105be565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806112d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561133e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134b858585600161210f565b611357600084876110d8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115d75760005482146115d657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116428585856001612115565b5050505050565b600061165361118a565b60005403905090565b61167682826040518060200160405280600081525061211b565b5050565b600061168583611a6a565b905060008160000151905082156117665760008173ffffffffffffffffffffffffffffffffffffffff166116b76110d0565b73ffffffffffffffffffffffffffffffffffffffff1614806116e657506116e5826116e06110d0565b610e8c565b5b8061172b57506116f46110d0565b73ffffffffffffffffffffffffffffffffffffffff16611713866105be565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611764576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61177481600086600161210f565b611780600085836110d8565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156119e45760005482146119e357848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a52816000866001612115565b60016000815480929190600101919050555050505050565b611a726124fb565b600082905080611a8061118a565b11158015611a8f575060005481105b15611cc2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cc057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ba4578092505050611cf4565b5b600115611cbf57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cba578092505050611cf4565b611ba5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e086110d0565b8786866040518563ffffffff1660e01b8152600401611e2a9493929190612a80565b602060405180830381600087803b158015611e4457600080fd5b505af1925050508015611e7557506040513d601f19601f82011682018060405250810190611e7291906128b6565b60015b611eef573d8060008114611ea5576040519150601f19603f3d011682016040523d82523d6000602084013e611eaa565b606091505b50600081511415611ee7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180606001604052806024815260200161306260249139905090565b60606000821415611faa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061210a565b600082905060005b60008214611fdc578080611fc590612e1d565b915050600a82611fd59190612c9f565b9150611fb2565b60008167ffffffffffffffff81111561201e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120505781602001600182028036833780820191505090505b5090505b60008514612103576001826120699190612cd0565b9150600a856120789190612e66565b60306120849190612c49565b60f81b8183815181106120c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120fc9190612c9f565b9450612054565b8093505050505b919050565b50505050565b50505050565b612128838383600161212d565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561219a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156121d5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e2600086838761210f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156123ac57506123ab8773ffffffffffffffffffffffffffffffffffffffff16611dbf565b5b15612472575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124216000888480600101955088611de2565b612457576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156123b257826000541461246d57600080fd5b6124de565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612473575b8160008190555050506124f46000868387612115565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061255161254c84612ba9565b612b84565b9050808382526020820190508285602086028201111561257057600080fd5b60005b858110156125a0578161258688826125e8565b845260208401935060208301925050600181019050612573565b5050509392505050565b60006125bd6125b884612bd5565b612b84565b9050828152602081018484840111156125d557600080fd5b6125e0848285612d78565b509392505050565b6000813590506125f781613005565b92915050565b600082601f83011261260e57600080fd5b813561261e84826020860161253e565b91505092915050565b6000813590506126368161301c565b92915050565b60008135905061264b81613033565b92915050565b60008151905061266081613033565b92915050565b600082601f83011261267757600080fd5b81356126878482602086016125aa565b91505092915050565b60008135905061269f8161304a565b92915050565b6000602082840312156126b757600080fd5b60006126c5848285016125e8565b91505092915050565b600080604083850312156126e157600080fd5b60006126ef858286016125e8565b9250506020612700858286016125e8565b9150509250929050565b60008060006060848603121561271f57600080fd5b600061272d868287016125e8565b935050602061273e868287016125e8565b925050604061274f86828701612690565b9150509250925092565b6000806000806080858703121561276f57600080fd5b600061277d878288016125e8565b945050602061278e878288016125e8565b935050604061279f87828801612690565b925050606085013567ffffffffffffffff8111156127bc57600080fd5b6127c887828801612666565b91505092959194509250565b600080604083850312156127e757600080fd5b60006127f5858286016125e8565b925050602061280685828601612627565b9150509250929050565b6000806040838503121561282357600080fd5b6000612831858286016125e8565b925050602061284285828601612690565b9150509250929050565b60006020828403121561285e57600080fd5b600082013567ffffffffffffffff81111561287857600080fd5b612884848285016125fd565b91505092915050565b60006020828403121561289f57600080fd5b60006128ad8482850161263c565b91505092915050565b6000602082840312156128c857600080fd5b60006128d684828501612651565b91505092915050565b6000602082840312156128f157600080fd5b60006128ff84828501612690565b91505092915050565b61291181612d04565b82525050565b61292081612d16565b82525050565b600061293182612c06565b61293b8185612c1c565b935061294b818560208601612d87565b61295481612f53565b840191505092915050565b600061296a82612c11565b6129748185612c2d565b9350612984818560208601612d87565b61298d81612f53565b840191505092915050565b60006129a382612c11565b6129ad8185612c3e565b93506129bd818560208601612d87565b80840191505092915050565b60006129d6602683612c2d565b91506129e182612f64565b604082019050919050565b60006129f9601583612c2d565b9150612a0482612fb3565b602082019050919050565b6000612a1c602083612c2d565b9150612a2782612fdc565b602082019050919050565b612a3b81612d6e565b82525050565b6000612a4d8285612998565b9150612a598284612998565b91508190509392505050565b6000602082019050612a7a6000830184612908565b92915050565b6000608082019050612a956000830187612908565b612aa26020830186612908565b612aaf6040830185612a32565b8181036060830152612ac18184612926565b905095945050505050565b6000602082019050612ae16000830184612917565b92915050565b60006020820190508181036000830152612b01818461295f565b905092915050565b60006020820190508181036000830152612b22816129c9565b9050919050565b60006020820190508181036000830152612b42816129ec565b9050919050565b60006020820190508181036000830152612b6281612a0f565b9050919050565b6000602082019050612b7e6000830184612a32565b92915050565b6000612b8e612b9f565b9050612b9a8282612dec565b919050565b6000604051905090565b600067ffffffffffffffff821115612bc457612bc3612f24565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612bf057612bef612f24565b5b612bf982612f53565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c5482612d6e565b9150612c5f83612d6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c9457612c93612e97565b5b828201905092915050565b6000612caa82612d6e565b9150612cb583612d6e565b925082612cc557612cc4612ec6565b5b828204905092915050565b6000612cdb82612d6e565b9150612ce683612d6e565b925082821015612cf957612cf8612e97565b5b828203905092915050565b6000612d0f82612d4e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612da5578082015181840152602081019050612d8a565b83811115612db4576000848401525b50505050565b60006002820490506001821680612dd257607f821691505b60208210811415612de657612de5612ef5565b5b50919050565b612df582612f53565b810181811067ffffffffffffffff82111715612e1457612e13612f24565b5b80604052505050565b6000612e2882612d6e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e5b57612e5a612e97565b5b600182019050919050565b6000612e7182612d6e565b9150612e7c83612d6e565b925082612e8c57612e8b612ec6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61300e81612d04565b811461301957600080fd5b50565b61302581612d16565b811461303057600080fd5b50565b61303c81612d22565b811461304757600080fd5b50565b61305381612d6e565b811461305e57600080fd5b5056fe68747470733a2f2f6e66742e706e732e6c696e6b2f6170692f6e66745f6173736574732fa2646970667358221220bd3668724bfd346397d3101e2459ebcbc5620ceed4793642cc9c45415e28f41c64736f6c63430008040033
Deployed ByteCode Sourcemap
44797:1100:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24465:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27578:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29081:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28644:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23714:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29946:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44841:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45050:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30187:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45466:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27386:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24834:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43921:103;;;:::i;:::-;;43270:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27747:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29357:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44950:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30443:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27922:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45212:246;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45553:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29715:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44179:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24465:305;24567:4;24619:25;24604:40;;;:11;:40;;;;:105;;;;24676:33;24661:48;;;:11;:48;;;;24604:105;:158;;;;24726:36;24750:11;24726:23;:36::i;:::-;24604:158;24584:178;;24465:305;;;:::o;27578:100::-;27632:13;27665:5;27658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27578:100;:::o;29081:204::-;29149:7;29174:16;29182:7;29174;:16::i;:::-;29169:64;;29199:34;;;;;;;;;;;;;;29169:64;29253:15;:24;29269:7;29253:24;;;;;;;;;;;;;;;;;;;;;29246:31;;29081:204;;;:::o;28644:371::-;28717:13;28733:24;28749:7;28733:15;:24::i;:::-;28717:40;;28778:5;28772:11;;:2;:11;;;28768:48;;;28792:24;;;;;;;;;;;;;;28768:48;28849:5;28833:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28859:37;28876:5;28883:12;:10;:12::i;:::-;28859:16;:37::i;:::-;28858:38;28833:63;28829:138;;;28920:35;;;;;;;;;;;;;;28829:138;28979:28;28988:2;28992:7;29001:5;28979:8;:28::i;:::-;28644:371;;;:::o;23714:303::-;23758:7;23983:15;:13;:15::i;:::-;23968:12;;23952:13;;:28;:46;23945:53;;23714:303;:::o;29946:170::-;30080:28;30090:4;30096:2;30100:7;30080:9;:28::i;:::-;29946:170;;;:::o;44841:33::-;;;;:::o;45050:154::-;43501:12;:10;:12::i;:::-;43490:23;;:7;:5;:7::i;:::-;:23;;;43482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45133:10:::1;;45116:14;:12;:14::i;:::-;:27;45108:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45180:16;45190:2;45194:1;45180:9;:16::i;:::-;45050:154:::0;:::o;30187:185::-;30325:39;30342:4;30348:2;30352:7;30325:39;;;;;;;;;;;;:16;:39::i;:::-;30187:185;;;:::o;45466:79::-;45517:20;45523:7;45532:4;45517:5;:20::i;:::-;45466:79;:::o;27386:125::-;27450:7;27477:21;27490:7;27477:12;:21::i;:::-;:26;;;27470:33;;27386:125;;;:::o;24834:206::-;24898:7;24939:1;24922:19;;:5;:19;;;24918:60;;;24950:28;;;;;;;;;;;;;;24918:60;25004:12;:19;25017:5;25004:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24996:36;;24989:43;;24834:206;;;:::o;43921:103::-;43501:12;:10;:12::i;:::-;43490:23;;:7;:5;:7::i;:::-;:23;;;43482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43986:30:::1;44013:1;43986:18;:30::i;:::-;43921:103::o:0;43270:87::-;43316:7;43343:6;;;;;;;;;;;43336:13;;43270:87;:::o;27747:104::-;27803:13;27836:7;27829:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27747:104;:::o;29357:287::-;29468:12;:10;:12::i;:::-;29456:24;;:8;:24;;;29452:54;;;29489:17;;;;;;;;;;;;;;29452:54;29564:8;29519:18;:32;29538:12;:10;:12::i;:::-;29519:32;;;;;;;;;;;;;;;:42;29552:8;29519:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29617:8;29588:48;;29603:12;:10;:12::i;:::-;29588:48;;;29627:8;29588:48;;;;;;:::i;:::-;;;;;;;;29357:287;;:::o;44950:92::-;44994:7;45020:14;:12;:14::i;:::-;45013:21;;44950:92;:::o;30443:369::-;30610:28;30620:4;30626:2;30630:7;30610:9;:28::i;:::-;30653:15;:2;:13;;;:15::i;:::-;:76;;;;;30673:56;30704:4;30710:2;30714:7;30723:5;30673:30;:56::i;:::-;30672:57;30653:76;30649:156;;;30753:40;;;;;;;;;;;;;;30649:156;30443:369;;;;:::o;27922:318::-;27995:13;28026:16;28034:7;28026;:16::i;:::-;28021:59;;28051:29;;;;;;;;;;;;;;28021:59;28093:21;28117:10;:8;:10::i;:::-;28093:34;;28170:1;28151:7;28145:21;:26;;:87;;;;;;;;;;;;;;;;;28198:7;28207:18;:7;:16;:18::i;:::-;28181:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28145:87;28138:94;;;27922:318;;;:::o;45212:246::-;43501:12;:10;:12::i;:::-;43490:23;;:7;:5;:7::i;:::-;:23;;;43482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45318:10:::1;;45305:2;:9;45288:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:40;;45280:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45370:9;45365:86;45388:2;:9;45385:1;:12;45365:86;;;45420:19;45430:2;45433:1;45430:5;;;;;;;;;;;;;;;;;;;;;;45437:1;45420:9;:19::i;:::-;45399:3;;;;;:::i;:::-;;;;45365:86;;;;45212:246:::0;:::o;45553:91::-;45596:7;45623:13;;45616:20;;45553:91;:::o;29715:164::-;29812:4;29836:18;:25;29855:5;29836:25;;;;;;;;;;;;;;;:35;29862:8;29836:35;;;;;;;;;;;;;;;;;;;;;;;;;29829:42;;29715:164;;;;:::o;44179:201::-;43501:12;:10;:12::i;:::-;43490:23;;:7;:5;:7::i;:::-;:23;;;43482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44288:1:::1;44268:22;;:8;:22;;;;44260:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44344:28;44363:8;44344:18;:28::i;:::-;44179:201:::0;:::o;20033:157::-;20118:4;20157:25;20142:40;;;:11;:40;;;;20135:47;;20033:157;;;:::o;31067:174::-;31124:4;31167:7;31148:15;:13;:15::i;:::-;:26;;:53;;;;;31188:13;;31178:7;:23;31148:53;:85;;;;;31206:11;:20;31218:7;31206:20;;;;;;;;;;;:27;;;;;;;;;;;;31205:28;31148:85;31141:92;;31067:174;;;:::o;16832:98::-;16885:7;16912:10;16905:17;;16832:98;:::o;39224:196::-;39366:2;39339:15;:24;39355:7;39339:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39404:7;39400:2;39384:28;;39393:5;39384:28;;;;;;;;;;;;39224:196;;;:::o;45791:101::-;45856:7;45883:1;45876:8;;45791:101;:::o;34167:2130::-;34282:35;34320:21;34333:7;34320:12;:21::i;:::-;34282:59;;34380:4;34358:26;;:13;:18;;;:26;;;34354:67;;34393:28;;;;;;;;;;;;;;34354:67;34434:22;34476:4;34460:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34497:36;34514:4;34520:12;:10;:12::i;:::-;34497:16;:36::i;:::-;34460:73;:126;;;;34574:12;:10;:12::i;:::-;34550:36;;:20;34562:7;34550:11;:20::i;:::-;:36;;;34460:126;34434:153;;34605:17;34600:66;;34631:35;;;;;;;;;;;;;;34600:66;34695:1;34681:16;;:2;:16;;;34677:52;;;34706:23;;;;;;;;;;;;;;34677:52;34742:43;34764:4;34770:2;34774:7;34783:1;34742:21;:43::i;:::-;34850:35;34867:1;34871:7;34880:4;34850:8;:35::i;:::-;35211:1;35181:12;:18;35194:4;35181:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35255:1;35227:12;:16;35240:2;35227:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35273:31;35307:11;:20;35319:7;35307:20;;;;;;;;;;;35273:54;;35358:2;35342:8;:13;;;:18;;;;;;;;;;;;;;;;;;35408:15;35375:8;:23;;;:49;;;;;;;;;;;;;;;;;;35676:19;35708:1;35698:7;:11;35676:33;;35724:31;35758:11;:24;35770:11;35758:24;;;;;;;;;;;35724:58;;35826:1;35801:27;;:8;:13;;;;;;;;;;;;:27;;;35797:384;;;36011:13;;35996:11;:28;35992:174;;36065:4;36049:8;:13;;;:20;;;;;;;;;;;;;;;;;;36118:13;:28;;;36092:8;:23;;;:54;;;;;;;;;;;;;;;;;;35992:174;35797:384;34167:2130;;;36228:7;36224:2;36209:27;;36218:4;36209:27;;;;;;;;;;;;36247:42;36268:4;36274:2;36278:7;36287:1;36247:20;:42::i;:::-;34167:2130;;;;;:::o;24110:283::-;24157:7;24359:15;:13;:15::i;:::-;24343:13;;:31;24336:38;;24110:283;:::o;31249:104::-;31318:27;31328:2;31332:8;31318:27;;;;;;;;;;;;:9;:27::i;:::-;31249:104;;:::o;36698:2408::-;36778:35;36816:21;36829:7;36816:12;:21::i;:::-;36778:59;;36850:12;36865:13;:18;;;36850:33;;36900:13;36896:290;;;36930:22;36972:4;36956:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;36997:36;37014:4;37020:12;:10;:12::i;:::-;36997:16;:36::i;:::-;36956:77;:134;;;;37078:12;:10;:12::i;:::-;37054:36;;:20;37066:7;37054:11;:20::i;:::-;:36;;;36956:134;36930:161;;37113:17;37108:66;;37139:35;;;;;;;;;;;;;;37108:66;36896:290;;37198:51;37220:4;37234:1;37238:7;37247:1;37198:21;:51::i;:::-;37314:35;37331:1;37335:7;37344:4;37314:8;:35::i;:::-;37645:31;37679:12;:18;37692:4;37679:18;;;;;;;;;;;;;;;37645:52;;37735:1;37712:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37779:1;37751:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37879:31;37913:11;:20;37925:7;37913:20;;;;;;;;;;;37879:54;;37964:4;37948:8;:13;;;:20;;;;;;;;;;;;;;;;;;38016:15;37983:8;:23;;;:49;;;;;;;;;;;;;;;;;;38065:4;38047:8;:15;;;:22;;;;;;;;;;;;;;;;;;38317:19;38349:1;38339:7;:11;38317:33;;38365:31;38399:11;:24;38411:11;38399:24;;;;;;;;;;;38365:58;;38467:1;38442:27;;:8;:13;;;;;;;;;;;;:27;;;38438:384;;;38652:13;;38637:11;:28;38633:174;;38706:4;38690:8;:13;;;:20;;;;;;;;;;;;;;;;;;38759:13;:28;;;38733:8;:23;;;:54;;;;;;;;;;;;;;;;;;38633:174;38438:384;36698:2408;;;;38877:7;38873:1;38850:35;;38859:4;38850:35;;;;;;;;;;;;38896:50;38917:4;38931:1;38935:7;38944:1;38896:20;:50::i;:::-;39073:12;;:14;;;;;;;;;;;;;36698:2408;;;;:::o;26215:1109::-;26277:21;;:::i;:::-;26311:12;26326:7;26311:22;;26394:4;26375:15;:13;:15::i;:::-;:23;;:47;;;;;26409:13;;26402:4;:20;26375:47;26371:886;;;26443:31;26477:11;:17;26489:4;26477:17;;;;;;;;;;;26443:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26518:9;:16;;;26513:729;;26589:1;26563:28;;:9;:14;;;:28;;;26559:101;;26627:9;26620:16;;;;;;26559:101;26962:261;26969:4;26962:261;;;27002:6;;;;;;;;27047:11;:17;27059:4;27047:17;;;;;;;;;;;27035:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27121:1;27095:28;;:9;:14;;;:28;;;27091:109;;27163:9;27156:16;;;;;;27091:109;26962:261;;;26513:729;26371:886;;27285:31;;;;;;;;;;;;;;26215:1109;;;;:::o;44540:191::-;44614:16;44633:6;;;;;;;;;;;44614:25;;44659:8;44650:6;;:17;;;;;;;;;;;;;;;;;;44714:8;44683:40;;44704:8;44683:40;;;;;;;;;;;;44540:191;;:::o;8883:326::-;8943:4;9200:1;9178:7;:19;;;:23;9171:30;;8883:326;;;:::o;39912:667::-;40075:4;40112:2;40096:36;;;40133:12;:10;:12::i;:::-;40147:4;40153:7;40162:5;40096:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40092:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40347:1;40330:6;:13;:18;40326:235;;;40376:40;;;;;;;;;;;;;;40326:235;40519:6;40513:13;40504:6;40500:2;40496:15;40489:38;40092:480;40225:45;;;40215:55;;;:6;:55;;;;40208:62;;;39912:667;;;;;;:::o;45652:131::-;45704:13;45730:45;;;;;;;;;;;;;;;;;;;45652:131;:::o;17411:723::-;17467:13;17697:1;17688:5;:10;17684:53;;;17715:10;;;;;;;;;;;;;;;;;;;;;17684:53;17747:12;17762:5;17747:20;;17778:14;17803:78;17818:1;17810:4;:9;17803:78;;17836:8;;;;;:::i;:::-;;;;17867:2;17859:10;;;;;:::i;:::-;;;17803:78;;;17891:19;17923:6;17913:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17891:39;;17941:154;17957:1;17948:5;:10;17941:154;;17985:1;17975:11;;;;;:::i;:::-;;;18052:2;18044:5;:10;;;;:::i;:::-;18031:2;:24;;;;:::i;:::-;18018:39;;18001:6;18008;18001:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18081:2;18072:11;;;;;:::i;:::-;;;17941:154;;;18119:6;18105:21;;;;;17411:723;;;;:::o;41227:159::-;;;;;:::o;42045:158::-;;;;;:::o;31716:163::-;31839:32;31845:2;31849:8;31859:5;31866:4;31839:5;:32::i;:::-;31716:163;;;:::o;32138:1775::-;32277:20;32300:13;;32277:36;;32342:1;32328:16;;:2;:16;;;32324:48;;;32353:19;;;;;;;;;;;;;;32324:48;32399:1;32387:8;:13;32383:44;;;32409:18;;;;;;;;;;;;;;32383:44;32440:61;32470:1;32474:2;32478:12;32492:8;32440:21;:61::i;:::-;32813:8;32778:12;:16;32791:2;32778:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32877:8;32837:12;:16;32850:2;32837:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32936:2;32903:11;:25;32915:12;32903:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33003:15;32953:11;:25;32965:12;32953:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33036:20;33059:12;33036:35;;33086:11;33115:8;33100:12;:23;33086:37;;33144:4;:23;;;;;33152:15;:2;:13;;;:15::i;:::-;33144:23;33140:641;;;33188:314;33244:12;33240:2;33219:38;;33236:1;33219:38;;;;;;;;;;;;33285:69;33324:1;33328:2;33332:14;;;;;;33348:5;33285:30;:69::i;:::-;33280:174;;33390:40;;;;;;;;;;;;;;33280:174;33497:3;33481:12;:19;;33188:314;;33583:12;33566:13;;:29;33562:43;;33597:8;;;33562:43;33140:641;;;33646:120;33702:14;;;;;;33698:2;33677:40;;33694:1;33677:40;;;;;;;;;;;;33761:3;33745:12;:19;;33646:120;;33140:641;33811:12;33795:13;:28;;;;32138:1775;;33845:60;33874:1;33878:2;33882:12;33896:8;33845:20;:60::i;:::-;32138:1775;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:139::-;1080:5;1118:6;1105:20;1096:29;;1134:33;1161:5;1134:33;:::i;:::-;1086:87;;;;:::o;1196:303::-;1267:5;1316:3;1309:4;1301:6;1297:17;1293:27;1283:2;;1334:1;1331;1324:12;1283:2;1374:6;1361:20;1399:94;1489:3;1481:6;1474:4;1466:6;1462:17;1399:94;:::i;:::-;1390:103;;1273:226;;;;;:::o;1505:133::-;1548:5;1586:6;1573:20;1564:29;;1602:30;1626:5;1602:30;:::i;:::-;1554:84;;;;:::o;1644:137::-;1689:5;1727:6;1714:20;1705:29;;1743:32;1769:5;1743:32;:::i;:::-;1695:86;;;;:::o;1787:141::-;1843:5;1874:6;1868:13;1859:22;;1890:32;1916:5;1890:32;:::i;:::-;1849:79;;;;:::o;1947:271::-;2002:5;2051:3;2044:4;2036:6;2032:17;2028:27;2018:2;;2069:1;2066;2059:12;2018:2;2109:6;2096:20;2134:78;2208:3;2200:6;2193:4;2185:6;2181:17;2134:78;:::i;:::-;2125:87;;2008:210;;;;;:::o;2224:139::-;2270:5;2308:6;2295:20;2286:29;;2324:33;2351:5;2324:33;:::i;:::-;2276:87;;;;:::o;2369:262::-;2428:6;2477:2;2465:9;2456:7;2452:23;2448:32;2445:2;;;2493:1;2490;2483:12;2445:2;2536:1;2561:53;2606:7;2597:6;2586:9;2582:22;2561:53;:::i;:::-;2551:63;;2507:117;2435:196;;;;:::o;2637:407::-;2705:6;2713;2762:2;2750:9;2741:7;2737:23;2733:32;2730:2;;;2778:1;2775;2768:12;2730:2;2821:1;2846:53;2891:7;2882:6;2871:9;2867:22;2846:53;:::i;:::-;2836:63;;2792:117;2948:2;2974:53;3019:7;3010:6;2999:9;2995:22;2974:53;:::i;:::-;2964:63;;2919:118;2720:324;;;;;:::o;3050:552::-;3127:6;3135;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:2;;;3208:1;3205;3198:12;3160:2;3251:1;3276:53;3321:7;3312:6;3301:9;3297:22;3276:53;:::i;:::-;3266:63;;3222:117;3378:2;3404:53;3449:7;3440:6;3429:9;3425:22;3404:53;:::i;:::-;3394:63;;3349:118;3506:2;3532:53;3577:7;3568:6;3557:9;3553:22;3532:53;:::i;:::-;3522:63;;3477:118;3150:452;;;;;:::o;3608:809::-;3703:6;3711;3719;3727;3776:3;3764:9;3755:7;3751:23;3747:33;3744:2;;;3793:1;3790;3783:12;3744:2;3836:1;3861:53;3906:7;3897:6;3886:9;3882:22;3861:53;:::i;:::-;3851:63;;3807:117;3963:2;3989:53;4034:7;4025:6;4014:9;4010:22;3989:53;:::i;:::-;3979:63;;3934:118;4091:2;4117:53;4162:7;4153:6;4142:9;4138:22;4117:53;:::i;:::-;4107:63;;4062:118;4247:2;4236:9;4232:18;4219:32;4278:18;4270:6;4267:30;4264:2;;;4310:1;4307;4300:12;4264:2;4338:62;4392:7;4383:6;4372:9;4368:22;4338:62;:::i;:::-;4328:72;;4190:220;3734:683;;;;;;;:::o;4423:401::-;4488:6;4496;4545:2;4533:9;4524:7;4520:23;4516:32;4513:2;;;4561:1;4558;4551:12;4513:2;4604:1;4629:53;4674:7;4665:6;4654:9;4650:22;4629:53;:::i;:::-;4619:63;;4575:117;4731:2;4757:50;4799:7;4790:6;4779:9;4775:22;4757:50;:::i;:::-;4747:60;;4702:115;4503:321;;;;;:::o;4830:407::-;4898:6;4906;4955:2;4943:9;4934:7;4930:23;4926:32;4923:2;;;4971:1;4968;4961:12;4923:2;5014:1;5039:53;5084:7;5075:6;5064:9;5060:22;5039:53;:::i;:::-;5029:63;;4985:117;5141:2;5167:53;5212:7;5203:6;5192:9;5188:22;5167:53;:::i;:::-;5157:63;;5112:118;4913:324;;;;;:::o;5243:405::-;5327:6;5376:2;5364:9;5355:7;5351:23;5347:32;5344:2;;;5392:1;5389;5382:12;5344:2;5463:1;5452:9;5448:17;5435:31;5493:18;5485:6;5482:30;5479:2;;;5525:1;5522;5515:12;5479:2;5553:78;5623:7;5614:6;5603:9;5599:22;5553:78;:::i;:::-;5543:88;;5406:235;5334:314;;;;:::o;5654:260::-;5712:6;5761:2;5749:9;5740:7;5736:23;5732:32;5729:2;;;5777:1;5774;5767:12;5729:2;5820:1;5845:52;5889:7;5880:6;5869:9;5865:22;5845:52;:::i;:::-;5835:62;;5791:116;5719:195;;;;:::o;5920:282::-;5989:6;6038:2;6026:9;6017:7;6013:23;6009:32;6006:2;;;6054:1;6051;6044:12;6006:2;6097:1;6122:63;6177:7;6168:6;6157:9;6153:22;6122:63;:::i;:::-;6112:73;;6068:127;5996:206;;;;:::o;6208:262::-;6267:6;6316:2;6304:9;6295:7;6291:23;6287:32;6284:2;;;6332:1;6329;6322:12;6284:2;6375:1;6400:53;6445:7;6436:6;6425:9;6421:22;6400:53;:::i;:::-;6390:63;;6346:117;6274:196;;;;:::o;6476:118::-;6563:24;6581:5;6563:24;:::i;:::-;6558:3;6551:37;6541:53;;:::o;6600:109::-;6681:21;6696:5;6681:21;:::i;:::-;6676:3;6669:34;6659:50;;:::o;6715:360::-;6801:3;6829:38;6861:5;6829:38;:::i;:::-;6883:70;6946:6;6941:3;6883:70;:::i;:::-;6876:77;;6962:52;7007:6;7002:3;6995:4;6988:5;6984:16;6962:52;:::i;:::-;7039:29;7061:6;7039:29;:::i;:::-;7034:3;7030:39;7023:46;;6805:270;;;;;:::o;7081:364::-;7169:3;7197:39;7230:5;7197:39;:::i;:::-;7252:71;7316:6;7311:3;7252:71;:::i;:::-;7245:78;;7332:52;7377:6;7372:3;7365:4;7358:5;7354:16;7332:52;:::i;:::-;7409:29;7431:6;7409:29;:::i;:::-;7404:3;7400:39;7393:46;;7173:272;;;;;:::o;7451:377::-;7557:3;7585:39;7618:5;7585:39;:::i;:::-;7640:89;7722:6;7717:3;7640:89;:::i;:::-;7633:96;;7738:52;7783:6;7778:3;7771:4;7764:5;7760:16;7738:52;:::i;:::-;7815:6;7810:3;7806:16;7799:23;;7561:267;;;;;:::o;7834:366::-;7976:3;7997:67;8061:2;8056:3;7997:67;:::i;:::-;7990:74;;8073:93;8162:3;8073:93;:::i;:::-;8191:2;8186:3;8182:12;8175:19;;7980:220;;;:::o;8206:366::-;8348:3;8369:67;8433:2;8428:3;8369:67;:::i;:::-;8362:74;;8445:93;8534:3;8445:93;:::i;:::-;8563:2;8558:3;8554:12;8547:19;;8352:220;;;:::o;8578:366::-;8720:3;8741:67;8805:2;8800:3;8741:67;:::i;:::-;8734:74;;8817:93;8906:3;8817:93;:::i;:::-;8935:2;8930:3;8926:12;8919:19;;8724:220;;;:::o;8950:118::-;9037:24;9055:5;9037:24;:::i;:::-;9032:3;9025:37;9015:53;;:::o;9074:435::-;9254:3;9276:95;9367:3;9358:6;9276:95;:::i;:::-;9269:102;;9388:95;9479:3;9470:6;9388:95;:::i;:::-;9381:102;;9500:3;9493:10;;9258:251;;;;;:::o;9515:222::-;9608:4;9646:2;9635:9;9631:18;9623:26;;9659:71;9727:1;9716:9;9712:17;9703:6;9659:71;:::i;:::-;9613:124;;;;:::o;9743:640::-;9938:4;9976:3;9965:9;9961:19;9953:27;;9990:71;10058:1;10047:9;10043:17;10034:6;9990:71;:::i;:::-;10071:72;10139:2;10128:9;10124:18;10115:6;10071:72;:::i;:::-;10153;10221:2;10210:9;10206:18;10197:6;10153:72;:::i;:::-;10272:9;10266:4;10262:20;10257:2;10246:9;10242:18;10235:48;10300:76;10371:4;10362:6;10300:76;:::i;:::-;10292:84;;9943:440;;;;;;;:::o;10389:210::-;10476:4;10514:2;10503:9;10499:18;10491:26;;10527:65;10589:1;10578:9;10574:17;10565:6;10527:65;:::i;:::-;10481:118;;;;:::o;10605:313::-;10718:4;10756:2;10745:9;10741:18;10733:26;;10805:9;10799:4;10795:20;10791:1;10780:9;10776:17;10769:47;10833:78;10906:4;10897:6;10833:78;:::i;:::-;10825:86;;10723:195;;;;:::o;10924:419::-;11090:4;11128:2;11117:9;11113:18;11105:26;;11177:9;11171:4;11167:20;11163:1;11152:9;11148:17;11141:47;11205:131;11331:4;11205:131;:::i;:::-;11197:139;;11095:248;;;:::o;11349:419::-;11515:4;11553:2;11542:9;11538:18;11530:26;;11602:9;11596:4;11592:20;11588:1;11577:9;11573:17;11566:47;11630:131;11756:4;11630:131;:::i;:::-;11622:139;;11520:248;;;:::o;11774:419::-;11940:4;11978:2;11967:9;11963:18;11955:26;;12027:9;12021:4;12017:20;12013:1;12002:9;11998:17;11991:47;12055:131;12181:4;12055:131;:::i;:::-;12047:139;;11945:248;;;:::o;12199:222::-;12292:4;12330:2;12319:9;12315:18;12307:26;;12343:71;12411:1;12400:9;12396:17;12387:6;12343:71;:::i;:::-;12297:124;;;;:::o;12427:129::-;12461:6;12488:20;;:::i;:::-;12478:30;;12517:33;12545:4;12537:6;12517:33;:::i;:::-;12468:88;;;:::o;12562:75::-;12595:6;12628:2;12622:9;12612:19;;12602:35;:::o;12643:311::-;12720:4;12810:18;12802:6;12799:30;12796:2;;;12832:18;;:::i;:::-;12796:2;12882:4;12874:6;12870:17;12862:25;;12942:4;12936;12932:15;12924:23;;12725:229;;;:::o;12960:307::-;13021:4;13111:18;13103:6;13100:30;13097:2;;;13133:18;;:::i;:::-;13097:2;13171:29;13193:6;13171:29;:::i;:::-;13163:37;;13255:4;13249;13245:15;13237:23;;13026:241;;;:::o;13273:98::-;13324:6;13358:5;13352:12;13342:22;;13331:40;;;:::o;13377:99::-;13429:6;13463:5;13457:12;13447:22;;13436:40;;;:::o;13482:168::-;13565:11;13599:6;13594:3;13587:19;13639:4;13634:3;13630:14;13615:29;;13577:73;;;;:::o;13656:169::-;13740:11;13774:6;13769:3;13762:19;13814:4;13809:3;13805:14;13790:29;;13752:73;;;;:::o;13831:148::-;13933:11;13970:3;13955:18;;13945:34;;;;:::o;13985:305::-;14025:3;14044:20;14062:1;14044:20;:::i;:::-;14039:25;;14078:20;14096:1;14078:20;:::i;:::-;14073:25;;14232:1;14164:66;14160:74;14157:1;14154:81;14151:2;;;14238:18;;:::i;:::-;14151:2;14282:1;14279;14275:9;14268:16;;14029:261;;;;:::o;14296:185::-;14336:1;14353:20;14371:1;14353:20;:::i;:::-;14348:25;;14387:20;14405:1;14387:20;:::i;:::-;14382:25;;14426:1;14416:2;;14431:18;;:::i;:::-;14416:2;14473:1;14470;14466:9;14461:14;;14338:143;;;;:::o;14487:191::-;14527:4;14547:20;14565:1;14547:20;:::i;:::-;14542:25;;14581:20;14599:1;14581:20;:::i;:::-;14576:25;;14620:1;14617;14614:8;14611:2;;;14625:18;;:::i;:::-;14611:2;14670:1;14667;14663:9;14655:17;;14532:146;;;;:::o;14684:96::-;14721:7;14750:24;14768:5;14750:24;:::i;:::-;14739:35;;14729:51;;;:::o;14786:90::-;14820:7;14863:5;14856:13;14849:21;14838:32;;14828:48;;;:::o;14882:149::-;14918:7;14958:66;14951:5;14947:78;14936:89;;14926:105;;;:::o;15037:126::-;15074:7;15114:42;15107:5;15103:54;15092:65;;15082:81;;;:::o;15169:77::-;15206:7;15235:5;15224:16;;15214:32;;;:::o;15252:154::-;15336:6;15331:3;15326;15313:30;15398:1;15389:6;15384:3;15380:16;15373:27;15303:103;;;:::o;15412:307::-;15480:1;15490:113;15504:6;15501:1;15498:13;15490:113;;;15589:1;15584:3;15580:11;15574:18;15570:1;15565:3;15561:11;15554:39;15526:2;15523:1;15519:10;15514:15;;15490:113;;;15621:6;15618:1;15615:13;15612:2;;;15701:1;15692:6;15687:3;15683:16;15676:27;15612:2;15461:258;;;;:::o;15725:320::-;15769:6;15806:1;15800:4;15796:12;15786:22;;15853:1;15847:4;15843:12;15874:18;15864:2;;15930:4;15922:6;15918:17;15908:27;;15864:2;15992;15984:6;15981:14;15961:18;15958:38;15955:2;;;16011:18;;:::i;:::-;15955:2;15776:269;;;;:::o;16051:281::-;16134:27;16156:4;16134:27;:::i;:::-;16126:6;16122:40;16264:6;16252:10;16249:22;16228:18;16216:10;16213:34;16210:62;16207:2;;;16275:18;;:::i;:::-;16207:2;16315:10;16311:2;16304:22;16094:238;;;:::o;16338:233::-;16377:3;16400:24;16418:5;16400:24;:::i;:::-;16391:33;;16446:66;16439:5;16436:77;16433:2;;;16516:18;;:::i;:::-;16433:2;16563:1;16556:5;16552:13;16545:20;;16381:190;;;:::o;16577:176::-;16609:1;16626:20;16644:1;16626:20;:::i;:::-;16621:25;;16660:20;16678:1;16660:20;:::i;:::-;16655:25;;16699:1;16689:2;;16704:18;;:::i;:::-;16689:2;16745:1;16742;16738:9;16733:14;;16611:142;;;;:::o;16759:180::-;16807:77;16804:1;16797:88;16904:4;16901:1;16894:15;16928:4;16925:1;16918:15;16945:180;16993:77;16990:1;16983:88;17090:4;17087:1;17080:15;17114:4;17111:1;17104:15;17131:180;17179:77;17176:1;17169:88;17276:4;17273:1;17266:15;17300:4;17297:1;17290:15;17317:180;17365:77;17362:1;17355:88;17462:4;17459:1;17452:15;17486:4;17483:1;17476:15;17503:102;17544:6;17595:2;17591:7;17586:2;17579:5;17575:14;17571:28;17561:38;;17551:54;;;:::o;17611:225::-;17751:34;17747:1;17739:6;17735:14;17728:58;17820:8;17815:2;17807:6;17803:15;17796:33;17717:119;:::o;17842:171::-;17982:23;17978:1;17970:6;17966:14;17959:47;17948:65;:::o;18019:182::-;18159:34;18155:1;18147:6;18143:14;18136:58;18125:76;:::o;18207:122::-;18280:24;18298:5;18280:24;:::i;:::-;18273:5;18270:35;18260:2;;18319:1;18316;18309:12;18260:2;18250:79;:::o;18335:116::-;18405:21;18420:5;18405:21;:::i;:::-;18398:5;18395:32;18385:2;;18441:1;18438;18431:12;18385:2;18375:76;:::o;18457:120::-;18529:23;18546:5;18529:23;:::i;:::-;18522:5;18519:34;18509:2;;18567:1;18564;18557:12;18509:2;18499:78;:::o;18583:122::-;18656:24;18674:5;18656:24;:::i;:::-;18649:5;18646:35;18636:2;;18695:1;18692;18685:12;18636:2;18626:79;:::o
Swarm Source
ipfs://bd3668724bfd346397d3101e2459ebcbc5620ceed4793642cc9c45415e28f41c
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.