ERC-721
Overview
Max Total Supply
4,732 DWARF
Holders
614
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 DWARFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DWARFtownwtf
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-02 */ //DwarfTown.WTF // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOnwer() { 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 onlyOnwer { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOnwer { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @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); /** * @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 @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File erc721a/contracts/[email protected] // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). */ abstract contract Owneable is Ownable { address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1; modifier onlyOwner() { require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner"); _; } } /* * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract DWARFtownwtf is ERC721A, Owneable { string public baseURI = "ipfs://QmQNcZsEjGhaU5SVomVSf7qfoS11SnPxSg8qcY4DbUY13x/"; string public contractURI = "ipfs://QmNNRoJKAjJRWKenhAYAosoiL4cAxf825mvDnyrwnvqDB1"; string public constant baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public constant MAX_PER_TX_FREE = 3; uint256 public FREE_MAX_SUPPLY = 555; uint256 public constant MAX_PER_TX = 20; uint256 public MAX_SUPPLY = 5555; uint256 public price = 0.002 ether; bool public paused = false; constructor() ERC721A("DWARFtown.wtf", "DWARF") {} function mint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); require(MAX_PER_TX >= _amount , "Excess max per paid tx"); if(FREE_MAX_SUPPLY >= totalSupply()){ require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx"); }else{ require(MAX_PER_TX >= _amount , "Excess max per paid tx"); require(_amount * price == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function configure() external onlyOwner { _safeMint(_msgSender(), 1); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function configPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function configMAX_SUPPLY(uint256 newSupply) public onlyOwner { MAX_SUPPLY = newSupply; } function configFREE_MAX_SUPPLY(uint256 newFreesupply) public onlyOwner { FREE_MAX_SUPPLY = newFreesupply; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configFREE_MAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"configure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600980546001600160a01b031916735bb656bb4312f100081abb7b08c1e0f8ef5c56d117905560e060405260366080818152906200275860a03980516200004f91600a9160209091019062000182565b50604051806060016040528060358152602001620027236035913980516200008091600b9160209091019062000182565b5061022b600c556115b3600d5566071afd498d0000600e55600f805460ff19169055348015620000af57600080fd5b50604080518082018252600d81526c222ba0a9233a37bbb7173bba3360991b602080830191825283518085019094526005845264222ba0a92360d91b908401528151919291620001029160029162000182565b5080516200011890600390602084019062000182565b505060008055506200012a3362000130565b62000264565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001909062000228565b90600052602060002090601f016020900481019282620001b45760008555620001ff565b82601f10620001cf57805160ff1916838001178555620001ff565b82800160010185558215620001ff579182015b82811115620001ff578251825591602001919060010190620001e2565b506200020d92915062000211565b5090565b5b808211156200020d576000815560010162000212565b600181811c908216806200023d57607f821691505b6020821081036200025e57634e487b7160e01b600052602260045260246000fd5b50919050565b6124af80620002746000396000f3fe60806040526004361061024f5760003560e01c8063715018a611610138578063c6682862116100b0578063e8a3d4851161007f578063edbb99bf11610064578063edbb99bf14610641578063f2fde38b14610661578063f43a22dc1461068157600080fd5b8063e8a3d4851461060c578063e985e9c51461062157600080fd5b8063c668286214610573578063c87b56dd146105a4578063cd7c0326146105c4578063db4a0f61146105ec57600080fd5b806395d89b4111610107578063a0712d68116100ec578063a0712d6814610520578063a22cb46514610533578063b88d4fde1461055357600080fd5b806395d89b41146104f5578063a035b1fe1461050a57600080fd5b8063715018a61461048c5780638069876d146104a15780638da5cb5b146104b7578063938e3d7b146104d557600080fd5b80633d2abb99116101cb57806355f804b31161019a5780636352211e1161017f5780636352211e146104375780636c0360eb1461045757806370a082311461046c57600080fd5b806355f804b3146103fd5780635c975abb1461041d57600080fd5b80633d2abb99146103935780633e0b1a23146103b357806342842e0e146103c8578063463fff79146103e857600080fd5b8063095ea7b31161022257806323b872dd1161020757806323b872dd1461034857806332cb6b0c146103685780633ccfd60b1461037e57600080fd5b8063095ea7b31461030557806318160ddd1461032557600080fd5b806301ffc9a71461025457806302329a291461028957806306fdde03146102ab578063081812fc146102cd575b600080fd5b34801561026057600080fd5b5061027461026f366004611efc565b610696565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b506102a96102a4366004611f35565b610733565b005b3480156102b757600080fd5b506102c06107ba565b6040516102809190611fa8565b3480156102d957600080fd5b506102ed6102e8366004611fbb565b61084c565b6040516001600160a01b039091168152602001610280565b34801561031157600080fd5b506102a9610320366004611fe9565b6108a9565b34801561033157600080fd5b50600154600054035b604051908152602001610280565b34801561035457600080fd5b506102a9610363366004612015565b610968565b34801561037457600080fd5b5061033a600d5481565b34801561038a57600080fd5b506102a9610973565b34801561039f57600080fd5b506102a96103ae366004611fbb565b610a80565b3480156103bf57600080fd5b506102a9610af4565b3480156103d457600080fd5b506102a96103e3366004612015565b610b70565b3480156103f457600080fd5b5061033a600381565b34801561040957600080fd5b506102a96104183660046120e2565b610b8b565b34801561042957600080fd5b50600f546102749060ff1681565b34801561044357600080fd5b506102ed610452366004611fbb565b610c0d565b34801561046357600080fd5b506102c0610c1f565b34801561047857600080fd5b5061033a61048736600461212b565b610cad565b34801561049857600080fd5b506102a9610d15565b3480156104ad57600080fd5b5061033a600c5481565b3480156104c357600080fd5b506008546001600160a01b03166102ed565b3480156104e157600080fd5b506102a96104f03660046120e2565b610d79565b34801561050157600080fd5b506102c0610dfb565b34801561051657600080fd5b5061033a600e5481565b6102a961052e366004611fbb565b610e0a565b34801561053f57600080fd5b506102a961054e366004612148565b6110dd565b34801561055f57600080fd5b506102a961056e36600461217d565b61118b565b34801561057f57600080fd5b506102c060405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105b057600080fd5b506102c06105bf366004611fbb565b6111dc565b3480156105d057600080fd5b506102ed73a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156105f857600080fd5b506102a9610607366004611fbb565b6112ae565b34801561061857600080fd5b506102c0611322565b34801561062d57600080fd5b5061027461063c3660046121fd565b61132f565b34801561064d57600080fd5b506102a961065c366004611fbb565b611417565b34801561066d57600080fd5b506102a961067c36600461212b565b61148b565b34801561068d57600080fd5b5061033a601481565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106f957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b031633148061075657506009546001600160a01b031633145b6107a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f805460ff1916911515919091179055565b6060600280546107c990612236565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590612236565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b60006108578261156d565b61088d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b482610c0d565b9050806001600160a01b0316836001600160a01b031603610901576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610921575061091f813361132f565b155b15610958576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610963838383611598565b505050565b610963838383611601565b6008546001600160a01b031633148061099657506009546001600160a01b031633145b6109e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b6040514790600090339083908381818185875af1925050503d8060008114610a26576040519150601f19603f3d011682016040523d82523d6000602084013e610a2b565b606091505b5050905080610a7c5760405162461bcd60e51b815260206004820152600e60248201527f4661696c656420746f2073656e64000000000000000000000000000000000000604482015260640161079e565b5050565b6008546001600160a01b0316331480610aa357506009546001600160a01b031633145b610aef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b600c55565b6008546001600160a01b0316331480610b1757506009546001600160a01b031633145b610b635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b610b6e336001611863565b565b6109638383836040518060200160405280600081525061118b565b6008546001600160a01b0316331480610bae57506009546001600160a01b031633145b610bfa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b8051610a7c90600a906020840190611e4d565b6000610c188261187d565b5192915050565b600a8054610c2c90612236565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5890612236565b8015610ca55780601f10610c7a57610100808354040283529160200191610ca5565b820191906000526020600020905b815481529060010190602001808311610c8857829003601f168201915b505050505081565b60006001600160a01b038216610cef576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b610b6e60006119b2565b6008546001600160a01b0316331480610d9c57506009546001600160a01b031633145b610de85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b8051610a7c90600b906020840190611e4d565b6060600380546107c990612236565b600f54339060ff1615610e5f5760405162461bcd60e51b815260206004820152600660248201527f5061757365640000000000000000000000000000000000000000000000000000604482015260640161079e565b81610e6d6001546000540390565b610e779190612286565b600d541015610ec85760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c790000000000000000000000000000604482015260640161079e565b60008211610f185760405162461bcd60e51b815260206004820152600a60248201527f4e6f2030206d696e747300000000000000000000000000000000000000000000604482015260640161079e565b326001600160a01b03821614610f705760405162461bcd60e51b815260206004820152600c60248201527f4e6f20636f6e7472616374730000000000000000000000000000000000000000604482015260640161079e565b8160141015610fc15760405162461bcd60e51b815260206004820152601660248201527f457863657373206d617820706572207061696420747800000000000000000000604482015260640161079e565b60015460005403600c54106110265781600310156110215760405162461bcd60e51b815260206004820152601660248201527f457863657373206d617820706572206672656520747800000000000000000000604482015260640161079e565b6110d3565b81601410156110775760405162461bcd60e51b815260206004820152601660248201527f457863657373206d617820706572207061696420747800000000000000000000604482015260640161079e565b34600e5483611086919061229e565b146110d35760405162461bcd60e51b815260206004820152601660248201527f496e76616c69642066756e64732070726f766964656400000000000000000000604482015260640161079e565b610a7c8183611863565b336001600160a01b0383160361111f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611196848484611601565b6001600160a01b0383163b151580156111b857506111b684848484611a11565b155b156111d6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111e78261156d565b6112335760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000604482015260640161079e565b6000600a805461124290612236565b90501161125e576040518060200160405280600081525061072d565b600a61126983611afc565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611299939291906122d9565b60405160208183030381529060405292915050565b6008546001600160a01b03163314806112d157506009546001600160a01b031633145b61131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b600e55565b600b8054610c2c90612236565b6040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c455279190602401602060405180830381865afa1580156113a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cd9190612389565b6001600160a01b0316036113e557600191505061072d565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633148061143a57506009546001600160a01b031633145b6114865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b600d55565b6008546001600160a01b031633146114e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b6001600160a01b0381166115615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161079e565b61156a816119b2565b50565b600080548210801561072d575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061160c8261187d565b80519091506000906001600160a01b0316336001600160a01b0316148061163a5750815161163a903361132f565b8061165557503361164a8461084c565b6001600160a01b0316145b90508061168e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116dd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661171d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61172d6000848460000151611598565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661181957600054811015611819578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a7c828260405180602001604052806000815250611c31565b60408051606081018252600080825260208201819052918101919091528160005481101561198057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061197e5780516001600160a01b031615611914579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611979579392505050565b611914565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a469033908990889088906004016123a6565b6020604051808303816000875af1925050508015611a81575060408051601f3d908101601f19168201909252611a7e918101906123d8565b60015b611adf573d808015611aaf576040519150601f19603f3d011682016040523d82523d6000602084013e611ab4565b606091505b508051600003611ad7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606081600003611b3f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b695780611b53816123f5565b9150611b629050600a83612424565b9150611b43565b60008167ffffffffffffffff811115611b8457611b84612056565b6040519080825280601f01601f191660200182016040528015611bae576020820181803683370190505b5090505b841561140f57611bc3600183612438565b9150611bd0600a8661244f565b611bdb906030612286565b60f81b818381518110611bf057611bf0612463565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c2a600a86612424565b9450611bb2565b61096383838360016000546001600160a01b038516611c7c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600003611cb6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d7757506001600160a01b0387163b15155b15611dff575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dc86000888480600101955088611a11565b611de5576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d7d578260005414611dfa57600080fd5b611e44565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611e00575b5060005561185c565b828054611e5990612236565b90600052602060002090601f016020900481019282611e7b5760008555611ec1565b82601f10611e9457805160ff1916838001178555611ec1565b82800160010185558215611ec1579182015b82811115611ec1578251825591602001919060010190611ea6565b50611ecd929150611ed1565b5090565b5b80821115611ecd5760008155600101611ed2565b6001600160e01b03198116811461156a57600080fd5b600060208284031215611f0e57600080fd5b8135611f1981611ee6565b9392505050565b80358015158114611f3057600080fd5b919050565b600060208284031215611f4757600080fd5b611f1982611f20565b60005b83811015611f6b578181015183820152602001611f53565b838111156111d65750506000910152565b60008151808452611f94816020860160208601611f50565b601f01601f19169290920160200192915050565b602081526000611f196020830184611f7c565b600060208284031215611fcd57600080fd5b5035919050565b6001600160a01b038116811461156a57600080fd5b60008060408385031215611ffc57600080fd5b823561200781611fd4565b946020939093013593505050565b60008060006060848603121561202a57600080fd5b833561203581611fd4565b9250602084013561204581611fd4565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561208757612087612056565b604051601f8501601f19908116603f011681019082821181831017156120af576120af612056565b816040528093508581528686860111156120c857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120f457600080fd5b813567ffffffffffffffff81111561210b57600080fd5b8201601f8101841361211c57600080fd5b61140f8482356020840161206c565b60006020828403121561213d57600080fd5b8135611f1981611fd4565b6000806040838503121561215b57600080fd5b823561216681611fd4565b915061217460208401611f20565b90509250929050565b6000806000806080858703121561219357600080fd5b843561219e81611fd4565b935060208501356121ae81611fd4565b925060408501359150606085013567ffffffffffffffff8111156121d157600080fd5b8501601f810187136121e257600080fd5b6121f18782356020840161206c565b91505092959194509250565b6000806040838503121561221057600080fd5b823561221b81611fd4565b9150602083013561222b81611fd4565b809150509250929050565b600181811c9082168061224a57607f821691505b60208210810361226a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561229957612299612270565b500190565b60008160001904831182151516156122b8576122b8612270565b500290565b600081516122cf818560208601611f50565b9290920192915050565b600080855481600182811c9150808316806122f557607f831692505b6020808410820361231457634e487b7160e01b86526022600452602486fd5b818015612328576001811461233957612366565b60ff19861689528489019650612366565b60008c81526020902060005b8681101561235e5781548b820152908501908301612345565b505084890196505b50505050505061237f61237982876122bd565b856122bd565b9695505050505050565b60006020828403121561239b57600080fd5b8151611f1981611fd4565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261237f6080830184611f7c565b6000602082840312156123ea57600080fd5b8151611f1981611ee6565b60006001820161240757612407612270565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124335761243361240e565b500490565b60008282101561244a5761244a612270565b500390565b60008261245e5761245e61240e565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122018f2315e1bba156ea99c320e46d86a9f2dba906f072cc4696d8ee330fbd2a56c64736f6c634300080e0033697066733a2f2f516d4e4e526f4a4b416a4a52574b656e684159416f736f694c34634178663832356d76446e7972776e7671444231697066733a2f2f516d514e635a73456a476861553553566f6d5653663771666f533131536e507853673871635934446255593133782f
Deployed Bytecode
0x60806040526004361061024f5760003560e01c8063715018a611610138578063c6682862116100b0578063e8a3d4851161007f578063edbb99bf11610064578063edbb99bf14610641578063f2fde38b14610661578063f43a22dc1461068157600080fd5b8063e8a3d4851461060c578063e985e9c51461062157600080fd5b8063c668286214610573578063c87b56dd146105a4578063cd7c0326146105c4578063db4a0f61146105ec57600080fd5b806395d89b4111610107578063a0712d68116100ec578063a0712d6814610520578063a22cb46514610533578063b88d4fde1461055357600080fd5b806395d89b41146104f5578063a035b1fe1461050a57600080fd5b8063715018a61461048c5780638069876d146104a15780638da5cb5b146104b7578063938e3d7b146104d557600080fd5b80633d2abb99116101cb57806355f804b31161019a5780636352211e1161017f5780636352211e146104375780636c0360eb1461045757806370a082311461046c57600080fd5b806355f804b3146103fd5780635c975abb1461041d57600080fd5b80633d2abb99146103935780633e0b1a23146103b357806342842e0e146103c8578063463fff79146103e857600080fd5b8063095ea7b31161022257806323b872dd1161020757806323b872dd1461034857806332cb6b0c146103685780633ccfd60b1461037e57600080fd5b8063095ea7b31461030557806318160ddd1461032557600080fd5b806301ffc9a71461025457806302329a291461028957806306fdde03146102ab578063081812fc146102cd575b600080fd5b34801561026057600080fd5b5061027461026f366004611efc565b610696565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b506102a96102a4366004611f35565b610733565b005b3480156102b757600080fd5b506102c06107ba565b6040516102809190611fa8565b3480156102d957600080fd5b506102ed6102e8366004611fbb565b61084c565b6040516001600160a01b039091168152602001610280565b34801561031157600080fd5b506102a9610320366004611fe9565b6108a9565b34801561033157600080fd5b50600154600054035b604051908152602001610280565b34801561035457600080fd5b506102a9610363366004612015565b610968565b34801561037457600080fd5b5061033a600d5481565b34801561038a57600080fd5b506102a9610973565b34801561039f57600080fd5b506102a96103ae366004611fbb565b610a80565b3480156103bf57600080fd5b506102a9610af4565b3480156103d457600080fd5b506102a96103e3366004612015565b610b70565b3480156103f457600080fd5b5061033a600381565b34801561040957600080fd5b506102a96104183660046120e2565b610b8b565b34801561042957600080fd5b50600f546102749060ff1681565b34801561044357600080fd5b506102ed610452366004611fbb565b610c0d565b34801561046357600080fd5b506102c0610c1f565b34801561047857600080fd5b5061033a61048736600461212b565b610cad565b34801561049857600080fd5b506102a9610d15565b3480156104ad57600080fd5b5061033a600c5481565b3480156104c357600080fd5b506008546001600160a01b03166102ed565b3480156104e157600080fd5b506102a96104f03660046120e2565b610d79565b34801561050157600080fd5b506102c0610dfb565b34801561051657600080fd5b5061033a600e5481565b6102a961052e366004611fbb565b610e0a565b34801561053f57600080fd5b506102a961054e366004612148565b6110dd565b34801561055f57600080fd5b506102a961056e36600461217d565b61118b565b34801561057f57600080fd5b506102c060405180604001604052806005815260200164173539b7b760d91b81525081565b3480156105b057600080fd5b506102c06105bf366004611fbb565b6111dc565b3480156105d057600080fd5b506102ed73a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156105f857600080fd5b506102a9610607366004611fbb565b6112ae565b34801561061857600080fd5b506102c0611322565b34801561062d57600080fd5b5061027461063c3660046121fd565b61132f565b34801561064d57600080fd5b506102a961065c366004611fbb565b611417565b34801561066d57600080fd5b506102a961067c36600461212b565b61148b565b34801561068d57600080fd5b5061033a601481565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106f957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b031633148061075657506009546001600160a01b031633145b6107a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f805460ff1916911515919091179055565b6060600280546107c990612236565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590612236565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b60006108578261156d565b61088d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b482610c0d565b9050806001600160a01b0316836001600160a01b031603610901576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610921575061091f813361132f565b155b15610958576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610963838383611598565b505050565b610963838383611601565b6008546001600160a01b031633148061099657506009546001600160a01b031633145b6109e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b6040514790600090339083908381818185875af1925050503d8060008114610a26576040519150601f19603f3d011682016040523d82523d6000602084013e610a2b565b606091505b5050905080610a7c5760405162461bcd60e51b815260206004820152600e60248201527f4661696c656420746f2073656e64000000000000000000000000000000000000604482015260640161079e565b5050565b6008546001600160a01b0316331480610aa357506009546001600160a01b031633145b610aef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b600c55565b6008546001600160a01b0316331480610b1757506009546001600160a01b031633145b610b635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b610b6e336001611863565b565b6109638383836040518060200160405280600081525061118b565b6008546001600160a01b0316331480610bae57506009546001600160a01b031633145b610bfa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b8051610a7c90600a906020840190611e4d565b6000610c188261187d565b5192915050565b600a8054610c2c90612236565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5890612236565b8015610ca55780601f10610c7a57610100808354040283529160200191610ca5565b820191906000526020600020905b815481529060010190602001808311610c8857829003601f168201915b505050505081565b60006001600160a01b038216610cef576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b610b6e60006119b2565b6008546001600160a01b0316331480610d9c57506009546001600160a01b031633145b610de85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b8051610a7c90600b906020840190611e4d565b6060600380546107c990612236565b600f54339060ff1615610e5f5760405162461bcd60e51b815260206004820152600660248201527f5061757365640000000000000000000000000000000000000000000000000000604482015260640161079e565b81610e6d6001546000540390565b610e779190612286565b600d541015610ec85760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c790000000000000000000000000000604482015260640161079e565b60008211610f185760405162461bcd60e51b815260206004820152600a60248201527f4e6f2030206d696e747300000000000000000000000000000000000000000000604482015260640161079e565b326001600160a01b03821614610f705760405162461bcd60e51b815260206004820152600c60248201527f4e6f20636f6e7472616374730000000000000000000000000000000000000000604482015260640161079e565b8160141015610fc15760405162461bcd60e51b815260206004820152601660248201527f457863657373206d617820706572207061696420747800000000000000000000604482015260640161079e565b60015460005403600c54106110265781600310156110215760405162461bcd60e51b815260206004820152601660248201527f457863657373206d617820706572206672656520747800000000000000000000604482015260640161079e565b6110d3565b81601410156110775760405162461bcd60e51b815260206004820152601660248201527f457863657373206d617820706572207061696420747800000000000000000000604482015260640161079e565b34600e5483611086919061229e565b146110d35760405162461bcd60e51b815260206004820152601660248201527f496e76616c69642066756e64732070726f766964656400000000000000000000604482015260640161079e565b610a7c8183611863565b336001600160a01b0383160361111f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611196848484611601565b6001600160a01b0383163b151580156111b857506111b684848484611a11565b155b156111d6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111e78261156d565b6112335760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000604482015260640161079e565b6000600a805461124290612236565b90501161125e576040518060200160405280600081525061072d565b600a61126983611afc565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611299939291906122d9565b60405160208183030381529060405292915050565b6008546001600160a01b03163314806112d157506009546001600160a01b031633145b61131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b600e55565b600b8054610c2c90612236565b6040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c455279190602401602060405180830381865afa1580156113a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cd9190612389565b6001600160a01b0316036113e557600191505061072d565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633148061143a57506009546001600160a01b031633145b6114865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b600d55565b6008546001600160a01b031633146114e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079e565b6001600160a01b0381166115615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161079e565b61156a816119b2565b50565b600080548210801561072d575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061160c8261187d565b80519091506000906001600160a01b0316336001600160a01b0316148061163a5750815161163a903361132f565b8061165557503361164a8461084c565b6001600160a01b0316145b90508061168e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116dd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661171d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61172d6000848460000151611598565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661181957600054811015611819578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a7c828260405180602001604052806000815250611c31565b60408051606081018252600080825260208201819052918101919091528160005481101561198057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061197e5780516001600160a01b031615611914579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611979579392505050565b611914565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a469033908990889088906004016123a6565b6020604051808303816000875af1925050508015611a81575060408051601f3d908101601f19168201909252611a7e918101906123d8565b60015b611adf573d808015611aaf576040519150601f19603f3d011682016040523d82523d6000602084013e611ab4565b606091505b508051600003611ad7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606081600003611b3f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b695780611b53816123f5565b9150611b629050600a83612424565b9150611b43565b60008167ffffffffffffffff811115611b8457611b84612056565b6040519080825280601f01601f191660200182016040528015611bae576020820181803683370190505b5090505b841561140f57611bc3600183612438565b9150611bd0600a8661244f565b611bdb906030612286565b60f81b818381518110611bf057611bf0612463565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c2a600a86612424565b9450611bb2565b61096383838360016000546001600160a01b038516611c7c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600003611cb6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d7757506001600160a01b0387163b15155b15611dff575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dc86000888480600101955088611a11565b611de5576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d7d578260005414611dfa57600080fd5b611e44565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611e00575b5060005561185c565b828054611e5990612236565b90600052602060002090601f016020900481019282611e7b5760008555611ec1565b82601f10611e9457805160ff1916838001178555611ec1565b82800160010185558215611ec1579182015b82811115611ec1578251825591602001919060010190611ea6565b50611ecd929150611ed1565b5090565b5b80821115611ecd5760008155600101611ed2565b6001600160e01b03198116811461156a57600080fd5b600060208284031215611f0e57600080fd5b8135611f1981611ee6565b9392505050565b80358015158114611f3057600080fd5b919050565b600060208284031215611f4757600080fd5b611f1982611f20565b60005b83811015611f6b578181015183820152602001611f53565b838111156111d65750506000910152565b60008151808452611f94816020860160208601611f50565b601f01601f19169290920160200192915050565b602081526000611f196020830184611f7c565b600060208284031215611fcd57600080fd5b5035919050565b6001600160a01b038116811461156a57600080fd5b60008060408385031215611ffc57600080fd5b823561200781611fd4565b946020939093013593505050565b60008060006060848603121561202a57600080fd5b833561203581611fd4565b9250602084013561204581611fd4565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561208757612087612056565b604051601f8501601f19908116603f011681019082821181831017156120af576120af612056565b816040528093508581528686860111156120c857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120f457600080fd5b813567ffffffffffffffff81111561210b57600080fd5b8201601f8101841361211c57600080fd5b61140f8482356020840161206c565b60006020828403121561213d57600080fd5b8135611f1981611fd4565b6000806040838503121561215b57600080fd5b823561216681611fd4565b915061217460208401611f20565b90509250929050565b6000806000806080858703121561219357600080fd5b843561219e81611fd4565b935060208501356121ae81611fd4565b925060408501359150606085013567ffffffffffffffff8111156121d157600080fd5b8501601f810187136121e257600080fd5b6121f18782356020840161206c565b91505092959194509250565b6000806040838503121561221057600080fd5b823561221b81611fd4565b9150602083013561222b81611fd4565b809150509250929050565b600181811c9082168061224a57607f821691505b60208210810361226a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561229957612299612270565b500190565b60008160001904831182151516156122b8576122b8612270565b500290565b600081516122cf818560208601611f50565b9290920192915050565b600080855481600182811c9150808316806122f557607f831692505b6020808410820361231457634e487b7160e01b86526022600452602486fd5b818015612328576001811461233957612366565b60ff19861689528489019650612366565b60008c81526020902060005b8681101561235e5781548b820152908501908301612345565b505084890196505b50505050505061237f61237982876122bd565b856122bd565b9695505050505050565b60006020828403121561239b57600080fd5b8151611f1981611fd4565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261237f6080830184611f7c565b6000602082840312156123ea57600080fd5b8151611f1981611ee6565b60006001820161240757612407612270565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124335761243361240e565b500490565b60008282101561244a5761244a612270565b500390565b60008261245e5761245e61240e565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122018f2315e1bba156ea99c320e46d86a9f2dba906f072cc4696d8ee330fbd2a56c64736f6c634300080e0033
Deployed Bytecode Sourcemap
45913:3229:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28446:305;;;;;;;;;;-1:-1:-1;28446:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;28446:305:0;;;;;;;;48117:81;;;;;;;;;;-1:-1:-1;48117:81:0;;;;;:::i;:::-;;:::i;:::-;;31831:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33334:204::-;;;;;;;;;;-1:-1:-1;33334:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2110:55:1;;;2092:74;;2080:2;2065:18;33334:204:0;1946:226:1;32897:371:0;;;;;;;;;;-1:-1:-1;32897:371:0;;;;;:::i;:::-;;:::i;27695:303::-;;;;;;;;;;-1:-1:-1;27949:12:0;;27739:7;27933:13;:28;27695:303;;;2802:25:1;;;2790:2;2775:18;27695:303:0;2656:177:1;34191:170:0;;;;;;;;;;-1:-1:-1;34191:170:0;;;;;:::i;:::-;;:::i;46432:32::-;;;;;;;;;;;;;;;;47807:209;;;;;;;;;;;;;:::i;48648:121::-;;;;;;;;;;-1:-1:-1;48648:121:0;;;;;:::i;:::-;;:::i;48024:85::-;;;;;;;;;;;;;:::i;34432:185::-;;;;;;;;;;-1:-1:-1;34432:185:0;;;;;:::i;:::-;;:::i;46293:43::-;;;;;;;;;;;;46335:1;46293:43;;48206:100;;;;;;;;;;-1:-1:-1;48206:100:0;;;;;:::i;:::-;;:::i;46514:26::-;;;;;;;;;;-1:-1:-1;46514:26:0;;;;;;;;31640:124;;;;;;;;;;-1:-1:-1;31640:124:0;;;;;:::i;:::-;;:::i;45965:80::-;;;;;;;;;;;;;:::i;28815:206::-;;;;;;;;;;-1:-1:-1;28815:206:0;;;;;:::i;:::-;;:::i;2643:103::-;;;;;;;;;;;;;:::i;46343:36::-;;;;;;;;;;;;;;;;1992:87;;;;;;;;;;-1:-1:-1;2065:6:0;;-1:-1:-1;;;;;2065:6:0;1992:87;;48314:116;;;;;;;;;;-1:-1:-1;48314:116:0;;;;;:::i;:::-;;:::i;32000:104::-;;;;;;;;;;;;;:::i;46471:34::-;;;;;;;;;;;;;;;;46607:733;;;;;;:::i;:::-;;:::i;33610:279::-;;;;;;;;;;-1:-1:-1;33610:279:0;;;;;:::i;:::-;;:::i;34688:369::-;;;;;;;;;;-1:-1:-1;34688:369:0;;;;;:::i;:::-;;:::i;46142:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46142:46:0;;;;;48777:362;;;;;;;;;;-1:-1:-1;48777:362:0;;;;;:::i;:::-;;:::i;46195:89::-;;;;;;;;;;;;46242:42;46195:89;;48438:91;;;;;;;;;;-1:-1:-1;48438:91:0;;;;;:::i;:::-;;:::i;46052:83::-;;;;;;;;;;;;;:::i;47354:445::-;;;;;;;;;;-1:-1:-1;47354:445:0;;;;;:::i;:::-;;:::i;48537:103::-;;;;;;;;;;-1:-1:-1;48537:103:0;;;;;:::i;:::-;;:::i;2901:201::-;;;;;;;;;;-1:-1:-1;2901:201:0;;;;;:::i;:::-;;:::i;46386:39::-;;;;;;;;;;;;46423:2;46386:39;;28446:305;28548:4;-1:-1:-1;;;;;;28585:40:0;;28600:25;28585:40;;:105;;-1:-1:-1;;;;;;;28642:48:0;;28657:33;28642:48;28585:105;:158;;;-1:-1:-1;23670:25:0;-1:-1:-1;;;;;;23655:40:0;;;28707:36;28565:178;28446:305;-1:-1:-1;;28446:305:0:o;48117:81::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;24914:23;;:49;;-1:-1:-1;24941:6:0;;-1:-1:-1;;;;;24941:6:0;813:10;24941:22;24914:49;24906:94;;;;-1:-1:-1;;;24906:94:0;;6548:2:1;24906:94:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;24906:94:0;;;;;;;;;48175:6:::1;:15:::0;;-1:-1:-1;;48175:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48117:81::o;31831:100::-;31885:13;31918:5;31911:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31831:100;:::o;33334:204::-;33402:7;33427:16;33435:7;33427;:16::i;:::-;33422:64;;33452:34;;;;;;;;;;;;;;33422:64;-1:-1:-1;33506:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33506:24:0;;33334:204::o;32897:371::-;32970:13;32986:24;33002:7;32986:15;:24::i;:::-;32970:40;;33031:5;-1:-1:-1;;;;;33025:11:0;:2;-1:-1:-1;;;;;33025:11:0;;33021:48;;33045:24;;;;;;;;;;;;;;33021:48;813:10;-1:-1:-1;;;;;33086:21:0;;;;;;:63;;-1:-1:-1;33112:37:0;33129:5;813:10;47354:445;:::i;33112:37::-;33111:38;33086:63;33082:138;;;33173:35;;;;;;;;;;;;;;33082:138;33232:28;33241:2;33245:7;33254:5;33232:8;:28::i;:::-;32959:309;32897:371;;:::o;34191:170::-;34325:28;34335:4;34341:2;34345:7;34325:9;:28::i;47807:209::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;24914:23;;:49;;-1:-1:-1;24941:6:0;;-1:-1:-1;;;;;24941:6:0;813:10;24941:22;24914:49;24906:94;;;;-1:-1:-1;;;24906:94:0;;6548:2:1;24906:94:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;24906:94:0;6346:356:1;24906:94:0;47926:37:::1;::::0;47875:21:::1;::::0;47857:15:::1;::::0;813:10;;47875:21;;47857:15;47926:37;47857:15;47926:37;47875:21;813:10;47926:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47907:56;;;47982:7;47974:34;;;::::0;-1:-1:-1;;;47974:34:0;;7561:2:1;47974:34:0::1;::::0;::::1;7543:21:1::0;7600:2;7580:18;;;7573:30;7639:16;7619:18;;;7612:44;7673:18;;47974:34:0::1;7359:338:1::0;47974:34:0::1;47846:170;;47807:209::o:0;48648:121::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;24914:23;;:49;;-1:-1:-1;24941:6:0;;-1:-1:-1;;;;;24941:6:0;813:10;24941:22;24914:49;24906:94;;;;-1:-1:-1;;;24906:94:0;;6548:2:1;24906:94:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;24906:94:0;6346:356:1;24906:94:0;48730:15:::1;:31:::0;48648:121::o;48024:85::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;24914:23;;:49;;-1:-1:-1;24941:6:0;;-1:-1:-1;;;;;24941:6:0;813:10;24941:22;24914:49;24906:94;;;;-1:-1:-1;;;24906:94:0;;6548:2:1;24906:94:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;24906:94:0;6346:356:1;24906:94:0;48075:26:::1;813:10:::0;48099:1:::1;48075:9;:26::i;:::-;48024:85::o:0;34432:185::-;34570:39;34587:4;34593:2;34597:7;34570:39;;;;;;;;;;;;:16;:39::i;48206:100::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;24914:23;;:49;;-1:-1:-1;24941:6:0;;-1:-1:-1;;;;;24941:6:0;813:10;24941:22;24914:49;24906:94;;;;-1:-1:-1;;;24906:94:0;;6548:2:1;24906:94:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;24906:94:0;6346:356:1;24906:94:0;48280:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;31640:124::-:0;31704:7;31731:20;31743:7;31731:11;:20::i;:::-;:25;;31640:124;-1:-1:-1;;31640:124:0:o;45965:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28815:206::-;28879:7;-1:-1:-1;;;;;28903:19:0;;28899:60;;28931:28;;;;;;;;;;;;;;28899:60;-1:-1:-1;;;;;;28985:19:0;;;;;:12;:19;;;;;:27;;;;28815:206::o;2643:103::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;6548:2:1;2204:68:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;2204:68:0;6346:356:1;2204:68:0;2708:30:::1;2735:1;2708:18;:30::i;48314:116::-:0;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;24914:23;;:49;;-1:-1:-1;24941:6:0;;-1:-1:-1;;;;;24941:6:0;813:10;24941:22;24914:49;24906:94;;;;-1:-1:-1;;;24906:94:0;;6548:2:1;24906:94:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;24906:94:0;6346:356:1;24906:94:0;48396:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;32000:104::-:0;32056:13;32089:7;32082:14;;;;;:::i;46607:733::-;46716:6;;813:10;;46716:6;;46715:7;46707:26;;;;-1:-1:-1;;;46707:26:0;;7904:2:1;46707:26:0;;;7886:21:1;7943:1;7923:18;;;7916:29;7981:8;7961:18;;;7954:36;8007:18;;46707:26:0;7702:329:1;46707:26:0;46782:7;46766:13;27949:12;;27739:7;27933:13;:28;;27695:303;46766:13;:23;;;;:::i;:::-;46752:10;;:37;;46744:68;;;;-1:-1:-1;;;46744:68:0;;8560:2:1;46744:68:0;;;8542:21:1;8599:2;8579:18;;;8572:30;8638:20;8618:18;;;8611:48;8676:18;;46744:68:0;8358:342:1;46744:68:0;46841:1;46831:7;:11;46823:34;;;;-1:-1:-1;;;46823:34:0;;8907:2:1;46823:34:0;;;8889:21:1;8946:2;8926:18;;;8919:30;8985:12;8965:18;;;8958:40;9015:18;;46823:34:0;8705:334:1;46823:34:0;46876:9;-1:-1:-1;;;;;46876:20:0;;;46868:45;;;;-1:-1:-1;;;46868:45:0;;9246:2:1;46868:45:0;;;9228:21:1;9285:2;9265:18;;;9258:30;9324:14;9304:18;;;9297:42;9356:18;;46868:45:0;9044:336:1;46868:45:0;46946:7;46423:2;46932:21;;46924:57;;;;-1:-1:-1;;;46924:57:0;;9587:2:1;46924:57:0;;;9569:21:1;9626:2;9606:18;;;9599:30;9665:24;9645:18;;;9638:52;9707:18;;46924:57:0;9385:346:1;46924:57:0;27949:12;;27739:7;27933:13;:28;47003:15;;:32;47000:291;;47078:7;46335:1;47059:26;;47051:62;;;;-1:-1:-1;;;47051:62:0;;9938:2:1;47051:62:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:24;9996:18;;;9989:52;10058:18;;47051:62:0;9736:346:1;47051:62:0;47000:291;;;47166:7;46423:2;47152:21;;47144:57;;;;-1:-1:-1;;;47144:57:0;;9587:2:1;47144:57:0;;;9569:21:1;9626:2;9606:18;;;9599:30;9665:24;9645:18;;;9638:52;9707:18;;47144:57:0;9385:346:1;47144:57:0;47243:9;47234:5;;47224:7;:15;;;;:::i;:::-;:28;47216:63;;;;-1:-1:-1;;;47216:63:0;;10462:2:1;47216:63:0;;;10444:21:1;10501:2;10481:18;;;10474:30;10540:24;10520:18;;;10513:52;10582:18;;47216:63:0;10260:346:1;47216:63:0;47305:27;47315:7;47324;47305:9;:27::i;33610:279::-;813:10;-1:-1:-1;;;;;33701:24:0;;;33697:54;;33734:17;;;;;;;;;;;;;;33697:54;813:10;33764:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33764:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33764:53:0;;;;;;;;;;33833:48;;586:41:1;;;33764:42:0;;813:10;33833:48;;559:18:1;33833:48:0;;;;;;;33610:279;;:::o;34688:369::-;34855:28;34865:4;34871:2;34875:7;34855:9;:28::i;:::-;-1:-1:-1;;;;;34898:13:0;;13618:19;:23;;34898:76;;;;;34918:56;34949:4;34955:2;34959:7;34968:5;34918:30;:56::i;:::-;34917:57;34898:76;34894:156;;;34998:40;;-1:-1:-1;;;34998:40:0;;;;;;;;;;;34894:156;34688:369;;;;:::o;48777:362::-;48843:13;48877:17;48885:8;48877:7;:17::i;:::-;48869:51;;;;-1:-1:-1;;;48869:51:0;;10813:2:1;48869:51:0;;;10795:21:1;10852:2;10832:18;;;10825:30;10891:23;10871:18;;;10864:51;10932:18;;48869:51:0;10611:345:1;48869:51:0;48962:1;48944:7;48938:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49020:7;49044:26;49061:8;49044:16;:26::i;:::-;49087:13;;;;;;;;;;;;;-1:-1:-1;;;49087:13:0;;;48987:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48931:200;48777:362;-1:-1:-1;;48777:362:0:o;48438:91::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;24914:23;;:49;;-1:-1:-1;24941:6:0;;-1:-1:-1;;;;;24941:6:0;813:10;24941:22;24914:49;24906:94;;;;-1:-1:-1;;;24906:94:0;;6548:2:1;24906:94:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;24906:94:0;6346:356:1;24906:94:0;48505:5:::1;:16:::0;48438:91::o;46052:83::-;;;;;;;:::i;47354:445::-;47652:28;;;;;-1:-1:-1;;;;;2110:55:1;;;47652:28:0;;;2092:74:1;47479:4:0;;46242:42;;47644:49;;;46242:42;;47652:21;;2065:18:1;;47652:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47644:49:0;;47640:93;;47717:4;47710:11;;;;;47640:93;-1:-1:-1;;;;;34081:25:0;;;34057:4;34081:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47752:39;47745:46;47354:445;-1:-1:-1;;;;47354:445:0:o;48537:103::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;24914:23;;:49;;-1:-1:-1;24941:6:0;;-1:-1:-1;;;;;24941:6:0;813:10;24941:22;24914:49;24906:94;;;;-1:-1:-1;;;24906:94:0;;6548:2:1;24906:94:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;24906:94:0;6346:356:1;24906:94:0;48610:10:::1;:22:::0;48537:103::o;2901:201::-;2065:6;;-1:-1:-1;;;;;2065:6:0;813:10;2212:23;2204:68;;;;-1:-1:-1;;;2204:68:0;;6548:2:1;2204:68:0;;;6530:21:1;;;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;6678:18;;2204:68:0;6346:356:1;2204:68:0;-1:-1:-1;;;;;2990:22:0;::::1;2982:73;;;::::0;-1:-1:-1;;;2982:73:0;;13075:2:1;2982:73:0::1;::::0;::::1;13057:21:1::0;13114:2;13094:18;;;13087:30;13153:34;13133:18;;;13126:62;13224:8;13204:18;;;13197:36;13250:19;;2982:73:0::1;12873:402:1::0;2982:73:0::1;3066:28;3085:8;3066:18;:28::i;:::-;2901:201:::0;:::o;35312:187::-;35369:4;35433:13;;35423:7;:23;35393:98;;;;-1:-1:-1;;35464:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35464:27:0;;;;35463:28;;35312:187::o;42923:196::-;43038:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;43038:29:0;-1:-1:-1;;;;;43038:29:0;;;;;;;;;43083:28;;43038:24;;43083:28;;;;;;;42923:196;;;:::o;38425:2112::-;38540:35;38578:20;38590:7;38578:11;:20::i;:::-;38653:18;;38540:58;;-1:-1:-1;38611:22:0;;-1:-1:-1;;;;;38637:34:0;813:10;-1:-1:-1;;;;;38637:34:0;;:101;;;-1:-1:-1;38705:18:0;;38688:50;;813:10;47354:445;:::i;38688:50::-;38637:154;;;-1:-1:-1;813:10:0;38755:20;38767:7;38755:11;:20::i;:::-;-1:-1:-1;;;;;38755:36:0;;38637:154;38611:181;;38810:17;38805:66;;38836:35;;;;;;;;;;;;;;38805:66;38908:4;-1:-1:-1;;;;;38886:26:0;:13;:18;;;-1:-1:-1;;;;;38886:26:0;;38882:67;;38921:28;;;;;;;;;;;;;;38882:67;-1:-1:-1;;;;;38964:16:0;;38960:52;;38989:23;;;;;;;;;;;;;;38960:52;39133:49;39150:1;39154:7;39163:13;:18;;;39133:8;:49::i;:::-;-1:-1:-1;;;;;39478:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39478:31:0;;;;;;;-1:-1:-1;;39478:31:0;;;;;;;39524:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39524:29:0;;;;;;;;;;;39570:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39615:61:0;;;;-1:-1:-1;;;39660:15:0;39615:61;;;;;;;;;;;39950:11;;;39980:24;;;;;:29;39950:11;;39980:29;39976:445;;40205:13;;40191:11;:27;40187:219;;;40275:18;;;40243:24;;;:11;:24;;;;;;;;:50;;40358:28;;;;40316:70;;-1:-1:-1;;;40316:70:0;-1:-1:-1;;;;;;40316:70:0;;;-1:-1:-1;;;;;40243:50:0;;;40316:70;;;;;;;40187:219;39453:979;40468:7;40464:2;-1:-1:-1;;;;;40449:27:0;40458:4;-1:-1:-1;;;;;40449:27:0;;;;;;;;;;;40487:42;38529:2008;;38425:2112;;;:::o;35507:104::-;35576:27;35586:2;35590:8;35576:27;;;;;;;;;;;;:9;:27::i;30470:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30580:7:0;30663:13;;30656:4;:20;30625:886;;;30697:31;30731:17;;;:11;:17;;;;;;;;;30697:51;;;;;;;;;-1:-1:-1;;;;;30697:51:0;;;;-1:-1:-1;;;30697:51:0;;;;;;;;;;;-1:-1:-1;;;30697:51:0;;;;;;;;;;;;;;30767:729;;30817:14;;-1:-1:-1;;;;;30817:28:0;;30813:101;;30881:9;30470:1108;-1:-1:-1;;;30470:1108:0:o;30813:101::-;-1:-1:-1;;;31256:6:0;31301:17;;;;:11;:17;;;;;;;;;31289:29;;;;;;;;;-1:-1:-1;;;;;31289:29:0;;;;;-1:-1:-1;;;31289:29:0;;;;;;;;;;;-1:-1:-1;;;31289:29:0;;;;;;;;;;;;;31349:28;31345:109;;31417:9;30470:1108;-1:-1:-1;;;30470:1108:0:o;31345:109::-;31216:261;;;30678:833;30625:886;31539:31;;;;;;;;;;;;;;3262:191;3355:6;;;-1:-1:-1;;;;;3372:17:0;;;-1:-1:-1;;3372:17:0;;;;;;;3405:40;;3355:6;;;3372:17;3355:6;;3405:40;;3336:16;;3405:40;3325:128;3262:191;:::o;43611:667::-;43795:72;;-1:-1:-1;;;43795:72:0;;43774:4;;-1:-1:-1;;;;;43795:36:0;;;;;:72;;813:10;;43846:4;;43852:7;;43861:5;;43795:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43795:72:0;;;;;;;;-1:-1:-1;;43795:72:0;;;;;;;;;;;;:::i;:::-;;;43791:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44029:6;:13;44046:1;44029:18;44025:235;;44075:40;;-1:-1:-1;;;44075:40:0;;;;;;;;;;;44025:235;44218:6;44212:13;44203:6;44199:2;44195:15;44188:38;43791:480;-1:-1:-1;;;;;;43914:55:0;-1:-1:-1;;;43914:55:0;;-1:-1:-1;43611:667:0;;;;;;:::o;20943:723::-;20999:13;21220:5;21229:1;21220:10;21216:53;;-1:-1:-1;;21247:10:0;;;;;;;;;;;;;;;;;;20943:723::o;21216:53::-;21294:5;21279:12;21335:78;21342:9;;21335:78;;21368:8;;;;:::i;:::-;;-1:-1:-1;21391:10:0;;-1:-1:-1;21399:2:0;21391:10;;:::i;:::-;;;21335:78;;;21423:19;21455:6;21445:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21445:17:0;;21423:39;;21473:154;21480:10;;21473:154;;21507:11;21517:1;21507:11;;:::i;:::-;;-1:-1:-1;21576:10:0;21584:2;21576:5;:10;:::i;:::-;21563:24;;:2;:24;:::i;:::-;21550:39;;21533:6;21540;21533:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;21604:11:0;21613:2;21604:11;;:::i;:::-;;;21473:154;;35974:163;36097:32;36103:2;36107:8;36117:5;36124:4;36535:20;36558:13;-1:-1:-1;;;;;36586:16:0;;36582:48;;36611:19;;;;;;;;;;;;;;36582:48;36645:8;36657:1;36645:13;36641:44;;36667:18;;;;;;;;;;;;;;36641:44;-1:-1:-1;;;;;37036:16:0;;;;;;:12;:16;;;;;;;;:44;;37095:49;;;37036:44;;;;;;;;37095:49;;;;-1:-1:-1;;37036:44:0;;;;;;37095:49;;;;;;;;;;;;;;;;37161:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37211:66:0;;;;-1:-1:-1;;;37261:15:0;37211:66;;;;;;;;;;37161:25;37358:23;;;37402:4;:23;;;;-1:-1:-1;;;;;;37410:13:0;;13618:19;:23;;37410:15;37398:641;;;37446:314;37477:38;;37502:12;;-1:-1:-1;;;;;37477:38:0;;;37494:1;;37477:38;;37494:1;;37477:38;37543:69;37582:1;37586:2;37590:14;;;;;;37606:5;37543:30;:69::i;:::-;37538:174;;37648:40;;-1:-1:-1;;;37648:40:0;;;;;;;;;;;37538:174;37755:3;37739:12;:19;37446:314;;37841:12;37824:13;;:29;37820:43;;37855:8;;;37820:43;37398:641;;;37904:120;37935:40;;37960:14;;;;;-1:-1:-1;;;;;37935:40:0;;;37952:1;;37935:40;;37952:1;;37935:40;38019:3;38003:12;:19;37904:120;;37398:641;-1:-1:-1;38053:13:0;:28;38103:60;34688:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:160::-;703:20;;759:13;;752:21;742:32;;732:60;;788:1;785;778:12;732:60;638:160;;;:::o;803:180::-;859:6;912:2;900:9;891:7;887:23;883:32;880:52;;;928:1;925;918:12;880:52;951:26;967:9;951:26;:::i;988:258::-;1060:1;1070:113;1084:6;1081:1;1078:13;1070:113;;;1160:11;;;1154:18;1141:11;;;1134:39;1106:2;1099:10;1070:113;;;1201:6;1198:1;1195:13;1192:48;;;-1:-1:-1;;1236:1:1;1218:16;;1211:27;988:258::o;1251:269::-;1304:3;1342:5;1336:12;1369:6;1364:3;1357:19;1385:63;1441:6;1434:4;1429:3;1425:14;1418:4;1411:5;1407:16;1385:63;:::i;:::-;1502:2;1481:15;-1:-1:-1;;1477:29:1;1468:39;;;;1509:4;1464:50;;1251:269;-1:-1:-1;;1251:269:1:o;1525:231::-;1674:2;1663:9;1656:21;1637:4;1694:56;1746:2;1735:9;1731:18;1723:6;1694:56;:::i;1761:180::-;1820:6;1873:2;1861:9;1852:7;1848:23;1844:32;1841:52;;;1889:1;1886;1879:12;1841:52;-1:-1:-1;1912:23:1;;1761:180;-1:-1:-1;1761:180:1:o;2177:154::-;-1:-1:-1;;;;;2256:5:1;2252:54;2245:5;2242:65;2232:93;;2321:1;2318;2311:12;2336:315;2404:6;2412;2465:2;2453:9;2444:7;2440:23;2436:32;2433:52;;;2481:1;2478;2471:12;2433:52;2520:9;2507:23;2539:31;2564:5;2539:31;:::i;:::-;2589:5;2641:2;2626:18;;;;2613:32;;-1:-1:-1;;;2336:315:1:o;2838:456::-;2915:6;2923;2931;2984:2;2972:9;2963:7;2959:23;2955:32;2952:52;;;3000:1;2997;2990:12;2952:52;3039:9;3026:23;3058:31;3083:5;3058:31;:::i;:::-;3108:5;-1:-1:-1;3165:2:1;3150:18;;3137:32;3178:33;3137:32;3178:33;:::i;:::-;2838:456;;3230:7;;-1:-1:-1;;;3284:2:1;3269:18;;;;3256:32;;2838:456::o;3299:184::-;-1:-1:-1;;;3348:1:1;3341:88;3448:4;3445:1;3438:15;3472:4;3469:1;3462:15;3488:632;3553:5;3583:18;3624:2;3616:6;3613:14;3610:40;;;3630:18;;:::i;:::-;3705:2;3699:9;3673:2;3759:15;;-1:-1:-1;;3755:24:1;;;3781:2;3751:33;3747:42;3735:55;;;3805:18;;;3825:22;;;3802:46;3799:72;;;3851:18;;:::i;:::-;3891:10;3887:2;3880:22;3920:6;3911:15;;3950:6;3942;3935:22;3990:3;3981:6;3976:3;3972:16;3969:25;3966:45;;;4007:1;4004;3997:12;3966:45;4057:6;4052:3;4045:4;4037:6;4033:17;4020:44;4112:1;4105:4;4096:6;4088;4084:19;4080:30;4073:41;;;;3488:632;;;;;:::o;4125:451::-;4194:6;4247:2;4235:9;4226:7;4222:23;4218:32;4215:52;;;4263:1;4260;4253:12;4215:52;4303:9;4290:23;4336:18;4328:6;4325:30;4322:50;;;4368:1;4365;4358:12;4322:50;4391:22;;4444:4;4436:13;;4432:27;-1:-1:-1;4422:55:1;;4473:1;4470;4463:12;4422:55;4496:74;4562:7;4557:2;4544:16;4539:2;4535;4531:11;4496:74;:::i;4581:247::-;4640:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:52;;;4709:1;4706;4699:12;4661:52;4748:9;4735:23;4767:31;4792:5;4767:31;:::i;4833:315::-;4898:6;4906;4959:2;4947:9;4938:7;4934:23;4930:32;4927:52;;;4975:1;4972;4965:12;4927:52;5014:9;5001:23;5033:31;5058:5;5033:31;:::i;:::-;5083:5;-1:-1:-1;5107:35:1;5138:2;5123:18;;5107:35;:::i;:::-;5097:45;;4833:315;;;;;:::o;5153:795::-;5248:6;5256;5264;5272;5325:3;5313:9;5304:7;5300:23;5296:33;5293:53;;;5342:1;5339;5332:12;5293:53;5381:9;5368:23;5400:31;5425:5;5400:31;:::i;:::-;5450:5;-1:-1:-1;5507:2:1;5492:18;;5479:32;5520:33;5479:32;5520:33;:::i;:::-;5572:7;-1:-1:-1;5626:2:1;5611:18;;5598:32;;-1:-1:-1;5681:2:1;5666:18;;5653:32;5708:18;5697:30;;5694:50;;;5740:1;5737;5730:12;5694:50;5763:22;;5816:4;5808:13;;5804:27;-1:-1:-1;5794:55:1;;5845:1;5842;5835:12;5794:55;5868:74;5934:7;5929:2;5916:16;5911:2;5907;5903:11;5868:74;:::i;:::-;5858:84;;;5153:795;;;;;;;:::o;5953:388::-;6021:6;6029;6082:2;6070:9;6061:7;6057:23;6053:32;6050:52;;;6098:1;6095;6088:12;6050:52;6137:9;6124:23;6156:31;6181:5;6156:31;:::i;:::-;6206:5;-1:-1:-1;6263:2:1;6248:18;;6235:32;6276:33;6235:32;6276:33;:::i;:::-;6328:7;6318:17;;;5953:388;;;;;:::o;6707:437::-;6786:1;6782:12;;;;6829;;;6850:61;;6904:4;6896:6;6892:17;6882:27;;6850:61;6957:2;6949:6;6946:14;6926:18;6923:38;6920:218;;-1:-1:-1;;;6991:1:1;6984:88;7095:4;7092:1;7085:15;7123:4;7120:1;7113:15;6920:218;;6707:437;;;:::o;8036:184::-;-1:-1:-1;;;8085:1:1;8078:88;8185:4;8182:1;8175:15;8209:4;8206:1;8199:15;8225:128;8265:3;8296:1;8292:6;8289:1;8286:13;8283:39;;;8302:18;;:::i;:::-;-1:-1:-1;8338:9:1;;8225:128::o;10087:168::-;10127:7;10193:1;10189;10185:6;10181:14;10178:1;10175:21;10170:1;10163:9;10156:17;10152:45;10149:71;;;10200:18;;:::i;:::-;-1:-1:-1;10240:9:1;;10087:168::o;11087:185::-;11129:3;11167:5;11161:12;11182:52;11227:6;11222:3;11215:4;11208:5;11204:16;11182:52;:::i;:::-;11250:16;;;;;11087:185;-1:-1:-1;;11087:185:1:o;11277:1306::-;11501:3;11530:1;11563:6;11557:13;11593:3;11615:1;11643:9;11639:2;11635:18;11625:28;;11703:2;11692:9;11688:18;11725;11715:61;;11769:4;11761:6;11757:17;11747:27;;11715:61;11795:2;11843;11835:6;11832:14;11812:18;11809:38;11806:222;;-1:-1:-1;;;11877:3:1;11870:90;11983:4;11980:1;11973:15;12013:4;12008:3;12001:17;11806:222;12044:18;12071:104;;;;12189:1;12184:320;;;;12037:467;;12071:104;-1:-1:-1;;12104:24:1;;12092:37;;12149:16;;;;-1:-1:-1;12071:104:1;;12184:320;11034:1;11027:14;;;11071:4;11058:18;;12279:1;12293:165;12307:6;12304:1;12301:13;12293:165;;;12385:14;;12372:11;;;12365:35;12428:16;;;;12322:10;;12293:165;;;12297:3;;12487:6;12482:3;12478:16;12471:23;;12037:467;;;;;;;12520:57;12546:30;12572:3;12564:6;12546:30;:::i;:::-;12538:6;12520:57;:::i;:::-;12513:64;11277:1306;-1:-1:-1;;;;;;11277:1306:1:o;12588:280::-;12687:6;12740:2;12728:9;12719:7;12715:23;12711:32;12708:52;;;12756:1;12753;12746:12;12708:52;12788:9;12782:16;12807:31;12832:5;12807:31;:::i;13280:523::-;13474:4;-1:-1:-1;;;;;13584:2:1;13576:6;13572:15;13561:9;13554:34;13636:2;13628:6;13624:15;13619:2;13608:9;13604:18;13597:43;;13676:6;13671:2;13660:9;13656:18;13649:34;13719:3;13714:2;13703:9;13699:18;13692:31;13740:57;13792:3;13781:9;13777:19;13769:6;13740:57;:::i;13808:249::-;13877:6;13930:2;13918:9;13909:7;13905:23;13901:32;13898:52;;;13946:1;13943;13936:12;13898:52;13978:9;13972:16;13997:30;14021:5;13997:30;:::i;14062:135::-;14101:3;14122:17;;;14119:43;;14142:18;;:::i;:::-;-1:-1:-1;14189:1:1;14178:13;;14062:135::o;14202:184::-;-1:-1:-1;;;14251:1:1;14244:88;14351:4;14348:1;14341:15;14375:4;14372:1;14365:15;14391:120;14431:1;14457;14447:35;;14462:18;;:::i;:::-;-1:-1:-1;14496:9:1;;14391:120::o;14516:125::-;14556:4;14584:1;14581;14578:8;14575:34;;;14589:18;;:::i;:::-;-1:-1:-1;14626:9:1;;14516:125::o;14646:112::-;14678:1;14704;14694:35;;14709:18;;:::i;:::-;-1:-1:-1;14743:9:1;;14646:112::o;14763:184::-;-1:-1:-1;;;14812:1:1;14805:88;14912:4;14909:1;14902:15;14936:4;14933:1;14926:15
Swarm Source
ipfs://18f2315e1bba156ea99c320e46d86a9f2dba906f072cc4696d8ee330fbd2a56c
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.