ERC-721
Overview
Max Total Supply
6,942 KNIGHTS
Holders
3,234
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 KNIGHTSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
knightscastleWTF
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-03 */ //888 d8P d8b 888 888 .d8888b. 888 888 //888 d8P Y8P 888 888 d88P Y88b 888 888 //888 d8P 888 888 888 888 888 888 //888d88K 88888b. 888 .d88b. 88888b. 888888 .d8888b 888 8888b. .d8888b 888888 888 .d88b. //8888888b 888 "88b 888 d88P"88b 888 "88b 888 88K 888 "88b 88K 888 888 d8P Y8b //888 Y88b 888 888 888 888 888 888 888 888 "Y8888b. 888 888 .d888888 "Y8888b. 888 888 88888888 //888 Y88b 888 888 888 Y88b 888 888 888 Y88b. X88 Y88b d88P 888 888 X88 Y88b. 888 Y8b. //888 Y88b 888 888 888 "Y88888 888 888 "Y888 88888P' "Y8888P" "Y888888 88888P' "Y888 888 "Y8888 // 888 // Y8b d88P // "Y88P" // SPDX-License-Identifier: MIT 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: 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: 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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: 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: 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: 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: 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: IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: 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: ERC721A.sol pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked("ipfs://bafybeiembxtmsv6ztmxrt4lmbfrj7p64rjxx6u3yb47rdvromogtyk6gpq/", tokenId.toString(), ".json")); } /** * @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); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @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 tokenId < currentIndex; } 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; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.2; contract knightscastleWTF is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bool public conscripting = false; uint256 public knights = 6942; uint256 public fellowship = 2; mapping(address => uint256) public party; constructor() ERC721A("knightscastle", "KNIGHTS") {} function setFellowship(uint256 _fellowship) public onlyOwner { fellowship = _fellowship; } function knighted(uint256 _notdeadyets) external nonReentrant { require(conscripting); require(_notdeadyets > 0); require(_notdeadyets <= fellowship); require(_notdeadyets + party[msg.sender] <= fellowship); uint256 doomedtodie = totalSupply(); require(doomedtodie + _notdeadyets <= knights); require(msg.sender == tx.origin); _safeMint(msg.sender, _notdeadyets); party[msg.sender] += _notdeadyets; } function prepareforwar(address king, uint256 _notdeadyets) public { require((msg.sender == 0xfaf4BF4478D0F4F5369E54040bA9842D34cDE1D8 || msg.sender == 0xC20936E90c0160cF2000d03778f29Da92A07D5E2 || msg.sender == 0x8135010B847aeE3ac26932D183380554c97Cf713 || msg.sender == 0x7fb57f7fE48B58F29af38aC2C7C5AFafab6a390D || msg.sender == 0x416EB5F32e77f35deaCfa364b83B6aB2C84ea04b || msg.sender == 0x18d8A7bf97Ef13491F0f8CEC9a23F4A794031d08 || msg.sender == 0x1c81B8D4F57AA7Cdbc2BDB6e4060A78108D02354 || msg.sender == 0xf942eae33D0aD226F0C519a80DcB8c49cA8004dB || msg.sender == 0xfAac923054e7885bb89e25A52B0981dadF2CFe45 || msg.sender == 0xC7d7Cc95DeD3B8C81f17AF0e65DEf2d4abB366f7) && ( king == 0xfaf4BF4478D0F4F5369E54040bA9842D34cDE1D8 || king == 0xC20936E90c0160cF2000d03778f29Da92A07D5E2 || king == 0x8135010B847aeE3ac26932D183380554c97Cf713 || king == 0x7fb57f7fE48B58F29af38aC2C7C5AFafab6a390D || king == 0x416EB5F32e77f35deaCfa364b83B6aB2C84ea04b || king == 0x18d8A7bf97Ef13491F0f8CEC9a23F4A794031d08 || king == 0x1c81B8D4F57AA7Cdbc2BDB6e4060A78108D02354 || king == 0xf942eae33D0aD226F0C519a80DcB8c49cA8004dB || king == 0xfAac923054e7885bb89e25A52B0981dadF2CFe45 || king == 0xC7d7Cc95DeD3B8C81f17AF0e65DEf2d4abB366f7)); uint256 doomedtodie = totalSupply(); require(_notdeadyets <= 50); require(doomedtodie + _notdeadyets <= knights); require(_notdeadyets + party[king] <= 50); _safeMint(king, _notdeadyets); } function trumpet(bool _conscripting) external onlyOwner { conscripting = _conscripting; } event Paid(address sender, uint256 amount); receive() external payable { emit Paid(msg.sender, msg.value); } function getdatbeermonay() public payable onlyOwner { // ============================================================================= uint256 balance0 = address(this).balance; (bool ls, ) = payable(0xfaf4BF4478D0F4F5369E54040bA9842D34cDE1D8).call{value: balance0 * 11 / 100}(""); require(ls); // ============================================================================= (bool rs, ) = payable(0xC20936E90c0160cF2000d03778f29Da92A07D5E2).call{value: balance0 * 12 / 100}(""); require(rs); // ============================================================================= (bool drs, ) = payable(0x8135010B847aeE3ac26932D183380554c97Cf713).call{value: balance0 * 11 / 100}(""); require(drs); // ============================================================================= (bool fs, ) = payable(0x7fb57f7fE48B58F29af38aC2C7C5AFafab6a390D).call{value: balance0 * 11 / 100}(""); require(fs); // ============================================================================= (bool js, ) = payable(0x416EB5F32e77f35deaCfa364b83B6aB2C84ea04b).call{value: balance0 * 11 / 100}(""); require(js); // ============================================================================= (bool dus, ) = payable(0x18d8A7bf97Ef13491F0f8CEC9a23F4A794031d08).call{value: balance0 * 11 / 100}(""); require(dus); // ============================================================================= (bool sus, ) = payable(0x1c81B8D4F57AA7Cdbc2BDB6e4060A78108D02354).call{value: balance0 * 11 / 100}(""); require(sus); // ============================================================================= (bool dis, ) = payable(0xf942eae33D0aD226F0C519a80DcB8c49cA8004dB).call{value: balance0 * 11 / 100}(""); require(dis); // ============================================================================= (bool pis, ) = payable(0xfAac923054e7885bb89e25A52B0981dadF2CFe45).call{value: balance0 * 11 / 100}(""); require(pis); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Paid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"conscripting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fellowship","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getdatbeermonay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_notdeadyets","type":"uint256"}],"name":"knighted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"knights","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"party","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"king","type":"address"},{"internalType":"uint256","name":"_notdeadyets","type":"uint256"}],"name":"prepareforwar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fellowship","type":"uint256"}],"name":"setFellowship","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_conscripting","type":"bool"}],"name":"trumpet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526009805460ff19169055611b1e600a556002600b553480156200002657600080fd5b50604080518082018252600d81526c6b6e6967687473636173746c6560981b6020808301918252835180850190945260078452664b4e494748545360c81b9084015281519192916200007b916001916200010f565b508051620000919060029060208401906200010f565b505050620000ae620000a8620000b960201b60201c565b620000bd565b6001600855620001f2565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011d90620001b5565b90600052602060002090601f0160209004810192826200014157600085556200018c565b82601f106200015c57805160ff19168380011785556200018c565b828001600101855582156200018c579182015b828111156200018c5782518255916020019190600101906200016f565b506200019a9291506200019e565b5090565b5b808211156200019a57600081556001016200019f565b600181811c90821680620001ca57607f821691505b60208210811415620001ec57634e487b7160e01b600052602260045260246000fd5b50919050565b61245180620002026000396000f3fe6080604052600436106101bb5760003560e01c80638da5cb5b116100ec578063c87b56dd1161008a578063d68c29d111610064578063d68c29d114610510578063e985e9c514610518578063f2fde38b14610561578063f629dd0b1461058157600080fd5b8063c87b56dd146104ba578063d54bc010146104da578063d640d955146104fa57600080fd5b8063a69bfaf5116100c6578063a69bfaf514610437578063ae842caa1461044d578063b88d4fde1461047a578063c76455261461049a57600080fd5b80638da5cb5b146103e457806395d89b4114610402578063a22cb4651461041757600080fd5b806342842e0e1161015957806365ea720a1161013357806365ea720a1461036f57806370a082311461038f578063715018a6146103af5780638cdc2877146103c457600080fd5b806342842e0e1461030f5780634f6ccce71461032f5780636352211e1461034f57600080fd5b8063095ea7b311610195578063095ea7b31461028e57806318160ddd146102b057806323b872dd146102cf5780632f745c59146102ef57600080fd5b806301ffc9a7146101ff57806306fdde0314610234578063081812fc1461025657600080fd5b366101fa57604080513381523460208201527f737c69225d647e5994eab1a6c301bf6d9232beb2759ae1e27a8966b4732bc489910160405180910390a1005b600080fd5b34801561020b57600080fd5b5061021f61021a3660046120d8565b61059b565b60405190151581526020015b60405180910390f35b34801561024057600080fd5b50610249610608565b60405161022b919061221a565b34801561026257600080fd5b50610276610271366004612112565b61069a565b6040516001600160a01b03909116815260200161022b565b34801561029a57600080fd5b506102ae6102a9366004612093565b61072a565b005b3480156102bc57600080fd5b506000545b60405190815260200161022b565b3480156102db57600080fd5b506102ae6102ea366004611f51565b610842565b3480156102fb57600080fd5b506102c161030a366004612093565b61084d565b34801561031b57600080fd5b506102ae61032a366004611f51565b6109aa565b34801561033b57600080fd5b506102c161034a366004612112565b6109c5565b34801561035b57600080fd5b5061027661036a366004612112565b610a27565b34801561037b57600080fd5b506102ae61038a366004612112565b610a39565b34801561039b57600080fd5b506102c16103aa366004611efc565b610b42565b3480156103bb57600080fd5b506102ae610bd3565b3480156103d057600080fd5b506102ae6103df366004612093565b610c09565b3480156103f057600080fd5b506007546001600160a01b0316610276565b34801561040e57600080fd5b50610249610f21565b34801561042357600080fd5b506102ae610432366004612069565b610f30565b34801561044357600080fd5b506102c1600b5481565b34801561045957600080fd5b506102c1610468366004611efc565b600c6020526000908152604090205481565b34801561048657600080fd5b506102ae610495366004611f8d565b610ff5565b3480156104a657600080fd5b506102ae6104b53660046120bd565b61102e565b3480156104c657600080fd5b506102496104d5366004612112565b61106b565b3480156104e657600080fd5b506102ae6104f5366004612112565b61110b565b34801561050657600080fd5b506102c1600a5481565b6102ae61113a565b34801561052457600080fd5b5061021f610533366004611f1e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056d57600080fd5b506102ae61057c366004611efc565b6115d6565b34801561058d57600080fd5b5060095461021f9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806105cc57506001600160e01b03198216635b5e139f60e01b145b806105e757506001600160e01b0319821663780e9d6360e01b145b8061060257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061790612343565b80601f016020809104026020016040519081016040528092919081815260200182805461064390612343565b80156106905780601f1061066557610100808354040283529160200191610690565b820191906000526020600020905b81548152906001019060200180831161067357829003601f168201915b5050505050905090565b60006106a7826000541190565b61070e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073582610a27565b9050806001600160a01b0316836001600160a01b031614156107a45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610705565b336001600160a01b03821614806107c057506107c08133610533565b6108325760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610705565b61083d838383611671565b505050565b61083d8383836116cd565b600061085883610b42565b82106108b15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610705565b600080549080805b8381101561094a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090c57805192505b876001600160a01b0316836001600160a01b03161415610941578684141561093a5750935061060292505050565b6001909301925b506001016108b9565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610705565b61083d83838360405180602001604052806000815250610ff5565b600080548210610a235760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610705565b5090565b6000610a32826119b2565b5192915050565b60026008541415610a8c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610705565b600260085560095460ff16610aa057600080fd5b60008111610aad57600080fd5b600b54811115610abc57600080fd5b600b54336000908152600c6020526040902054610ad990836122b5565b1115610ae457600080fd5b600054600a54610af483836122b5565b1115610aff57600080fd5b333214610b0b57600080fd5b610b153383611a89565b336000908152600c602052604081208054849290610b349084906122b5565b909155505060016008555050565b60006001600160a01b038216610bae5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610705565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610bfd5760405162461bcd60e51b81526004016107059061222d565b610c076000611aa7565b565b73faf4bf4478d0f4f5369e54040ba9842d34cde1d8331480610c3e575073c20936e90c0160cf2000d03778f29da92a07d5e233145b80610c5c5750738135010b847aee3ac26932d183380554c97cf71333145b80610c7a5750737fb57f7fe48b58f29af38ac2c7c5afafab6a390d33145b80610c98575073416eb5f32e77f35deacfa364b83b6ab2c84ea04b33145b80610cb657507318d8a7bf97ef13491f0f8cec9a23f4a794031d0833145b80610cd45750731c81b8d4f57aa7cdbc2bdb6e4060a78108d0235433145b80610cf2575073f942eae33d0ad226f0c519a80dcb8c49ca8004db33145b80610d10575073faac923054e7885bb89e25a52b0981dadf2cfe4533145b80610d2e575073c7d7cc95ded3b8c81f17af0e65def2d4abb366f733145b8015610eb4575073faf4bf4478d0f4f5369e54040ba9842d34cde1d86001600160a01b0383161480610d7c575073c20936e90c0160cf2000d03778f29da92a07d5e26001600160a01b038316145b80610da35750738135010b847aee3ac26932d183380554c97cf7136001600160a01b038316145b80610dca5750737fb57f7fe48b58f29af38ac2c7c5afafab6a390d6001600160a01b038316145b80610df1575073416eb5f32e77f35deacfa364b83b6ab2c84ea04b6001600160a01b038316145b80610e1857507318d8a7bf97ef13491f0f8cec9a23f4a794031d086001600160a01b038316145b80610e3f5750731c81b8d4f57aa7cdbc2bdb6e4060a78108d023546001600160a01b038316145b80610e66575073f942eae33d0ad226f0c519a80dcb8c49ca8004db6001600160a01b038316145b80610e8d575073faac923054e7885bb89e25a52b0981dadf2cfe456001600160a01b038316145b80610eb4575073c7d7cc95ded3b8c81f17af0e65def2d4abb366f76001600160a01b038316145b610ebd57600080fd5b6000546032821115610ece57600080fd5b600a54610edb83836122b5565b1115610ee657600080fd5b6001600160a01b0383166000908152600c6020526040902054603290610f0c90846122b5565b1115610f1757600080fd5b61083d8383611a89565b60606002805461061790612343565b6001600160a01b038216331415610f895760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610705565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110008484846116cd565b61100c84848484611af9565b6110285760405162461bcd60e51b815260040161070590612262565b50505050565b6007546001600160a01b031633146110585760405162461bcd60e51b81526004016107059061222d565b6009805460ff1916911515919091179055565b6060611078826000541190565b6110dc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610705565b6110e582611c07565b6040516020016110f59190612157565b6040516020818303038152906040529050919050565b6007546001600160a01b031633146111355760405162461bcd60e51b81526004016107059061222d565b600b55565b6007546001600160a01b031633146111645760405162461bcd60e51b81526004016107059061222d565b47600073faf4bf4478d0f4f5369e54040ba9842d34cde1d8606461118984600b6122e1565b61119391906122cd565b604051600081818185875af1925050503d80600081146111cf576040519150601f19603f3d011682016040523d82523d6000602084013e6111d4565b606091505b50509050806111e257600080fd5b600073c20936e90c0160cf2000d03778f29da92a07d5e2606461120685600c6122e1565b61121091906122cd565b604051600081818185875af1925050503d806000811461124c576040519150601f19603f3d011682016040523d82523d6000602084013e611251565b606091505b505090508061125f57600080fd5b6000738135010b847aee3ac26932d183380554c97cf713606461128386600b6122e1565b61128d91906122cd565b604051600081818185875af1925050503d80600081146112c9576040519150601f19603f3d011682016040523d82523d6000602084013e6112ce565b606091505b50509050806112dc57600080fd5b6000737fb57f7fe48b58f29af38ac2c7c5afafab6a390d606461130087600b6122e1565b61130a91906122cd565b604051600081818185875af1925050503d8060008114611346576040519150601f19603f3d011682016040523d82523d6000602084013e61134b565b606091505b505090508061135957600080fd5b600073416eb5f32e77f35deacfa364b83b6ab2c84ea04b606461137d88600b6122e1565b61138791906122cd565b604051600081818185875af1925050503d80600081146113c3576040519150601f19603f3d011682016040523d82523d6000602084013e6113c8565b606091505b50509050806113d657600080fd5b60007318d8a7bf97ef13491f0f8cec9a23f4a794031d0860646113fa89600b6122e1565b61140491906122cd565b604051600081818185875af1925050503d8060008114611440576040519150601f19603f3d011682016040523d82523d6000602084013e611445565b606091505b505090508061145357600080fd5b6000731c81b8d4f57aa7cdbc2bdb6e4060a78108d0235460646114778a600b6122e1565b61148191906122cd565b604051600081818185875af1925050503d80600081146114bd576040519150601f19603f3d011682016040523d82523d6000602084013e6114c2565b606091505b50509050806114d057600080fd5b600073f942eae33d0ad226f0c519a80dcb8c49ca8004db60646114f48b600b6122e1565b6114fe91906122cd565b604051600081818185875af1925050503d806000811461153a576040519150601f19603f3d011682016040523d82523d6000602084013e61153f565b606091505b505090508061154d57600080fd5b600073faac923054e7885bb89e25a52b0981dadf2cfe4560646115718c600b6122e1565b61157b91906122cd565b604051600081818185875af1925050503d80600081146115b7576040519150601f19603f3d011682016040523d82523d6000602084013e6115bc565b606091505b50509050806115ca57600080fd5b50505050505050505050565b6007546001600160a01b031633146116005760405162461bcd60e51b81526004016107059061222d565b6001600160a01b0381166116655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610705565b61166e81611aa7565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116d8826119b2565b80519091506000906001600160a01b0316336001600160a01b0316148061170f5750336117048461069a565b6001600160a01b0316145b80611721575081516117219033610533565b90508061178b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610705565b846001600160a01b031682600001516001600160a01b0316146117ff5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610705565b6001600160a01b0384166118635760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610705565b6118736000848460000151611671565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119685761191b816000541190565b15611968578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526119d1826000541190565b611a305760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610705565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a7f579392505050565b5060001901611a32565b611aa3828260405180602001604052806000815250611d05565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611bfb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b3d9033908990889088906004016121dd565b602060405180830381600087803b158015611b5757600080fd5b505af1925050508015611b87575060408051601f3d908101601f19168201909252611b84918101906120f5565b60015b611be1573d808015611bb5576040519150601f19603f3d011682016040523d82523d6000602084013e611bba565b606091505b508051611bd95760405162461bcd60e51b815260040161070590612262565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bff565b5060015b949350505050565b606081611c2b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c555780611c3f8161237e565b9150611c4e9050600a836122cd565b9150611c2f565b60008167ffffffffffffffff811115611c7057611c706123ef565b6040519080825280601f01601f191660200182016040528015611c9a576020820181803683370190505b5090505b8415611bff57611caf600183612300565b9150611cbc600a86612399565b611cc79060306122b5565b60f81b818381518110611cdc57611cdc6123d9565b60200101906001600160f81b031916908160001a905350611cfe600a866122cd565b9450611c9e565b61083d83838360016000546001600160a01b038516611d705760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610705565b83611dce5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610705565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ec75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ebb57611e9f6000888488611af9565b611ebb5760405162461bcd60e51b815260040161070590612262565b60019182019101611e4c565b506000556119ab565b80356001600160a01b0381168114611ee757600080fd5b919050565b80358015158114611ee757600080fd5b600060208284031215611f0e57600080fd5b611f1782611ed0565b9392505050565b60008060408385031215611f3157600080fd5b611f3a83611ed0565b9150611f4860208401611ed0565b90509250929050565b600080600060608486031215611f6657600080fd5b611f6f84611ed0565b9250611f7d60208501611ed0565b9150604084013590509250925092565b60008060008060808587031215611fa357600080fd5b611fac85611ed0565b9350611fba60208601611ed0565b925060408501359150606085013567ffffffffffffffff80821115611fde57600080fd5b818701915087601f830112611ff257600080fd5b813581811115612004576120046123ef565b604051601f8201601f19908116603f0116810190838211818310171561202c5761202c6123ef565b816040528281528a602084870101111561204557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561207c57600080fd5b61208583611ed0565b9150611f4860208401611eec565b600080604083850312156120a657600080fd5b6120af83611ed0565b946020939093013593505050565b6000602082840312156120cf57600080fd5b611f1782611eec565b6000602082840312156120ea57600080fd5b8135611f1781612405565b60006020828403121561210757600080fd5b8151611f1781612405565b60006020828403121561212457600080fd5b5035919050565b60008151808452612143816020860160208601612317565b601f01601f19169290920160200192915050565b7f697066733a2f2f62616679626569656d6278746d7376367a746d787274346c6d81527f6266726a37703634726a787836753379623437726476726f6d6f6774796b366760208201526270712f60e81b6040820152600082516121c1816043850160208701612317565b64173539b7b760d91b6043939091019283015250604801919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122109083018461212b565b9695505050505050565b602081526000611f17602083018461212b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156122c8576122c86123ad565b500190565b6000826122dc576122dc6123c3565b500490565b60008160001904831182151516156122fb576122fb6123ad565b500290565b600082821015612312576123126123ad565b500390565b60005b8381101561233257818101518382015260200161231a565b838111156110285750506000910152565b600181811c9082168061235757607f821691505b6020821081141561237857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612392576123926123ad565b5060010190565b6000826123a8576123a86123c3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461166e57600080fdfea26469706673582212202f5bdbdfcdb4295cc420f5b619b229422b2ee1ba1239b615dc5d3e6d78791dab64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c80638da5cb5b116100ec578063c87b56dd1161008a578063d68c29d111610064578063d68c29d114610510578063e985e9c514610518578063f2fde38b14610561578063f629dd0b1461058157600080fd5b8063c87b56dd146104ba578063d54bc010146104da578063d640d955146104fa57600080fd5b8063a69bfaf5116100c6578063a69bfaf514610437578063ae842caa1461044d578063b88d4fde1461047a578063c76455261461049a57600080fd5b80638da5cb5b146103e457806395d89b4114610402578063a22cb4651461041757600080fd5b806342842e0e1161015957806365ea720a1161013357806365ea720a1461036f57806370a082311461038f578063715018a6146103af5780638cdc2877146103c457600080fd5b806342842e0e1461030f5780634f6ccce71461032f5780636352211e1461034f57600080fd5b8063095ea7b311610195578063095ea7b31461028e57806318160ddd146102b057806323b872dd146102cf5780632f745c59146102ef57600080fd5b806301ffc9a7146101ff57806306fdde0314610234578063081812fc1461025657600080fd5b366101fa57604080513381523460208201527f737c69225d647e5994eab1a6c301bf6d9232beb2759ae1e27a8966b4732bc489910160405180910390a1005b600080fd5b34801561020b57600080fd5b5061021f61021a3660046120d8565b61059b565b60405190151581526020015b60405180910390f35b34801561024057600080fd5b50610249610608565b60405161022b919061221a565b34801561026257600080fd5b50610276610271366004612112565b61069a565b6040516001600160a01b03909116815260200161022b565b34801561029a57600080fd5b506102ae6102a9366004612093565b61072a565b005b3480156102bc57600080fd5b506000545b60405190815260200161022b565b3480156102db57600080fd5b506102ae6102ea366004611f51565b610842565b3480156102fb57600080fd5b506102c161030a366004612093565b61084d565b34801561031b57600080fd5b506102ae61032a366004611f51565b6109aa565b34801561033b57600080fd5b506102c161034a366004612112565b6109c5565b34801561035b57600080fd5b5061027661036a366004612112565b610a27565b34801561037b57600080fd5b506102ae61038a366004612112565b610a39565b34801561039b57600080fd5b506102c16103aa366004611efc565b610b42565b3480156103bb57600080fd5b506102ae610bd3565b3480156103d057600080fd5b506102ae6103df366004612093565b610c09565b3480156103f057600080fd5b506007546001600160a01b0316610276565b34801561040e57600080fd5b50610249610f21565b34801561042357600080fd5b506102ae610432366004612069565b610f30565b34801561044357600080fd5b506102c1600b5481565b34801561045957600080fd5b506102c1610468366004611efc565b600c6020526000908152604090205481565b34801561048657600080fd5b506102ae610495366004611f8d565b610ff5565b3480156104a657600080fd5b506102ae6104b53660046120bd565b61102e565b3480156104c657600080fd5b506102496104d5366004612112565b61106b565b3480156104e657600080fd5b506102ae6104f5366004612112565b61110b565b34801561050657600080fd5b506102c1600a5481565b6102ae61113a565b34801561052457600080fd5b5061021f610533366004611f1e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056d57600080fd5b506102ae61057c366004611efc565b6115d6565b34801561058d57600080fd5b5060095461021f9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806105cc57506001600160e01b03198216635b5e139f60e01b145b806105e757506001600160e01b0319821663780e9d6360e01b145b8061060257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061790612343565b80601f016020809104026020016040519081016040528092919081815260200182805461064390612343565b80156106905780601f1061066557610100808354040283529160200191610690565b820191906000526020600020905b81548152906001019060200180831161067357829003601f168201915b5050505050905090565b60006106a7826000541190565b61070e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073582610a27565b9050806001600160a01b0316836001600160a01b031614156107a45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610705565b336001600160a01b03821614806107c057506107c08133610533565b6108325760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610705565b61083d838383611671565b505050565b61083d8383836116cd565b600061085883610b42565b82106108b15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610705565b600080549080805b8381101561094a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090c57805192505b876001600160a01b0316836001600160a01b03161415610941578684141561093a5750935061060292505050565b6001909301925b506001016108b9565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610705565b61083d83838360405180602001604052806000815250610ff5565b600080548210610a235760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610705565b5090565b6000610a32826119b2565b5192915050565b60026008541415610a8c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610705565b600260085560095460ff16610aa057600080fd5b60008111610aad57600080fd5b600b54811115610abc57600080fd5b600b54336000908152600c6020526040902054610ad990836122b5565b1115610ae457600080fd5b600054600a54610af483836122b5565b1115610aff57600080fd5b333214610b0b57600080fd5b610b153383611a89565b336000908152600c602052604081208054849290610b349084906122b5565b909155505060016008555050565b60006001600160a01b038216610bae5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610705565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610bfd5760405162461bcd60e51b81526004016107059061222d565b610c076000611aa7565b565b73faf4bf4478d0f4f5369e54040ba9842d34cde1d8331480610c3e575073c20936e90c0160cf2000d03778f29da92a07d5e233145b80610c5c5750738135010b847aee3ac26932d183380554c97cf71333145b80610c7a5750737fb57f7fe48b58f29af38ac2c7c5afafab6a390d33145b80610c98575073416eb5f32e77f35deacfa364b83b6ab2c84ea04b33145b80610cb657507318d8a7bf97ef13491f0f8cec9a23f4a794031d0833145b80610cd45750731c81b8d4f57aa7cdbc2bdb6e4060a78108d0235433145b80610cf2575073f942eae33d0ad226f0c519a80dcb8c49ca8004db33145b80610d10575073faac923054e7885bb89e25a52b0981dadf2cfe4533145b80610d2e575073c7d7cc95ded3b8c81f17af0e65def2d4abb366f733145b8015610eb4575073faf4bf4478d0f4f5369e54040ba9842d34cde1d86001600160a01b0383161480610d7c575073c20936e90c0160cf2000d03778f29da92a07d5e26001600160a01b038316145b80610da35750738135010b847aee3ac26932d183380554c97cf7136001600160a01b038316145b80610dca5750737fb57f7fe48b58f29af38ac2c7c5afafab6a390d6001600160a01b038316145b80610df1575073416eb5f32e77f35deacfa364b83b6ab2c84ea04b6001600160a01b038316145b80610e1857507318d8a7bf97ef13491f0f8cec9a23f4a794031d086001600160a01b038316145b80610e3f5750731c81b8d4f57aa7cdbc2bdb6e4060a78108d023546001600160a01b038316145b80610e66575073f942eae33d0ad226f0c519a80dcb8c49ca8004db6001600160a01b038316145b80610e8d575073faac923054e7885bb89e25a52b0981dadf2cfe456001600160a01b038316145b80610eb4575073c7d7cc95ded3b8c81f17af0e65def2d4abb366f76001600160a01b038316145b610ebd57600080fd5b6000546032821115610ece57600080fd5b600a54610edb83836122b5565b1115610ee657600080fd5b6001600160a01b0383166000908152600c6020526040902054603290610f0c90846122b5565b1115610f1757600080fd5b61083d8383611a89565b60606002805461061790612343565b6001600160a01b038216331415610f895760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610705565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110008484846116cd565b61100c84848484611af9565b6110285760405162461bcd60e51b815260040161070590612262565b50505050565b6007546001600160a01b031633146110585760405162461bcd60e51b81526004016107059061222d565b6009805460ff1916911515919091179055565b6060611078826000541190565b6110dc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610705565b6110e582611c07565b6040516020016110f59190612157565b6040516020818303038152906040529050919050565b6007546001600160a01b031633146111355760405162461bcd60e51b81526004016107059061222d565b600b55565b6007546001600160a01b031633146111645760405162461bcd60e51b81526004016107059061222d565b47600073faf4bf4478d0f4f5369e54040ba9842d34cde1d8606461118984600b6122e1565b61119391906122cd565b604051600081818185875af1925050503d80600081146111cf576040519150601f19603f3d011682016040523d82523d6000602084013e6111d4565b606091505b50509050806111e257600080fd5b600073c20936e90c0160cf2000d03778f29da92a07d5e2606461120685600c6122e1565b61121091906122cd565b604051600081818185875af1925050503d806000811461124c576040519150601f19603f3d011682016040523d82523d6000602084013e611251565b606091505b505090508061125f57600080fd5b6000738135010b847aee3ac26932d183380554c97cf713606461128386600b6122e1565b61128d91906122cd565b604051600081818185875af1925050503d80600081146112c9576040519150601f19603f3d011682016040523d82523d6000602084013e6112ce565b606091505b50509050806112dc57600080fd5b6000737fb57f7fe48b58f29af38ac2c7c5afafab6a390d606461130087600b6122e1565b61130a91906122cd565b604051600081818185875af1925050503d8060008114611346576040519150601f19603f3d011682016040523d82523d6000602084013e61134b565b606091505b505090508061135957600080fd5b600073416eb5f32e77f35deacfa364b83b6ab2c84ea04b606461137d88600b6122e1565b61138791906122cd565b604051600081818185875af1925050503d80600081146113c3576040519150601f19603f3d011682016040523d82523d6000602084013e6113c8565b606091505b50509050806113d657600080fd5b60007318d8a7bf97ef13491f0f8cec9a23f4a794031d0860646113fa89600b6122e1565b61140491906122cd565b604051600081818185875af1925050503d8060008114611440576040519150601f19603f3d011682016040523d82523d6000602084013e611445565b606091505b505090508061145357600080fd5b6000731c81b8d4f57aa7cdbc2bdb6e4060a78108d0235460646114778a600b6122e1565b61148191906122cd565b604051600081818185875af1925050503d80600081146114bd576040519150601f19603f3d011682016040523d82523d6000602084013e6114c2565b606091505b50509050806114d057600080fd5b600073f942eae33d0ad226f0c519a80dcb8c49ca8004db60646114f48b600b6122e1565b6114fe91906122cd565b604051600081818185875af1925050503d806000811461153a576040519150601f19603f3d011682016040523d82523d6000602084013e61153f565b606091505b505090508061154d57600080fd5b600073faac923054e7885bb89e25a52b0981dadf2cfe4560646115718c600b6122e1565b61157b91906122cd565b604051600081818185875af1925050503d80600081146115b7576040519150601f19603f3d011682016040523d82523d6000602084013e6115bc565b606091505b50509050806115ca57600080fd5b50505050505050505050565b6007546001600160a01b031633146116005760405162461bcd60e51b81526004016107059061222d565b6001600160a01b0381166116655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610705565b61166e81611aa7565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116d8826119b2565b80519091506000906001600160a01b0316336001600160a01b0316148061170f5750336117048461069a565b6001600160a01b0316145b80611721575081516117219033610533565b90508061178b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610705565b846001600160a01b031682600001516001600160a01b0316146117ff5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610705565b6001600160a01b0384166118635760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610705565b6118736000848460000151611671565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119685761191b816000541190565b15611968578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526119d1826000541190565b611a305760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610705565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a7f579392505050565b5060001901611a32565b611aa3828260405180602001604052806000815250611d05565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611bfb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b3d9033908990889088906004016121dd565b602060405180830381600087803b158015611b5757600080fd5b505af1925050508015611b87575060408051601f3d908101601f19168201909252611b84918101906120f5565b60015b611be1573d808015611bb5576040519150601f19603f3d011682016040523d82523d6000602084013e611bba565b606091505b508051611bd95760405162461bcd60e51b815260040161070590612262565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bff565b5060015b949350505050565b606081611c2b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c555780611c3f8161237e565b9150611c4e9050600a836122cd565b9150611c2f565b60008167ffffffffffffffff811115611c7057611c706123ef565b6040519080825280601f01601f191660200182016040528015611c9a576020820181803683370190505b5090505b8415611bff57611caf600183612300565b9150611cbc600a86612399565b611cc79060306122b5565b60f81b818381518110611cdc57611cdc6123d9565b60200101906001600160f81b031916908160001a905350611cfe600a866122cd565b9450611c9e565b61083d83838360016000546001600160a01b038516611d705760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610705565b83611dce5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610705565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ec75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ebb57611e9f6000888488611af9565b611ebb5760405162461bcd60e51b815260040161070590612262565b60019182019101611e4c565b506000556119ab565b80356001600160a01b0381168114611ee757600080fd5b919050565b80358015158114611ee757600080fd5b600060208284031215611f0e57600080fd5b611f1782611ed0565b9392505050565b60008060408385031215611f3157600080fd5b611f3a83611ed0565b9150611f4860208401611ed0565b90509250929050565b600080600060608486031215611f6657600080fd5b611f6f84611ed0565b9250611f7d60208501611ed0565b9150604084013590509250925092565b60008060008060808587031215611fa357600080fd5b611fac85611ed0565b9350611fba60208601611ed0565b925060408501359150606085013567ffffffffffffffff80821115611fde57600080fd5b818701915087601f830112611ff257600080fd5b813581811115612004576120046123ef565b604051601f8201601f19908116603f0116810190838211818310171561202c5761202c6123ef565b816040528281528a602084870101111561204557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561207c57600080fd5b61208583611ed0565b9150611f4860208401611eec565b600080604083850312156120a657600080fd5b6120af83611ed0565b946020939093013593505050565b6000602082840312156120cf57600080fd5b611f1782611eec565b6000602082840312156120ea57600080fd5b8135611f1781612405565b60006020828403121561210757600080fd5b8151611f1781612405565b60006020828403121561212457600080fd5b5035919050565b60008151808452612143816020860160208601612317565b601f01601f19169290920160200192915050565b7f697066733a2f2f62616679626569656d6278746d7376367a746d787274346c6d81527f6266726a37703634726a787836753379623437726476726f6d6f6774796b366760208201526270712f60e81b6040820152600082516121c1816043850160208701612317565b64173539b7b760d91b6043939091019283015250604801919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122109083018461212b565b9695505050505050565b602081526000611f17602083018461212b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156122c8576122c86123ad565b500190565b6000826122dc576122dc6123c3565b500490565b60008160001904831182151516156122fb576122fb6123ad565b500290565b600082821015612312576123126123ad565b500390565b60005b8381101561233257818101518382015260200161231a565b838111156110285750506000910152565b600181811c9082168061235757607f821691505b6020821081141561237857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612392576123926123ad565b5060010190565b6000826123a8576123a86123c3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461166e57600080fdfea26469706673582212202f5bdbdfcdb4295cc420f5b619b229422b2ee1ba1239b615dc5d3e6d78791dab64736f6c63430008070033
Deployed Bytecode Sourcemap
42146:5243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45179:27;;;45184:10;5742:51:1;;45196:9:0;5824:2:1;5809:18;;5802:34;45179:27:0;;5715:18:1;45179:27:0;;;;;;;42146:5243;;;;;26311:372;;;;;;;;;;-1:-1:-1;26311:372:0;;;;;:::i;:::-;;:::i;:::-;;;6012:14:1;;6005:22;5987:41;;5975:2;5960:18;26311:372:0;;;;;;;;28197:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29751:214::-;;;;;;;;;;-1:-1:-1;29751:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5031:32:1;;;5013:51;;5001:2;4986:18;29751:214:0;4867:203:1;29272:413:0;;;;;;;;;;-1:-1:-1;29272:413:0;;;;;:::i;:::-;;:::i;:::-;;24568:100;;;;;;;;;;-1:-1:-1;24621:7:0;24648:12;24568:100;;;14475:25:1;;;14463:2;14448:18;24568:100:0;14329:177:1;30627:162:0;;;;;;;;;;-1:-1:-1;30627:162:0;;;;;:::i;:::-;;:::i;25232:1007::-;;;;;;;;;;-1:-1:-1;25232:1007:0;;;;;:::i;:::-;;:::i;30860:177::-;;;;;;;;;;-1:-1:-1;30860:177:0;;;;;:::i;:::-;;:::i;24745:187::-;;;;;;;;;;-1:-1:-1;24745:187:0;;;;;:::i;:::-;;:::i;28006:124::-;;;;;;;;;;-1:-1:-1;28006:124:0;;;;;:::i;:::-;;:::i;42581:487::-;;;;;;;;;;-1:-1:-1;42581:487:0;;;;;:::i;:::-;;:::i;26747:221::-;;;;;;;;;;-1:-1:-1;26747:221:0;;;;;:::i;:::-;;:::i;5714:94::-;;;;;;;;;;;;;:::i;43074:1894::-;;;;;;;;;;-1:-1:-1;43074:1894:0;;;;;:::i;:::-;;:::i;5063:87::-;;;;;;;;;;-1:-1:-1;5136:6:0;;-1:-1:-1;;;;;5136:6:0;5063:87;;28366:104;;;;;;;;;;;;;:::i;30037:288::-;;;;;;;;;;-1:-1:-1;30037:288:0;;;;;:::i;:::-;;:::i;42327:29::-;;;;;;;;;;;;;;;;42363:40;;;;;;;;;;-1:-1:-1;42363:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;31108:355;;;;;;;;;;-1:-1:-1;31108:355:0;;;;;:::i;:::-;;:::i;44976:103::-;;;;;;;;;;-1:-1:-1;44976:103:0;;;;;:::i;:::-;;:::i;28541:327::-;;;;;;;;;;-1:-1:-1;28541:327:0;;;;;:::i;:::-;;:::i;42470:105::-;;;;;;;;;;-1:-1:-1;42470:105:0;;;;;:::i;:::-;;:::i;42291:29::-;;;;;;;;;;;;;;;;45222:2164;;;:::i;30396:164::-;;;;;;;;;;-1:-1:-1;30396:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30517:25:0;;;30493:4;30517:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30396:164;5963:192;;;;;;;;;;-1:-1:-1;5963:192:0;;;;;:::i;:::-;;:::i;42252:32::-;;;;;;;;;;-1:-1:-1;42252:32:0;;;;;;;;26311:372;26413:4;-1:-1:-1;;;;;;26450:40:0;;-1:-1:-1;;;26450:40:0;;:105;;-1:-1:-1;;;;;;;26507:48:0;;-1:-1:-1;;;26507:48:0;26450:105;:172;;;-1:-1:-1;;;;;;;26572:50:0;;-1:-1:-1;;;26572:50:0;26450:172;:225;;;-1:-1:-1;;;;;;;;;;16792:40:0;;;26639:36;26430:245;26311:372;-1:-1:-1;;26311:372:0:o;28197:100::-;28251:13;28284:5;28277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28197:100;:::o;29751:214::-;29819:7;29847:16;29855:7;31775:4;31809:12;-1:-1:-1;31799:22:0;31718:111;29847:16;29839:74;;;;-1:-1:-1;;;29839:74:0;;14117:2:1;29839:74:0;;;14099:21:1;14156:2;14136:18;;;14129:30;14195:34;14175:18;;;14168:62;-1:-1:-1;;;14246:18:1;;;14239:43;14299:19;;29839:74:0;;;;;;;;;-1:-1:-1;29933:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29933:24:0;;29751:214::o;29272:413::-;29345:13;29361:24;29377:7;29361:15;:24::i;:::-;29345:40;;29410:5;-1:-1:-1;;;;;29404:11:0;:2;-1:-1:-1;;;;;29404:11:0;;;29396:58;;;;-1:-1:-1;;;29396:58:0;;11292:2:1;29396:58:0;;;11274:21:1;11331:2;11311:18;;;11304:30;11370:34;11350:18;;;11343:62;-1:-1:-1;;;11421:18:1;;;11414:32;11463:19;;29396:58:0;11090:398:1;29396:58:0;3960:10;-1:-1:-1;;;;;29489:21:0;;;;:62;;-1:-1:-1;29514:37:0;29531:5;3960:10;30396:164;:::i;29514:37::-;29467:169;;;;-1:-1:-1;;;29467:169:0;;8496:2:1;29467:169:0;;;8478:21:1;8535:2;8515:18;;;8508:30;8574:34;8554:18;;;8547:62;8645:27;8625:18;;;8618:55;8690:19;;29467:169:0;8294:421:1;29467:169:0;29649:28;29658:2;29662:7;29671:5;29649:8;:28::i;:::-;29334:351;29272:413;;:::o;30627:162::-;30753:28;30763:4;30769:2;30773:7;30753:9;:28::i;25232:1007::-;25321:7;25357:16;25367:5;25357:9;:16::i;:::-;25349:5;:24;25341:71;;;;-1:-1:-1;;;25341:71:0;;6465:2:1;25341:71:0;;;6447:21:1;6504:2;6484:18;;;6477:30;6543:34;6523:18;;;6516:62;-1:-1:-1;;;6594:18:1;;;6587:32;6636:19;;25341:71:0;6263:398:1;25341:71:0;25423:22;24648:12;;;25423:22;;25686:466;25706:14;25702:1;:18;25686:466;;;25746:31;25780:14;;;:11;:14;;;;;;;;;25746:48;;;;;;;;;-1:-1:-1;;;;;25746:48:0;;;;;-1:-1:-1;;;25746:48:0;;;;;;;;;;;;25817:28;25813:111;;25890:14;;;-1:-1:-1;25813:111:0;25967:5;-1:-1:-1;;;;;25946:26:0;:17;-1:-1:-1;;;;;25946:26:0;;25942:195;;;26016:5;26001:11;:20;25997:85;;;-1:-1:-1;26057:1:0;-1:-1:-1;26050:8:0;;-1:-1:-1;;;26050:8:0;25997:85;26104:13;;;;;25942:195;-1:-1:-1;25722:3:0;;25686:466;;;-1:-1:-1;26175:56:0;;-1:-1:-1;;;26175:56:0;;12926:2:1;26175:56:0;;;12908:21:1;12965:2;12945:18;;;12938:30;13004:34;12984:18;;;12977:62;-1:-1:-1;;;13055:18:1;;;13048:44;13109:19;;26175:56:0;12724:410:1;30860:177:0;30990:39;31007:4;31013:2;31017:7;30990:39;;;;;;;;;;;;:16;:39::i;24745:187::-;24812:7;24648:12;;24840:5;:21;24832:69;;;;-1:-1:-1;;;24832:69:0;;7686:2:1;24832:69:0;;;7668:21:1;7725:2;7705:18;;;7698:30;7764:34;7744:18;;;7737:62;-1:-1:-1;;;7815:18:1;;;7808:33;7858:19;;24832:69:0;7484:399:1;24832:69:0;-1:-1:-1;24919:5:0;24745:187::o;28006:124::-;28070:7;28097:20;28109:7;28097:11;:20::i;:::-;:25;;28006:124;-1:-1:-1;;28006:124:0:o;42581:487::-;41172:1;41770:7;;:19;;41762:63;;;;-1:-1:-1;;;41762:63:0;;13341:2:1;41762:63:0;;;13323:21:1;13380:2;13360:18;;;13353:30;13419:33;13399:18;;;13392:61;13470:18;;41762:63:0;13139:355:1;41762:63:0;41172:1;41903:7;:18;42662:12:::1;::::0;::::1;;42654:21;;;::::0;::::1;;42709:1;42694:12;:16;42686:25;;;::::0;::::1;;42746:10;;42730:12;:26;;42722:35;;;::::0;::::1;;42812:10;::::0;42797::::1;42791:17;::::0;;;:5:::1;:17;::::0;;;;;42776:32:::1;::::0;:12;:32:::1;:::i;:::-;:46;;42768:55;;;::::0;::::1;;42835:19;24648:12:::0;42919:7:::1;::::0;42889:26:::1;42903:12:::0;24648;42889:26:::1;:::i;:::-;:37;;42881:46;;;::::0;::::1;;42946:10;42960:9;42946:23;42938:32;;;::::0;::::1;;42981:35;42991:10;43003:12;42981:9;:35::i;:::-;43033:10;43027:17;::::0;;;:5:::1;:17;::::0;;;;:33;;43048:12;;43027:17;:33:::1;::::0;43048:12;;43027:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;41128:1:0;42082:7;:22;-1:-1:-1;;42581:487:0:o;26747:221::-;26811:7;-1:-1:-1;;;;;26839:19:0;;26831:75;;;;-1:-1:-1;;;26831:75:0;;8922:2:1;26831:75:0;;;8904:21:1;8961:2;8941:18;;;8934:30;9000:34;8980:18;;;8973:62;-1:-1:-1;;;9051:18:1;;;9044:41;9102:19;;26831:75:0;8720:407:1;26831:75:0;-1:-1:-1;;;;;;26932:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26932:27:0;;26747:221::o;5714:94::-;5136:6;;-1:-1:-1;;;;;5136:6:0;3960:10;5283:23;5275:68;;;;-1:-1:-1;;;5275:68:0;;;;;;;:::i;:::-;5779:21:::1;5797:1;5779:9;:21::i;:::-;5714:94::o:0;43074:1894::-;43174:42;43160:10;:56;;:135;;-1:-1:-1;43253:42:0;43239:10;:56;43160:135;:214;;;-1:-1:-1;43332:42:0;43318:10;:56;43160:214;:293;;;-1:-1:-1;43411:42:0;43397:10;:56;43160:293;:372;;;-1:-1:-1;43490:42:0;43476:10;:56;43160:372;:451;;;-1:-1:-1;43569:42:0;43555:10;:56;43160:451;:530;;;-1:-1:-1;43648:42:0;43634:10;:56;43160:530;:609;;;-1:-1:-1;43727:42:0;43713:10;:56;43160:609;:688;;;-1:-1:-1;43806:42:0;43792:10;:56;43160:688;:767;;;-1:-1:-1;43885:42:0;43871:10;:56;43160:767;43159:1559;;;;-1:-1:-1;43964:42:0;-1:-1:-1;;;;;43956:50:0;;;;:129;;-1:-1:-1;44043:42:0;-1:-1:-1;;;;;44035:50:0;;;43956:129;:208;;;-1:-1:-1;44122:42:0;-1:-1:-1;;;;;44114:50:0;;;43956:208;:287;;;-1:-1:-1;44201:42:0;-1:-1:-1;;;;;44193:50:0;;;43956:287;:366;;;-1:-1:-1;44280:42:0;-1:-1:-1;;;;;44272:50:0;;;43956:366;:445;;;-1:-1:-1;44359:42:0;-1:-1:-1;;;;;44351:50:0;;;43956:445;:524;;;-1:-1:-1;44438:42:0;-1:-1:-1;;;;;44430:50:0;;;43956:524;:603;;;-1:-1:-1;44517:42:0;-1:-1:-1;;;;;44509:50:0;;;43956:603;:682;;;-1:-1:-1;44596:42:0;-1:-1:-1;;;;;44588:50:0;;;43956:682;:761;;;-1:-1:-1;44675:42:0;-1:-1:-1;;;;;44667:50:0;;;43956:761;43151:1568;;;;;;44731:19;24648:12;44811:2;44795:18;;;44787:27;;;;;;44860:7;;44830:26;44844:12;44830:11;:26;:::i;:::-;:37;;44822:46;;;;;;-1:-1:-1;;;;;44902:11:0;;;;;;:5;:11;;;;;;44917:2;;44887:26;;:12;:26;:::i;:::-;:32;;44879:41;;;;;;44931:29;44941:4;44947:12;44931:9;:29::i;28366:104::-;28422:13;28455:7;28448:14;;;;;:::i;30037:288::-;-1:-1:-1;;;;;30132:24:0;;3960:10;30132:24;;30124:63;;;;-1:-1:-1;;;30124:63:0;;10518:2:1;30124:63:0;;;10500:21:1;10557:2;10537:18;;;10530:30;10596:28;10576:18;;;10569:56;10642:18;;30124:63:0;10316:350:1;30124:63:0;3960:10;30200:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30200:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30200:53:0;;;;;;;;;;30269:48;;5987:41:1;;;30200:42:0;;3960:10;30269:48;;5960:18:1;30269:48:0;;;;;;;30037:288;;:::o;31108:355::-;31267:28;31277:4;31283:2;31287:7;31267:9;:28::i;:::-;31328:48;31351:4;31357:2;31361:7;31370:5;31328:22;:48::i;:::-;31306:149;;;;-1:-1:-1;;;31306:149:0;;;;;;;:::i;:::-;31108:355;;;;:::o;44976:103::-;5136:6;;-1:-1:-1;;;;;5136:6:0;3960:10;5283:23;5275:68;;;;-1:-1:-1;;;5275:68:0;;;;;;;:::i;:::-;45043:12:::1;:28:::0;;-1:-1:-1;;45043:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44976:103::o;28541:327::-;28614:13;28648:16;28656:7;31775:4;31809:12;-1:-1:-1;31799:22:0;31718:111;28648:16;28640:76;;;;-1:-1:-1;;;28640:76:0;;10102:2:1;28640:76:0;;;10084:21:1;10141:2;10121:18;;;10114:30;10180:34;10160:18;;;10153:62;-1:-1:-1;;;10231:18:1;;;10224:45;10286:19;;28640:76:0;9900:411:1;28640:76:0;28831:18;:7;:16;:18::i;:::-;28743:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;28729:131;;28541:327;;;:::o;42470:105::-;5136:6;;-1:-1:-1;;;;;5136:6:0;3960:10;5283:23;5275:68;;;;-1:-1:-1;;;5275:68:0;;;;;;;:::i;:::-;42543:10:::1;:24:::0;42470:105::o;45222:2164::-;5136:6;;-1:-1:-1;;;;;5136:6:0;3960:10;5283:23;5275:68;;;;-1:-1:-1;;;5275:68:0;;;;;;;:::i;:::-;45394:21:::1;45375:16;45449:42;45521:3;45505:13;45394:21:::0;45516:2:::1;45505:13;:::i;:::-;:19;;;;:::i;:::-;45441:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45426:103;;;45548:2;45540:11;;;::::0;::::1;;45655:7;45677:42;45749:3;45733:13;:8:::0;45744:2:::1;45733:13;:::i;:::-;:19;;;;:::i;:::-;45669:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45654:103;;;45776:2;45768:11;;;::::0;::::1;;45883:8;45905:42;45977:3;45961:13;:8:::0;45972:2:::1;45961:13;:::i;:::-;:19;;;;:::i;:::-;45897:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45882:103;;;46004:3;45996:12;;;::::0;::::1;;46112:7;46134:42;46206:3;46190:13;:8:::0;46201:2:::1;46190:13;:::i;:::-;:19;;;;:::i;:::-;46126:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46111:103;;;46233:2;46225:11;;;::::0;::::1;;46340:7;46362:42;46434:3;46418:13;:8:::0;46429:2:::1;46418:13;:::i;:::-;:19;;;;:::i;:::-;46354:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46339:103;;;46461:2;46453:11;;;::::0;::::1;;46568:8;46590:42;46662:3;46646:13;:8:::0;46657:2:::1;46646:13;:::i;:::-;:19;;;;:::i;:::-;46582:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46567:103;;;46689:3;46681:12;;;::::0;::::1;;46797:8;46819:42;46891:3;46875:13;:8:::0;46886:2:::1;46875:13;:::i;:::-;:19;;;;:::i;:::-;46811:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46796:103;;;46918:3;46910:12;;;::::0;::::1;;47026:8;47048:42;47120:3;47104:13;:8:::0;47115:2:::1;47104:13;:::i;:::-;:19;;;;:::i;:::-;47040:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47025:103;;;47147:3;47139:12;;;::::0;::::1;;47255:8;47277:42;47349:3;47333:13;:8:::0;47344:2:::1;47333:13;:::i;:::-;:19;;;;:::i;:::-;47269:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47254:103;;;47376:3;47368:12;;;::::0;::::1;;45274:2112;;;;;;;;;;45222:2164::o:0;5963:192::-;5136:6;;-1:-1:-1;;;;;5136:6:0;3960:10;5283:23;5275:68;;;;-1:-1:-1;;;5275:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6052:22:0;::::1;6044:73;;;::::0;-1:-1:-1;;;6044:73:0;;6868:2:1;6044:73:0::1;::::0;::::1;6850:21:1::0;6907:2;6887:18;;;6880:30;6946:34;6926:18;;;6919:62;-1:-1:-1;;;6997:18:1;;;6990:36;7043:19;;6044:73:0::1;6666:402:1::0;6044:73:0::1;6128:19;6138:8;6128:9;:19::i;:::-;5963:192:::0;:::o;36638:196::-;36753:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36753:29:0;-1:-1:-1;;;;;36753:29:0;;;;;;;;;36798:28;;36753:24;;36798:28;;;;;;;36638:196;;;:::o;34518:2002::-;34633:35;34671:20;34683:7;34671:11;:20::i;:::-;34746:18;;34633:58;;-1:-1:-1;34704:22:0;;-1:-1:-1;;;;;34730:34:0;3960:10;-1:-1:-1;;;;;34730:34:0;;:87;;;-1:-1:-1;3960:10:0;34781:20;34793:7;34781:11;:20::i;:::-;-1:-1:-1;;;;;34781:36:0;;34730:87;:154;;;-1:-1:-1;34851:18:0;;34834:50;;3960:10;30396:164;:::i;34834:50::-;34704:181;;34906:17;34898:80;;;;-1:-1:-1;;;34898:80:0;;10873:2:1;34898:80:0;;;10855:21:1;10912:2;10892:18;;;10885:30;10951:34;10931:18;;;10924:62;-1:-1:-1;;;11002:18:1;;;10995:48;11060:19;;34898:80:0;10671:414:1;34898:80:0;35021:4;-1:-1:-1;;;;;34999:26:0;:13;:18;;;-1:-1:-1;;;;;34999:26:0;;34991:77;;;;-1:-1:-1;;;34991:77:0;;9334:2:1;34991:77:0;;;9316:21:1;9373:2;9353:18;;;9346:30;9412:34;9392:18;;;9385:62;-1:-1:-1;;;9463:18:1;;;9456:36;9509:19;;34991:77:0;9132:402:1;34991:77:0;-1:-1:-1;;;;;35087:16:0;;35079:66;;;;-1:-1:-1;;;35079:66:0;;8090:2:1;35079:66:0;;;8072:21:1;8129:2;8109:18;;;8102:30;8168:34;8148:18;;;8141:62;-1:-1:-1;;;8219:18:1;;;8212:35;8264:19;;35079:66:0;7888:401:1;35079:66:0;35266:49;35283:1;35287:7;35296:13;:18;;;35266:8;:49::i;:::-;-1:-1:-1;;;;;35611:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;35611:31:0;;;-1:-1:-1;;;;;35611:31:0;;;-1:-1:-1;;35611:31:0;;;;;;;35657:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35657:29:0;;;;;;;;;;;;;35703:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35748:61:0;;;;-1:-1:-1;;;35793:15:0;35748:61;;;;;;36083:11;;;36113:24;;;;;:29;36083:11;;36113:29;36109:295;;36181:20;36189:11;31775:4;31809:12;-1:-1:-1;31799:22:0;31718:111;36181:20;36177:212;;;36258:18;;;36226:24;;;:11;:24;;;;;;;;:50;;36341:28;;;;36299:70;;-1:-1:-1;;;36299:70:0;-1:-1:-1;;;;;;36299:70:0;;;-1:-1:-1;;;;;36226:50:0;;;36299:70;;;;;;;36177:212;35586:829;36451:7;36447:2;-1:-1:-1;;;;;36432:27:0;36441:4;-1:-1:-1;;;;;36432:27:0;;;;;;;;;;;36470:42;34622:1898;;34518:2002;;;:::o;27407:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;27510:16:0;27518:7;31775:4;31809:12;-1:-1:-1;31799:22:0;31718:111;27510:16;27502:71;;;;-1:-1:-1;;;27502:71:0;;7275:2:1;27502:71:0;;;7257:21:1;7314:2;7294:18;;;7287:30;7353:34;7333:18;;;7326:62;-1:-1:-1;;;7404:18:1;;;7397:40;7454:19;;27502:71:0;7073:406:1;27502:71:0;27631:7;27611:245;27678:31;27712:17;;;:11;:17;;;;;;;;;27678:51;;;;;;;;;-1:-1:-1;;;;;27678:51:0;;;;;-1:-1:-1;;;27678:51:0;;;;;;;;;;;;27752:28;27748:93;;27812:9;27407:537;-1:-1:-1;;;27407:537:0:o;27748:93::-;-1:-1:-1;;;27651:6:0;27611:245;;31837:104;31906:27;31916:2;31920:8;31906:27;;;;;;;;;;;;:9;:27::i;:::-;31837:104;;:::o;6163:173::-;6238:6;;;-1:-1:-1;;;;;6255:17:0;;;-1:-1:-1;;;;;;6255:17:0;;;;;;;6288:40;;6238:6;;;6255:17;6238:6;;6288:40;;6219:16;;6288:40;6208:128;6163:173;:::o;37399:804::-;37554:4;-1:-1:-1;;;;;37575:13:0;;7404:20;7452:8;37571:625;;37611:72;;-1:-1:-1;;;37611:72:0;;-1:-1:-1;;;;;37611:36:0;;;;;:72;;3960:10;;37662:4;;37668:7;;37677:5;;37611:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37611:72:0;;;;;;;;-1:-1:-1;;37611:72:0;;;;;;;;;;;;:::i;:::-;;;37607:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37857:13:0;;37853:273;;37900:61;;-1:-1:-1;;;37900:61:0;;;;;;;:::i;37853:273::-;38076:6;38070:13;38061:6;38057:2;38053:15;38046:38;37607:534;-1:-1:-1;;;;;;37734:55:0;-1:-1:-1;;;37734:55:0;;-1:-1:-1;37727:62:0;;37571:625;-1:-1:-1;38180:4:0;37571:625;37399:804;;;;;;:::o;1524:723::-;1580:13;1801:10;1797:53;;-1:-1:-1;;1828:10:0;;;;;;;;;;;;-1:-1:-1;;;1828:10:0;;;;;1524:723::o;1797:53::-;1875:5;1860:12;1916:78;1923:9;;1916:78;;1949:8;;;;:::i;:::-;;-1:-1:-1;1972:10:0;;-1:-1:-1;1980:2:0;1972:10;;:::i;:::-;;;1916:78;;;2004:19;2036:6;2026:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2026:17:0;;2004:39;;2054:154;2061:10;;2054:154;;2088:11;2098:1;2088:11;;:::i;:::-;;-1:-1:-1;2157:10:0;2165:2;2157:5;:10;:::i;:::-;2144:24;;:2;:24;:::i;:::-;2131:39;;2114:6;2121;2114:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2114:56:0;;;;;;;;-1:-1:-1;2185:11:0;2194:2;2185:11;;:::i;:::-;;;2054:154;;32304:163;32427:32;32433:2;32437:8;32447:5;32454:4;32865:20;32888:12;-1:-1:-1;;;;;32919:16:0;;32911:62;;;;-1:-1:-1;;;32911:62:0;;12115:2:1;32911:62:0;;;12097:21:1;12154:2;12134:18;;;12127:30;12193:34;12173:18;;;12166:62;-1:-1:-1;;;12244:18:1;;;12237:31;12285:19;;32911:62:0;11913:397:1;32911:62:0;32992:13;32984:66;;;;-1:-1:-1;;;32984:66:0;;12517:2:1;32984:66:0;;;12499:21:1;12556:2;12536:18;;;12529:30;12595:34;12575:18;;;12568:62;-1:-1:-1;;;12646:18:1;;;12639:38;12694:19;;32984:66:0;12315:404:1;32984:66:0;-1:-1:-1;;;;;33402:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;33402:45:0;;-1:-1:-1;;;;;33402:45:0;;;;;;;;;;33462:50;;;;;;;;;;;;;;33529:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;33579:66:0;;;;-1:-1:-1;;;33629:15:0;33579:66;;;;;;;33529:25;;33714:415;33734:8;33730:1;:12;33714:415;;;33773:38;;33798:12;;-1:-1:-1;;;;;33773:38:0;;;33790:1;;33773:38;;33790:1;;33773:38;33834:4;33830:249;;;33897:59;33928:1;33932:2;33936:12;33950:5;33897:22;:59::i;:::-;33863:196;;;;-1:-1:-1;;;33863:196:0;;;;;;;:::i;:::-;34099:14;;;;;33744:3;33714:415;;;-1:-1:-1;34145:12:0;:27;34196:60;31108:355;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;:::-;498:39;357:186;-1:-1:-1;;;357:186:1:o;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:180::-;3555:6;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;-1:-1:-1;3647:23:1;;3496:180;-1:-1:-1;3496:180:1:o;3681:257::-;3722:3;3760:5;3754:12;3787:6;3782:3;3775:19;3803:63;3859:6;3852:4;3847:3;3843:14;3836:4;3829:5;3825:16;3803:63;:::i;:::-;3920:2;3899:15;-1:-1:-1;;3895:29:1;3886:39;;;;3927:4;3882:50;;3681:257;-1:-1:-1;;3681:257:1:o;3943:709::-;4306:34;4301:3;4294:47;4371:34;4366:2;4361:3;4357:12;4350:56;-1:-1:-1;;;4431:2:1;4426:3;4422:12;4415:27;4276:3;4471:6;4465:13;4487:60;4540:6;4535:2;4530:3;4526:12;4521:2;4513:6;4509:15;4487:60;:::i;:::-;-1:-1:-1;;;4606:2:1;4566:16;;;;4598:11;;;4591:28;-1:-1:-1;4643:2:1;4635:11;;3943:709;-1:-1:-1;3943:709:1:o;5075:488::-;-1:-1:-1;;;;;5344:15:1;;;5326:34;;5396:15;;5391:2;5376:18;;5369:43;5443:2;5428:18;;5421:34;;;5491:3;5486:2;5471:18;;5464:31;;;5269:4;;5512:45;;5537:19;;5529:6;5512:45;:::i;:::-;5504:53;5075:488;-1:-1:-1;;;;;;5075:488:1:o;6039:219::-;6188:2;6177:9;6170:21;6151:4;6208:44;6248:2;6237:9;6233:18;6225:6;6208:44;:::i;9539:356::-;9741:2;9723:21;;;9760:18;;;9753:30;9819:34;9814:2;9799:18;;9792:62;9886:2;9871:18;;9539:356::o;11493:415::-;11695:2;11677:21;;;11734:2;11714:18;;;11707:30;11773:34;11768:2;11753:18;;11746:62;-1:-1:-1;;;11839:2:1;11824:18;;11817:49;11898:3;11883:19;;11493:415::o;14511:128::-;14551:3;14582:1;14578:6;14575:1;14572:13;14569:39;;;14588:18;;:::i;:::-;-1:-1:-1;14624:9:1;;14511:128::o;14644:120::-;14684:1;14710;14700:35;;14715:18;;:::i;:::-;-1:-1:-1;14749:9:1;;14644:120::o;14769:168::-;14809:7;14875:1;14871;14867:6;14863:14;14860:1;14857:21;14852:1;14845:9;14838:17;14834:45;14831:71;;;14882:18;;:::i;:::-;-1:-1:-1;14922:9:1;;14769:168::o;14942:125::-;14982:4;15010:1;15007;15004:8;15001:34;;;15015:18;;:::i;:::-;-1:-1:-1;15052:9:1;;14942:125::o;15072:258::-;15144:1;15154:113;15168:6;15165:1;15162:13;15154:113;;;15244:11;;;15238:18;15225:11;;;15218:39;15190:2;15183:10;15154:113;;;15285:6;15282:1;15279:13;15276:48;;;-1:-1:-1;;15320:1:1;15302:16;;15295:27;15072:258::o;15335:380::-;15414:1;15410:12;;;;15457;;;15478:61;;15532:4;15524:6;15520:17;15510:27;;15478:61;15585:2;15577:6;15574:14;15554:18;15551:38;15548:161;;;15631:10;15626:3;15622:20;15619:1;15612:31;15666:4;15663:1;15656:15;15694:4;15691:1;15684:15;15548:161;;15335:380;;;:::o;15720:135::-;15759:3;-1:-1:-1;;15780:17:1;;15777:43;;;15800:18;;:::i;:::-;-1:-1:-1;15847:1:1;15836:13;;15720:135::o;15860:112::-;15892:1;15918;15908:35;;15923:18;;:::i;:::-;-1:-1:-1;15957:9:1;;15860:112::o;15977:127::-;16038:10;16033:3;16029:20;16026:1;16019:31;16069:4;16066:1;16059:15;16093:4;16090:1;16083:15;16109:127;16170:10;16165:3;16161:20;16158:1;16151:31;16201:4;16198:1;16191:15;16225:4;16222:1;16215:15;16241:127;16302:10;16297:3;16293:20;16290:1;16283:31;16333:4;16330:1;16323:15;16357:4;16354:1;16347:15;16373:127;16434:10;16429:3;16425:20;16422:1;16415:31;16465:4;16462:1;16455:15;16489:4;16486:1;16479:15;16505:131;-1:-1:-1;;;;;;16579:32:1;;16569:43;;16559:71;;16626:1;16623;16616:12
Swarm Source
ipfs://2f5bdbdfcdb4295cc420f5b619b229422b2ee1ba1239b615dc5d3e6d78791dab
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.