ERC-721
Overview
Max Total Supply
393 GOBODD
Holders
27
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GOBODDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GoblinOddities
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-22 */ // SPDX-License-Identifier: MIT // File 1: Address.sol // OpenZeppelin Contracts v4.4.1 (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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // FILE 2: Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File 3: Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File 4: Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File 5: IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File 6: IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File 7: IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external returns (string memory); } // File 8: ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File 9: ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); if (to.isContract()) { revert ("Token transfer to contract address is not allowed."); } else { _approve(to, tokenId); } // _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @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 { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File 10: IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File 11: ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File 12: IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File 13: ERC721A.sol pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override virtual returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // FILE 14: Goblin Oddities.sol pragma solidity ^0.8.0; contract GoblinOddities is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; using Counters for Counters.Counter; string private uriPrefix = ""; string public uriSuffix = ".json"; string private hiddenMetadataUri; constructor() ERC721A("Goblin Oddities", "GOBODD") { setHiddenMetadataUri("ipfs://__CID__/hidden.json"); } uint256 public price = 0.003 ether; uint256 public maxSupply = 8888; bool public paused = true; bool public revealed = true; function changePrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success, "Transfer failed."); } //claim-1-nft function claim() external{ require(!paused, "The contract is paused!"); require(totalSupply() + 1 <= maxSupply, "No more"); _safeMint(msg.sender, 1); } //pack5 function pack5() external payable { uint256 cost = price; require(!paused, "The contract is paused!"); if (msg.sender != owner()) { require(msg.value >= 5 * cost, "Please send the exact amount."); } require(totalSupply() + 5 <= maxSupply, "No more"); _safeMint(msg.sender, 5); } //pack10 function pack10() external payable { uint256 cost = price; require(!paused, "The contract is paused!"); if (msg.sender != owner()) { require(msg.value >= 10 * cost, "Please send the exact amount."); } require(totalSupply() + 10 <= maxSupply, "No more"); _safeMint(msg.sender, 10); } //Ox111 function Ox111(uint256 count) public onlyOwner { require(!paused, "The contract is paused!"); require(totalSupply() + count <= maxSupply, "No more"); _safeMint(msg.sender, count); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setmaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"Ox111","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack10","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pack5","outputs":[],"stateMutability":"payable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600990805190602001906200002b92919062000351565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200007992919062000351565b50660aa87bee538000600c556122b8600d556001600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550348015620000ce57600080fd5b506040518060400160405280600f81526020017f476f626c696e204f6464697469657300000000000000000000000000000000008152506040518060400160405280600681526020017f474f424f4444000000000000000000000000000000000000000000000000000081525081600190805190602001906200015392919062000351565b5080600290805190602001906200016c92919062000351565b5050506000620001816200027460201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060016008819055506200026e6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000008152506200027c60201b60201c565b620004e9565b600033905090565b6200028c6200027460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b26200032760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003029062000428565b60405180910390fd5b80600b90805190602001906200032392919062000351565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035f906200045b565b90600052602060002090601f016020900481019282620003835760008555620003cf565b82601f106200039e57805160ff1916838001178555620003cf565b82800160010185558215620003cf579182015b82811115620003ce578251825591602001919060010190620003b1565b5b509050620003de9190620003e2565b5090565b5b80821115620003fd576000816000905550600101620003e3565b5090565b6000620004106020836200044a565b91506200041d82620004c0565b602082019050919050565b60006020820190508181036000830152620004438162000401565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200047457607f821691505b602082108114156200048b576200048a62000491565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614b4d80620004f96000396000f3fe60806040526004361061021a5760003560e01c80635c975abb11610123578063a035b1fe116100ab578063c87b56dd1161006f578063c87b56dd14610767578063d5abeb01146107a4578063e0a80853146107cf578063e985e9c5146107f8578063f2fde38b146108355761021a565b8063a035b1fe146106b7578063a22cb465146106e2578063a2b40d191461070b578063b88d4fde14610734578063bc570e811461075d5761021a565b8063715018a6116100f2578063715018a6146105f857806377544d731461060f5780637ec4a659146106385780638da5cb5b1461066157806395d89b411461068c5761021a565b80635c975abb146105495780636352211e146105745780636a91b23f146105b157806370a08231146105bb5761021a565b80632f745c59116101a65780634e71d92d116101755780634e71d92d146104765780634f6ccce71461048d5780634fdd43cb146104ca57806351830227146104f35780635503a0e81461051e5761021a565b80632f745c59146103bc5780633ccfd60b146103f957806342842e0e14610410578063438b6300146104395761021a565b806316ba10e0116101ed57806316ba10e0146102ed57806316c38b3c1461031657806318160ddd1461033f578063228025e81461036a57806323b872dd146103935761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906135b5565b61085e565b6040516102539190613c70565b60405180910390f35b34801561026857600080fd5b506102716109a8565b60405161027e9190613c8b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613658565b610a3a565b6040516102bb9190613be7565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613548565b610abf565b005b3480156102f957600080fd5b50610314600480360381019061030f919061360f565b610bd8565b005b34801561032257600080fd5b5061033d60048036038101906103389190613588565b610c6e565b005b34801561034b57600080fd5b50610354610d07565b6040516103619190613f8d565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190613658565b610d10565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190613432565b610d96565b005b3480156103c857600080fd5b506103e360048036038101906103de9190613548565b610da6565b6040516103f09190613f8d565b60405180910390f35b34801561040557600080fd5b5061040e610f98565b005b34801561041c57600080fd5b5061043760048036038101906104329190613432565b6110c3565b005b34801561044557600080fd5b50610460600480360381019061045b91906133c5565b6110e3565b60405161046d9190613c4e565b60405180910390f35b34801561048257600080fd5b5061048b6111ee565b005b34801561049957600080fd5b506104b460048036038101906104af9190613658565b6112a3565b6040516104c19190613f8d565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec919061360f565b6112f6565b005b3480156104ff57600080fd5b5061050861138c565b6040516105159190613c70565b60405180910390f35b34801561052a57600080fd5b5061053361139f565b6040516105409190613c8b565b60405180910390f35b34801561055557600080fd5b5061055e61142d565b60405161056b9190613c70565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613658565b611440565b6040516105a89190613be7565b60405180910390f35b6105b9611456565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906133c5565b61159d565b6040516105ef9190613f8d565b60405180910390f35b34801561060457600080fd5b5061060d611686565b005b34801561061b57600080fd5b5061063660048036038101906106319190613658565b6117c3565b005b34801561064457600080fd5b5061065f600480360381019061065a919061360f565b6118f3565b005b34801561066d57600080fd5b50610676611989565b6040516106839190613be7565b60405180910390f35b34801561069857600080fd5b506106a16119b3565b6040516106ae9190613c8b565b60405180910390f35b3480156106c357600080fd5b506106cc611a45565b6040516106d99190613f8d565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613508565b611a4b565b005b34801561071757600080fd5b50610732600480360381019061072d9190613658565b611bcc565b005b34801561074057600080fd5b5061075b60048036038101906107569190613485565b611c52565b005b610765611cae565b005b34801561077357600080fd5b5061078e60048036038101906107899190613658565b611df5565b60405161079b9190613c8b565b60405180910390f35b3480156107b057600080fd5b506107b9611f4e565b6040516107c69190613f8d565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613588565b611f54565b005b34801561080457600080fd5b5061081f600480360381019061081a91906133f2565b611fed565b60405161082c9190613c70565b60405180910390f35b34801561084157600080fd5b5061085c600480360381019061085791906133c5565b612081565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a157506109a08261222d565b5b9050919050565b6060600180546109b790614296565b80601f01602080910402602001604051908101604052809291908181526020018280546109e390614296565b8015610a305780601f10610a0557610100808354040283529160200191610a30565b820191906000526020600020905b815481529060010190602001808311610a1357829003601f168201915b5050505050905090565b6000610a4582612297565b610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90613f6d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aca82611440565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290613e8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5a6122a4565b73ffffffffffffffffffffffffffffffffffffffff161480610b895750610b8881610b836122a4565b611fed565b5b610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613d6d565b60405180910390fd5b610bd38383836122ac565b505050565b610be06122a4565b73ffffffffffffffffffffffffffffffffffffffff16610bfe611989565b73ffffffffffffffffffffffffffffffffffffffff1614610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613dcd565b60405180910390fd5b80600a9080519060200190610c6a92919061319f565b5050565b610c766122a4565b73ffffffffffffffffffffffffffffffffffffffff16610c94611989565b73ffffffffffffffffffffffffffffffffffffffff1614610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613dcd565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60008054905090565b610d186122a4565b73ffffffffffffffffffffffffffffffffffffffff16610d36611989565b73ffffffffffffffffffffffffffffffffffffffff1614610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390613dcd565b60405180910390fd5b80600d8190555050565b610da183838361235e565b505050565b6000610db18361159d565b8210610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990613cad565b60405180910390fd5b6000610dfc610d07565b905060008060005b83811015610f56576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ef657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f485786841415610f3f578195505050505050610f92565b83806001019450505b508080600101915050610e04565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990613f2d565b60405180910390fd5b92915050565b610fa06122a4565b73ffffffffffffffffffffffffffffffffffffffff16610fbe611989565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613dcd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103a90613bd2565b60006040518083038185875af1925050503d8060008114611077576040519150601f19603f3d011682016040523d82523d6000602084013e61107c565b606091505b50509050806110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613ead565b60405180910390fd5b50565b6110de83838360405180602001604052806000815250611c52565b505050565b606060006110f08361159d565b905060008167ffffffffffffffff81111561110e5761110d61442f565b5b60405190808252806020026020018201604052801561113c5781602001602082028036833780820191505090505b50905060006001905060005b83811080156111595750600d548211155b156111e257600061116983611440565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ce57828483815181106111b3576111b2614400565b5b60200260200101818152505081806111ca906142f9565b9250505b82806111d9906142f9565b93505050611148565b82945050505050919050565b600e60009054906101000a900460ff161561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613ded565b60405180910390fd5b600d54600161124b610d07565b61125591906140cb565b1115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90613ccd565b60405180910390fd5b6112a133600161289e565b565b60006112ad610d07565b82106112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613d2d565b60405180910390fd5b819050919050565b6112fe6122a4565b73ffffffffffffffffffffffffffffffffffffffff1661131c611989565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990613dcd565b60405180910390fd5b80600b908051906020019061138892919061319f565b5050565b600e60019054906101000a900460ff1681565b600a80546113ac90614296565b80601f01602080910402602001604051908101604052809291908181526020018280546113d890614296565b80156114255780601f106113fa57610100808354040283529160200191611425565b820191906000526020600020905b81548152906001019060200180831161140857829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b600061144b826128bc565b600001519050919050565b6000600c549050600e60009054906101000a900460ff16156114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613ded565b60405180910390fd5b6114b5611989565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115375780600a6114f49190614152565b341015611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613e6d565b60405180910390fd5b5b600d54600a611544610d07565b61154e91906140cb565b111561158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613ccd565b60405180910390fd5b61159a33600a61289e565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613d8d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61168e6122a4565b73ffffffffffffffffffffffffffffffffffffffff166116ac611989565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990613dcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6117cb6122a4565b73ffffffffffffffffffffffffffffffffffffffff166117e9611989565b73ffffffffffffffffffffffffffffffffffffffff161461183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690613dcd565b60405180910390fd5b600e60009054906101000a900460ff161561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613ded565b60405180910390fd5b600d548161189b610d07565b6118a591906140cb565b11156118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd90613ccd565b60405180910390fd5b6118f0338261289e565b50565b6118fb6122a4565b73ffffffffffffffffffffffffffffffffffffffff16611919611989565b73ffffffffffffffffffffffffffffffffffffffff161461196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613dcd565b60405180910390fd5b806009908051906020019061198592919061319f565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546119c290614296565b80601f01602080910402602001604051908101604052809291908181526020018280546119ee90614296565b8015611a3b5780601f10611a1057610100808354040283529160200191611a3b565b820191906000526020600020905b815481529060010190602001808311611a1e57829003601f168201915b5050505050905090565b600c5481565b611a536122a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab890613e2d565b60405180910390fd5b8060066000611ace6122a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b7b6122a4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bc09190613c70565b60405180910390a35050565b611bd46122a4565b73ffffffffffffffffffffffffffffffffffffffff16611bf2611989565b73ffffffffffffffffffffffffffffffffffffffff1614611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90613dcd565b60405180910390fd5b80600c8190555050565b611c5d84848461235e565b611c6984848484612a56565b611ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9f90613ecd565b60405180910390fd5b50505050565b6000600c549050600e60009054906101000a900460ff1615611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613ded565b60405180910390fd5b611d0d611989565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8f57806005611d4c9190614152565b341015611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590613e6d565b60405180910390fd5b5b600d546005611d9c610d07565b611da691906140cb565b1115611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90613ccd565b60405180910390fd5b611df233600561289e565b50565b6060611e0082612297565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690613e0d565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611eed57600b8054611e6890614296565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9490614296565b8015611ee15780601f10611eb657610100808354040283529160200191611ee1565b820191906000526020600020905b815481529060010190602001808311611ec457829003601f168201915b50505050509050611f49565b6000611ef7612bed565b90506000815111611f175760405180602001604052806000815250611f45565b80611f2184612c7f565b600a604051602001611f3593929190613ba1565b6040516020818303038152906040525b9150505b919050565b600d5481565b611f5c6122a4565b73ffffffffffffffffffffffffffffffffffffffff16611f7a611989565b73ffffffffffffffffffffffffffffffffffffffff1614611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613dcd565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120896122a4565b73ffffffffffffffffffffffffffffffffffffffff166120a7611989565b73ffffffffffffffffffffffffffffffffffffffff16146120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490613dcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490613ced565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612369826128bc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123906122a4565b73ffffffffffffffffffffffffffffffffffffffff1614806123ec57506123b56122a4565b73ffffffffffffffffffffffffffffffffffffffff166123d484610a3a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612408575061240782600001516124026122a4565b611fed565b5b90508061244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613e4d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b390613dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561252c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252390613d4d565b60405180910390fd5b6125398585856001612de0565b61254960008484600001516122ac565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561282e5761278d81612297565b1561282d5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128978585856001612de6565b5050505050565b6128b8828260405180602001604052806000815250612dec565b5050565b6128c4613225565b6128cd82612297565b61290c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290390613d0d565b60405180910390fd5b60008290505b60008110612a15576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a06578092505050612a51565b50808060019003915050612912565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890613f4d565b60405180910390fd5b919050565b6000612a778473ffffffffffffffffffffffffffffffffffffffff16612dfe565b15612be0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa06122a4565b8786866040518563ffffffff1660e01b8152600401612ac29493929190613c02565b602060405180830381600087803b158015612adc57600080fd5b505af1925050508015612b0d57506040513d601f19601f82011682018060405250810190612b0a91906135e2565b60015b612b90573d8060008114612b3d576040519150601f19603f3d011682016040523d82523d6000602084013e612b42565b606091505b50600081511415612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f90613ecd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612be5565b600190505b949350505050565b606060098054612bfc90614296565b80601f0160208091040260200160405190810160405280929190818152602001828054612c2890614296565b8015612c755780601f10612c4a57610100808354040283529160200191612c75565b820191906000526020600020905b815481529060010190602001808311612c5857829003601f168201915b5050505050905090565b60606000821415612cc7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ddb565b600082905060005b60008214612cf9578080612ce2906142f9565b915050600a82612cf29190614121565b9150612ccf565b60008167ffffffffffffffff811115612d1557612d1461442f565b5b6040519080825280601f01601f191660200182016040528015612d475781602001600182028036833780820191505090505b5090505b60008514612dd457600182612d6091906141ac565b9150600a85612d6f9190614342565b6030612d7b91906140cb565b60f81b818381518110612d9157612d90614400565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dcd9190614121565b9450612d4b565b8093505050505b919050565b50505050565b50505050565b612df98383836001612e21565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8e90613eed565b60405180910390fd5b6000841415612edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed290613f0d565b60405180910390fd5b612ee86000868387612de0565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561318257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561316d5761312d6000888488612a56565b61316c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316390613ecd565b60405180910390fd5b5b818060010192505080806001019150506130b6565b5080600081905550506131986000868387612de6565b5050505050565b8280546131ab90614296565b90600052602060002090601f0160209004810192826131cd5760008555613214565b82601f106131e657805160ff1916838001178555613214565b82800160010185558215613214579182015b828111156132135782518255916020019190600101906131f8565b5b509050613221919061325f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613278576000816000905550600101613260565b5090565b600061328f61328a84613fcd565b613fa8565b9050828152602081018484840111156132ab576132aa614463565b5b6132b6848285614254565b509392505050565b60006132d16132cc84613ffe565b613fa8565b9050828152602081018484840111156132ed576132ec614463565b5b6132f8848285614254565b509392505050565b60008135905061330f81614abb565b92915050565b60008135905061332481614ad2565b92915050565b60008135905061333981614ae9565b92915050565b60008151905061334e81614ae9565b92915050565b600082601f8301126133695761336861445e565b5b813561337984826020860161327c565b91505092915050565b600082601f8301126133975761339661445e565b5b81356133a78482602086016132be565b91505092915050565b6000813590506133bf81614b00565b92915050565b6000602082840312156133db576133da61446d565b5b60006133e984828501613300565b91505092915050565b600080604083850312156134095761340861446d565b5b600061341785828601613300565b925050602061342885828601613300565b9150509250929050565b60008060006060848603121561344b5761344a61446d565b5b600061345986828701613300565b935050602061346a86828701613300565b925050604061347b868287016133b0565b9150509250925092565b6000806000806080858703121561349f5761349e61446d565b5b60006134ad87828801613300565b94505060206134be87828801613300565b93505060406134cf878288016133b0565b925050606085013567ffffffffffffffff8111156134f0576134ef614468565b5b6134fc87828801613354565b91505092959194509250565b6000806040838503121561351f5761351e61446d565b5b600061352d85828601613300565b925050602061353e85828601613315565b9150509250929050565b6000806040838503121561355f5761355e61446d565b5b600061356d85828601613300565b925050602061357e858286016133b0565b9150509250929050565b60006020828403121561359e5761359d61446d565b5b60006135ac84828501613315565b91505092915050565b6000602082840312156135cb576135ca61446d565b5b60006135d98482850161332a565b91505092915050565b6000602082840312156135f8576135f761446d565b5b60006136068482850161333f565b91505092915050565b6000602082840312156136255761362461446d565b5b600082013567ffffffffffffffff81111561364357613642614468565b5b61364f84828501613382565b91505092915050565b60006020828403121561366e5761366d61446d565b5b600061367c848285016133b0565b91505092915050565b60006136918383613b83565b60208301905092915050565b6136a6816141e0565b82525050565b60006136b782614054565b6136c18185614082565b93506136cc8361402f565b8060005b838110156136fd5781516136e48882613685565b97506136ef83614075565b9250506001810190506136d0565b5085935050505092915050565b613713816141f2565b82525050565b60006137248261405f565b61372e8185614093565b935061373e818560208601614263565b61374781614472565b840191505092915050565b600061375d8261406a565b61376781856140af565b9350613777818560208601614263565b61378081614472565b840191505092915050565b60006137968261406a565b6137a081856140c0565b93506137b0818560208601614263565b80840191505092915050565b600081546137c981614296565b6137d381866140c0565b945060018216600081146137ee57600181146137ff57613832565b60ff19831686528186019350613832565b6138088561403f565b60005b8381101561382a5781548189015260018201915060208101905061380b565b838801955050505b50505092915050565b60006138486022836140af565b915061385382614483565b604082019050919050565b600061386b6007836140af565b9150613876826144d2565b602082019050919050565b600061388e6026836140af565b9150613899826144fb565b604082019050919050565b60006138b1602a836140af565b91506138bc8261454a565b604082019050919050565b60006138d46023836140af565b91506138df82614599565b604082019050919050565b60006138f76025836140af565b9150613902826145e8565b604082019050919050565b600061391a6039836140af565b915061392582614637565b604082019050919050565b600061393d602b836140af565b915061394882614686565b604082019050919050565b60006139606026836140af565b915061396b826146d5565b604082019050919050565b60006139836020836140af565b915061398e82614724565b602082019050919050565b60006139a66017836140af565b91506139b18261474d565b602082019050919050565b60006139c9602f836140af565b91506139d482614776565b604082019050919050565b60006139ec601a836140af565b91506139f7826147c5565b602082019050919050565b6000613a0f6032836140af565b9150613a1a826147ee565b604082019050919050565b6000613a32601d836140af565b9150613a3d8261483d565b602082019050919050565b6000613a556022836140af565b9150613a6082614866565b604082019050919050565b6000613a786000836140a4565b9150613a83826148b5565b600082019050919050565b6000613a9b6010836140af565b9150613aa6826148b8565b602082019050919050565b6000613abe6033836140af565b9150613ac9826148e1565b604082019050919050565b6000613ae16021836140af565b9150613aec82614930565b604082019050919050565b6000613b046028836140af565b9150613b0f8261497f565b604082019050919050565b6000613b27602e836140af565b9150613b32826149ce565b604082019050919050565b6000613b4a602f836140af565b9150613b5582614a1d565b604082019050919050565b6000613b6d602d836140af565b9150613b7882614a6c565b604082019050919050565b613b8c8161424a565b82525050565b613b9b8161424a565b82525050565b6000613bad828661378b565b9150613bb9828561378b565b9150613bc582846137bc565b9150819050949350505050565b6000613bdd82613a6b565b9150819050919050565b6000602082019050613bfc600083018461369d565b92915050565b6000608082019050613c17600083018761369d565b613c24602083018661369d565b613c316040830185613b92565b8181036060830152613c438184613719565b905095945050505050565b60006020820190508181036000830152613c6881846136ac565b905092915050565b6000602082019050613c85600083018461370a565b92915050565b60006020820190508181036000830152613ca58184613752565b905092915050565b60006020820190508181036000830152613cc68161383b565b9050919050565b60006020820190508181036000830152613ce68161385e565b9050919050565b60006020820190508181036000830152613d0681613881565b9050919050565b60006020820190508181036000830152613d26816138a4565b9050919050565b60006020820190508181036000830152613d46816138c7565b9050919050565b60006020820190508181036000830152613d66816138ea565b9050919050565b60006020820190508181036000830152613d868161390d565b9050919050565b60006020820190508181036000830152613da681613930565b9050919050565b60006020820190508181036000830152613dc681613953565b9050919050565b60006020820190508181036000830152613de681613976565b9050919050565b60006020820190508181036000830152613e0681613999565b9050919050565b60006020820190508181036000830152613e26816139bc565b9050919050565b60006020820190508181036000830152613e46816139df565b9050919050565b60006020820190508181036000830152613e6681613a02565b9050919050565b60006020820190508181036000830152613e8681613a25565b9050919050565b60006020820190508181036000830152613ea681613a48565b9050919050565b60006020820190508181036000830152613ec681613a8e565b9050919050565b60006020820190508181036000830152613ee681613ab1565b9050919050565b60006020820190508181036000830152613f0681613ad4565b9050919050565b60006020820190508181036000830152613f2681613af7565b9050919050565b60006020820190508181036000830152613f4681613b1a565b9050919050565b60006020820190508181036000830152613f6681613b3d565b9050919050565b60006020820190508181036000830152613f8681613b60565b9050919050565b6000602082019050613fa26000830184613b92565b92915050565b6000613fb2613fc3565b9050613fbe82826142c8565b919050565b6000604051905090565b600067ffffffffffffffff821115613fe857613fe761442f565b5b613ff182614472565b9050602081019050919050565b600067ffffffffffffffff8211156140195761401861442f565b5b61402282614472565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140d68261424a565b91506140e18361424a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561411657614115614373565b5b828201905092915050565b600061412c8261424a565b91506141378361424a565b925082614147576141466143a2565b5b828204905092915050565b600061415d8261424a565b91506141688361424a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141a1576141a0614373565b5b828202905092915050565b60006141b78261424a565b91506141c28361424a565b9250828210156141d5576141d4614373565b5b828203905092915050565b60006141eb8261422a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614281578082015181840152602081019050614266565b83811115614290576000848401525b50505050565b600060028204905060018216806142ae57607f821691505b602082108114156142c2576142c16143d1565b5b50919050565b6142d182614472565b810181811067ffffffffffffffff821117156142f0576142ef61442f565b5b80604052505050565b60006143048261424a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561433757614336614373565b5b600182019050919050565b600061434d8261424a565b91506143588361424a565b925082614368576143676143a2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614ac4816141e0565b8114614acf57600080fd5b50565b614adb816141f2565b8114614ae657600080fd5b50565b614af2816141fe565b8114614afd57600080fd5b50565b614b098161424a565b8114614b1457600080fd5b5056fea2646970667358221220ffada39863f39dd5c5fe4f1f259883aa929a98168ffd4a6ab9e396c43c45864a64736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80635c975abb11610123578063a035b1fe116100ab578063c87b56dd1161006f578063c87b56dd14610767578063d5abeb01146107a4578063e0a80853146107cf578063e985e9c5146107f8578063f2fde38b146108355761021a565b8063a035b1fe146106b7578063a22cb465146106e2578063a2b40d191461070b578063b88d4fde14610734578063bc570e811461075d5761021a565b8063715018a6116100f2578063715018a6146105f857806377544d731461060f5780637ec4a659146106385780638da5cb5b1461066157806395d89b411461068c5761021a565b80635c975abb146105495780636352211e146105745780636a91b23f146105b157806370a08231146105bb5761021a565b80632f745c59116101a65780634e71d92d116101755780634e71d92d146104765780634f6ccce71461048d5780634fdd43cb146104ca57806351830227146104f35780635503a0e81461051e5761021a565b80632f745c59146103bc5780633ccfd60b146103f957806342842e0e14610410578063438b6300146104395761021a565b806316ba10e0116101ed57806316ba10e0146102ed57806316c38b3c1461031657806318160ddd1461033f578063228025e81461036a57806323b872dd146103935761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906135b5565b61085e565b6040516102539190613c70565b60405180910390f35b34801561026857600080fd5b506102716109a8565b60405161027e9190613c8b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613658565b610a3a565b6040516102bb9190613be7565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613548565b610abf565b005b3480156102f957600080fd5b50610314600480360381019061030f919061360f565b610bd8565b005b34801561032257600080fd5b5061033d60048036038101906103389190613588565b610c6e565b005b34801561034b57600080fd5b50610354610d07565b6040516103619190613f8d565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190613658565b610d10565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190613432565b610d96565b005b3480156103c857600080fd5b506103e360048036038101906103de9190613548565b610da6565b6040516103f09190613f8d565b60405180910390f35b34801561040557600080fd5b5061040e610f98565b005b34801561041c57600080fd5b5061043760048036038101906104329190613432565b6110c3565b005b34801561044557600080fd5b50610460600480360381019061045b91906133c5565b6110e3565b60405161046d9190613c4e565b60405180910390f35b34801561048257600080fd5b5061048b6111ee565b005b34801561049957600080fd5b506104b460048036038101906104af9190613658565b6112a3565b6040516104c19190613f8d565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec919061360f565b6112f6565b005b3480156104ff57600080fd5b5061050861138c565b6040516105159190613c70565b60405180910390f35b34801561052a57600080fd5b5061053361139f565b6040516105409190613c8b565b60405180910390f35b34801561055557600080fd5b5061055e61142d565b60405161056b9190613c70565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613658565b611440565b6040516105a89190613be7565b60405180910390f35b6105b9611456565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906133c5565b61159d565b6040516105ef9190613f8d565b60405180910390f35b34801561060457600080fd5b5061060d611686565b005b34801561061b57600080fd5b5061063660048036038101906106319190613658565b6117c3565b005b34801561064457600080fd5b5061065f600480360381019061065a919061360f565b6118f3565b005b34801561066d57600080fd5b50610676611989565b6040516106839190613be7565b60405180910390f35b34801561069857600080fd5b506106a16119b3565b6040516106ae9190613c8b565b60405180910390f35b3480156106c357600080fd5b506106cc611a45565b6040516106d99190613f8d565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613508565b611a4b565b005b34801561071757600080fd5b50610732600480360381019061072d9190613658565b611bcc565b005b34801561074057600080fd5b5061075b60048036038101906107569190613485565b611c52565b005b610765611cae565b005b34801561077357600080fd5b5061078e60048036038101906107899190613658565b611df5565b60405161079b9190613c8b565b60405180910390f35b3480156107b057600080fd5b506107b9611f4e565b6040516107c69190613f8d565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613588565b611f54565b005b34801561080457600080fd5b5061081f600480360381019061081a91906133f2565b611fed565b60405161082c9190613c70565b60405180910390f35b34801561084157600080fd5b5061085c600480360381019061085791906133c5565b612081565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a157506109a08261222d565b5b9050919050565b6060600180546109b790614296565b80601f01602080910402602001604051908101604052809291908181526020018280546109e390614296565b8015610a305780601f10610a0557610100808354040283529160200191610a30565b820191906000526020600020905b815481529060010190602001808311610a1357829003601f168201915b5050505050905090565b6000610a4582612297565b610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90613f6d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aca82611440565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290613e8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5a6122a4565b73ffffffffffffffffffffffffffffffffffffffff161480610b895750610b8881610b836122a4565b611fed565b5b610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613d6d565b60405180910390fd5b610bd38383836122ac565b505050565b610be06122a4565b73ffffffffffffffffffffffffffffffffffffffff16610bfe611989565b73ffffffffffffffffffffffffffffffffffffffff1614610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613dcd565b60405180910390fd5b80600a9080519060200190610c6a92919061319f565b5050565b610c766122a4565b73ffffffffffffffffffffffffffffffffffffffff16610c94611989565b73ffffffffffffffffffffffffffffffffffffffff1614610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613dcd565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60008054905090565b610d186122a4565b73ffffffffffffffffffffffffffffffffffffffff16610d36611989565b73ffffffffffffffffffffffffffffffffffffffff1614610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390613dcd565b60405180910390fd5b80600d8190555050565b610da183838361235e565b505050565b6000610db18361159d565b8210610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990613cad565b60405180910390fd5b6000610dfc610d07565b905060008060005b83811015610f56576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ef657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f485786841415610f3f578195505050505050610f92565b83806001019450505b508080600101915050610e04565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990613f2d565b60405180910390fd5b92915050565b610fa06122a4565b73ffffffffffffffffffffffffffffffffffffffff16610fbe611989565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613dcd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103a90613bd2565b60006040518083038185875af1925050503d8060008114611077576040519150601f19603f3d011682016040523d82523d6000602084013e61107c565b606091505b50509050806110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613ead565b60405180910390fd5b50565b6110de83838360405180602001604052806000815250611c52565b505050565b606060006110f08361159d565b905060008167ffffffffffffffff81111561110e5761110d61442f565b5b60405190808252806020026020018201604052801561113c5781602001602082028036833780820191505090505b50905060006001905060005b83811080156111595750600d548211155b156111e257600061116983611440565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ce57828483815181106111b3576111b2614400565b5b60200260200101818152505081806111ca906142f9565b9250505b82806111d9906142f9565b93505050611148565b82945050505050919050565b600e60009054906101000a900460ff161561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613ded565b60405180910390fd5b600d54600161124b610d07565b61125591906140cb565b1115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90613ccd565b60405180910390fd5b6112a133600161289e565b565b60006112ad610d07565b82106112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613d2d565b60405180910390fd5b819050919050565b6112fe6122a4565b73ffffffffffffffffffffffffffffffffffffffff1661131c611989565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990613dcd565b60405180910390fd5b80600b908051906020019061138892919061319f565b5050565b600e60019054906101000a900460ff1681565b600a80546113ac90614296565b80601f01602080910402602001604051908101604052809291908181526020018280546113d890614296565b80156114255780601f106113fa57610100808354040283529160200191611425565b820191906000526020600020905b81548152906001019060200180831161140857829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b600061144b826128bc565b600001519050919050565b6000600c549050600e60009054906101000a900460ff16156114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613ded565b60405180910390fd5b6114b5611989565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115375780600a6114f49190614152565b341015611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613e6d565b60405180910390fd5b5b600d54600a611544610d07565b61154e91906140cb565b111561158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613ccd565b60405180910390fd5b61159a33600a61289e565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613d8d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61168e6122a4565b73ffffffffffffffffffffffffffffffffffffffff166116ac611989565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990613dcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6117cb6122a4565b73ffffffffffffffffffffffffffffffffffffffff166117e9611989565b73ffffffffffffffffffffffffffffffffffffffff161461183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690613dcd565b60405180910390fd5b600e60009054906101000a900460ff161561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613ded565b60405180910390fd5b600d548161189b610d07565b6118a591906140cb565b11156118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd90613ccd565b60405180910390fd5b6118f0338261289e565b50565b6118fb6122a4565b73ffffffffffffffffffffffffffffffffffffffff16611919611989565b73ffffffffffffffffffffffffffffffffffffffff161461196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613dcd565b60405180910390fd5b806009908051906020019061198592919061319f565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546119c290614296565b80601f01602080910402602001604051908101604052809291908181526020018280546119ee90614296565b8015611a3b5780601f10611a1057610100808354040283529160200191611a3b565b820191906000526020600020905b815481529060010190602001808311611a1e57829003601f168201915b5050505050905090565b600c5481565b611a536122a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab890613e2d565b60405180910390fd5b8060066000611ace6122a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b7b6122a4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bc09190613c70565b60405180910390a35050565b611bd46122a4565b73ffffffffffffffffffffffffffffffffffffffff16611bf2611989565b73ffffffffffffffffffffffffffffffffffffffff1614611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90613dcd565b60405180910390fd5b80600c8190555050565b611c5d84848461235e565b611c6984848484612a56565b611ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9f90613ecd565b60405180910390fd5b50505050565b6000600c549050600e60009054906101000a900460ff1615611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613ded565b60405180910390fd5b611d0d611989565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8f57806005611d4c9190614152565b341015611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590613e6d565b60405180910390fd5b5b600d546005611d9c610d07565b611da691906140cb565b1115611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90613ccd565b60405180910390fd5b611df233600561289e565b50565b6060611e0082612297565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690613e0d565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611eed57600b8054611e6890614296565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9490614296565b8015611ee15780601f10611eb657610100808354040283529160200191611ee1565b820191906000526020600020905b815481529060010190602001808311611ec457829003601f168201915b50505050509050611f49565b6000611ef7612bed565b90506000815111611f175760405180602001604052806000815250611f45565b80611f2184612c7f565b600a604051602001611f3593929190613ba1565b6040516020818303038152906040525b9150505b919050565b600d5481565b611f5c6122a4565b73ffffffffffffffffffffffffffffffffffffffff16611f7a611989565b73ffffffffffffffffffffffffffffffffffffffff1614611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613dcd565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120896122a4565b73ffffffffffffffffffffffffffffffffffffffff166120a7611989565b73ffffffffffffffffffffffffffffffffffffffff16146120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490613dcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490613ced565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612369826128bc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123906122a4565b73ffffffffffffffffffffffffffffffffffffffff1614806123ec57506123b56122a4565b73ffffffffffffffffffffffffffffffffffffffff166123d484610a3a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612408575061240782600001516124026122a4565b611fed565b5b90508061244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613e4d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b390613dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561252c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252390613d4d565b60405180910390fd5b6125398585856001612de0565b61254960008484600001516122ac565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561282e5761278d81612297565b1561282d5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128978585856001612de6565b5050505050565b6128b8828260405180602001604052806000815250612dec565b5050565b6128c4613225565b6128cd82612297565b61290c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290390613d0d565b60405180910390fd5b60008290505b60008110612a15576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a06578092505050612a51565b50808060019003915050612912565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890613f4d565b60405180910390fd5b919050565b6000612a778473ffffffffffffffffffffffffffffffffffffffff16612dfe565b15612be0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa06122a4565b8786866040518563ffffffff1660e01b8152600401612ac29493929190613c02565b602060405180830381600087803b158015612adc57600080fd5b505af1925050508015612b0d57506040513d601f19601f82011682018060405250810190612b0a91906135e2565b60015b612b90573d8060008114612b3d576040519150601f19603f3d011682016040523d82523d6000602084013e612b42565b606091505b50600081511415612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f90613ecd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612be5565b600190505b949350505050565b606060098054612bfc90614296565b80601f0160208091040260200160405190810160405280929190818152602001828054612c2890614296565b8015612c755780601f10612c4a57610100808354040283529160200191612c75565b820191906000526020600020905b815481529060010190602001808311612c5857829003601f168201915b5050505050905090565b60606000821415612cc7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ddb565b600082905060005b60008214612cf9578080612ce2906142f9565b915050600a82612cf29190614121565b9150612ccf565b60008167ffffffffffffffff811115612d1557612d1461442f565b5b6040519080825280601f01601f191660200182016040528015612d475781602001600182028036833780820191505090505b5090505b60008514612dd457600182612d6091906141ac565b9150600a85612d6f9190614342565b6030612d7b91906140cb565b60f81b818381518110612d9157612d90614400565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dcd9190614121565b9450612d4b565b8093505050505b919050565b50505050565b50505050565b612df98383836001612e21565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8e90613eed565b60405180910390fd5b6000841415612edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed290613f0d565b60405180910390fd5b612ee86000868387612de0565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561318257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561316d5761312d6000888488612a56565b61316c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316390613ecd565b60405180910390fd5b5b818060010192505080806001019150506130b6565b5080600081905550506131986000868387612de6565b5050505050565b8280546131ab90614296565b90600052602060002090601f0160209004810192826131cd5760008555613214565b82601f106131e657805160ff1916838001178555613214565b82800160010185558215613214579182015b828111156132135782518255916020019190600101906131f8565b5b509050613221919061325f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613278576000816000905550600101613260565b5090565b600061328f61328a84613fcd565b613fa8565b9050828152602081018484840111156132ab576132aa614463565b5b6132b6848285614254565b509392505050565b60006132d16132cc84613ffe565b613fa8565b9050828152602081018484840111156132ed576132ec614463565b5b6132f8848285614254565b509392505050565b60008135905061330f81614abb565b92915050565b60008135905061332481614ad2565b92915050565b60008135905061333981614ae9565b92915050565b60008151905061334e81614ae9565b92915050565b600082601f8301126133695761336861445e565b5b813561337984826020860161327c565b91505092915050565b600082601f8301126133975761339661445e565b5b81356133a78482602086016132be565b91505092915050565b6000813590506133bf81614b00565b92915050565b6000602082840312156133db576133da61446d565b5b60006133e984828501613300565b91505092915050565b600080604083850312156134095761340861446d565b5b600061341785828601613300565b925050602061342885828601613300565b9150509250929050565b60008060006060848603121561344b5761344a61446d565b5b600061345986828701613300565b935050602061346a86828701613300565b925050604061347b868287016133b0565b9150509250925092565b6000806000806080858703121561349f5761349e61446d565b5b60006134ad87828801613300565b94505060206134be87828801613300565b93505060406134cf878288016133b0565b925050606085013567ffffffffffffffff8111156134f0576134ef614468565b5b6134fc87828801613354565b91505092959194509250565b6000806040838503121561351f5761351e61446d565b5b600061352d85828601613300565b925050602061353e85828601613315565b9150509250929050565b6000806040838503121561355f5761355e61446d565b5b600061356d85828601613300565b925050602061357e858286016133b0565b9150509250929050565b60006020828403121561359e5761359d61446d565b5b60006135ac84828501613315565b91505092915050565b6000602082840312156135cb576135ca61446d565b5b60006135d98482850161332a565b91505092915050565b6000602082840312156135f8576135f761446d565b5b60006136068482850161333f565b91505092915050565b6000602082840312156136255761362461446d565b5b600082013567ffffffffffffffff81111561364357613642614468565b5b61364f84828501613382565b91505092915050565b60006020828403121561366e5761366d61446d565b5b600061367c848285016133b0565b91505092915050565b60006136918383613b83565b60208301905092915050565b6136a6816141e0565b82525050565b60006136b782614054565b6136c18185614082565b93506136cc8361402f565b8060005b838110156136fd5781516136e48882613685565b97506136ef83614075565b9250506001810190506136d0565b5085935050505092915050565b613713816141f2565b82525050565b60006137248261405f565b61372e8185614093565b935061373e818560208601614263565b61374781614472565b840191505092915050565b600061375d8261406a565b61376781856140af565b9350613777818560208601614263565b61378081614472565b840191505092915050565b60006137968261406a565b6137a081856140c0565b93506137b0818560208601614263565b80840191505092915050565b600081546137c981614296565b6137d381866140c0565b945060018216600081146137ee57600181146137ff57613832565b60ff19831686528186019350613832565b6138088561403f565b60005b8381101561382a5781548189015260018201915060208101905061380b565b838801955050505b50505092915050565b60006138486022836140af565b915061385382614483565b604082019050919050565b600061386b6007836140af565b9150613876826144d2565b602082019050919050565b600061388e6026836140af565b9150613899826144fb565b604082019050919050565b60006138b1602a836140af565b91506138bc8261454a565b604082019050919050565b60006138d46023836140af565b91506138df82614599565b604082019050919050565b60006138f76025836140af565b9150613902826145e8565b604082019050919050565b600061391a6039836140af565b915061392582614637565b604082019050919050565b600061393d602b836140af565b915061394882614686565b604082019050919050565b60006139606026836140af565b915061396b826146d5565b604082019050919050565b60006139836020836140af565b915061398e82614724565b602082019050919050565b60006139a66017836140af565b91506139b18261474d565b602082019050919050565b60006139c9602f836140af565b91506139d482614776565b604082019050919050565b60006139ec601a836140af565b91506139f7826147c5565b602082019050919050565b6000613a0f6032836140af565b9150613a1a826147ee565b604082019050919050565b6000613a32601d836140af565b9150613a3d8261483d565b602082019050919050565b6000613a556022836140af565b9150613a6082614866565b604082019050919050565b6000613a786000836140a4565b9150613a83826148b5565b600082019050919050565b6000613a9b6010836140af565b9150613aa6826148b8565b602082019050919050565b6000613abe6033836140af565b9150613ac9826148e1565b604082019050919050565b6000613ae16021836140af565b9150613aec82614930565b604082019050919050565b6000613b046028836140af565b9150613b0f8261497f565b604082019050919050565b6000613b27602e836140af565b9150613b32826149ce565b604082019050919050565b6000613b4a602f836140af565b9150613b5582614a1d565b604082019050919050565b6000613b6d602d836140af565b9150613b7882614a6c565b604082019050919050565b613b8c8161424a565b82525050565b613b9b8161424a565b82525050565b6000613bad828661378b565b9150613bb9828561378b565b9150613bc582846137bc565b9150819050949350505050565b6000613bdd82613a6b565b9150819050919050565b6000602082019050613bfc600083018461369d565b92915050565b6000608082019050613c17600083018761369d565b613c24602083018661369d565b613c316040830185613b92565b8181036060830152613c438184613719565b905095945050505050565b60006020820190508181036000830152613c6881846136ac565b905092915050565b6000602082019050613c85600083018461370a565b92915050565b60006020820190508181036000830152613ca58184613752565b905092915050565b60006020820190508181036000830152613cc68161383b565b9050919050565b60006020820190508181036000830152613ce68161385e565b9050919050565b60006020820190508181036000830152613d0681613881565b9050919050565b60006020820190508181036000830152613d26816138a4565b9050919050565b60006020820190508181036000830152613d46816138c7565b9050919050565b60006020820190508181036000830152613d66816138ea565b9050919050565b60006020820190508181036000830152613d868161390d565b9050919050565b60006020820190508181036000830152613da681613930565b9050919050565b60006020820190508181036000830152613dc681613953565b9050919050565b60006020820190508181036000830152613de681613976565b9050919050565b60006020820190508181036000830152613e0681613999565b9050919050565b60006020820190508181036000830152613e26816139bc565b9050919050565b60006020820190508181036000830152613e46816139df565b9050919050565b60006020820190508181036000830152613e6681613a02565b9050919050565b60006020820190508181036000830152613e8681613a25565b9050919050565b60006020820190508181036000830152613ea681613a48565b9050919050565b60006020820190508181036000830152613ec681613a8e565b9050919050565b60006020820190508181036000830152613ee681613ab1565b9050919050565b60006020820190508181036000830152613f0681613ad4565b9050919050565b60006020820190508181036000830152613f2681613af7565b9050919050565b60006020820190508181036000830152613f4681613b1a565b9050919050565b60006020820190508181036000830152613f6681613b3d565b9050919050565b60006020820190508181036000830152613f8681613b60565b9050919050565b6000602082019050613fa26000830184613b92565b92915050565b6000613fb2613fc3565b9050613fbe82826142c8565b919050565b6000604051905090565b600067ffffffffffffffff821115613fe857613fe761442f565b5b613ff182614472565b9050602081019050919050565b600067ffffffffffffffff8211156140195761401861442f565b5b61402282614472565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140d68261424a565b91506140e18361424a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561411657614115614373565b5b828201905092915050565b600061412c8261424a565b91506141378361424a565b925082614147576141466143a2565b5b828204905092915050565b600061415d8261424a565b91506141688361424a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141a1576141a0614373565b5b828202905092915050565b60006141b78261424a565b91506141c28361424a565b9250828210156141d5576141d4614373565b5b828203905092915050565b60006141eb8261422a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614281578082015181840152602081019050614266565b83811115614290576000848401525b50505050565b600060028204905060018216806142ae57607f821691505b602082108114156142c2576142c16143d1565b5b50919050565b6142d182614472565b810181811067ffffffffffffffff821117156142f0576142ef61442f565b5b80604052505050565b60006143048261424a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561433757614336614373565b5b600182019050919050565b600061434d8261424a565b91506143588361424a565b925082614368576143676143a2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614ac4816141e0565b8114614acf57600080fd5b50565b614adb816141f2565b8114614ae657600080fd5b50565b614af2816141fe565b8114614afd57600080fd5b50565b614b098161424a565b8114614b1457600080fd5b5056fea2646970667358221220ffada39863f39dd5c5fe4f1f259883aa929a98168ffd4a6ab9e396c43c45864a64736f6c63430008070033
Deployed Bytecode Sourcemap
65123:3953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51928:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53814:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55385:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54906:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68863:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68343:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50177:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68515:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56261:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50849:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65755:182;;;;;;;;;;;;;:::i;:::-;;56494:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67136:703;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65960:187;;;;;;;;;;;;;:::i;:::-;;50362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68615:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65616:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65295:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65586:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53623:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66536:358;;;:::i;:::-;;52364:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17467:148;;;;;;;;;;;;;:::i;:::-;;66911:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68755:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16816:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53983:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65502:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55671:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65652:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56742:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66164:354;;;:::i;:::-;;67847:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65543:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68426:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56030:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17770:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51928:372;52030:4;52082:25;52067:40;;;:11;:40;;;;:105;;;;52139:33;52124:48;;;:11;:48;;;;52067:105;:172;;;;52204:35;52189:50;;;:11;:50;;;;52067:172;:225;;;;52256:36;52280:11;52256:23;:36::i;:::-;52067:225;52047:245;;51928:372;;;:::o;53814:100::-;53868:13;53901:5;53894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53814:100;:::o;55385:214::-;55453:7;55481:16;55489:7;55481;:16::i;:::-;55473:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;55567:15;:24;55583:7;55567:24;;;;;;;;;;;;;;;;;;;;;55560:31;;55385:214;;;:::o;54906:413::-;54979:13;54995:24;55011:7;54995:15;:24::i;:::-;54979:40;;55044:5;55038:11;;:2;:11;;;;55030:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55139:5;55123:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;55148:37;55165:5;55172:12;:10;:12::i;:::-;55148:16;:37::i;:::-;55123:62;55101:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;55283:28;55292:2;55296:7;55305:5;55283:8;:28::i;:::-;54968:351;54906:413;;:::o;68863:100::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68947:10:::1;68935:9;:22;;;;;;;;;;;;:::i;:::-;;68863:100:::0;:::o;68343:77::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68408:6:::1;68399;;:15;;;;;;;;;;;;;;;;;;68343:77:::0;:::o;50177:108::-;50238:7;50265:12;;50258:19;;50177:108;:::o;68515:94::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68593:10:::1;68581:9;:22;;;;68515:94:::0;:::o;56261:162::-;56387:28;56397:4;56403:2;56407:7;56387:9;:28::i;:::-;56261:162;;;:::o;50849:1007::-;50938:7;50974:16;50984:5;50974:9;:16::i;:::-;50966:5;:24;50958:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51040:22;51065:13;:11;:13::i;:::-;51040:38;;51089:19;51119:25;51308:9;51303:466;51323:14;51319:1;:18;51303:466;;;51363:31;51397:11;:14;51409:1;51397:14;;;;;;;;;;;51363:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51460:1;51434:28;;:9;:14;;;:28;;;51430:111;;51507:9;:14;;;51487:34;;51430:111;51584:5;51563:26;;:17;:26;;;51559:195;;;51633:5;51618:11;:20;51614:85;;;51674:1;51667:8;;;;;;;;;51614:85;51721:13;;;;;;;51559:195;51344:425;51339:3;;;;;;;51303:466;;;;51792:56;;;;;;;;;;:::i;:::-;;;;;;;;50849:1007;;;;;:::o;65755:182::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65806:12:::1;65832:10;65824:24;;65856:21;65824:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65805:77;;;65901:7;65893:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;65794:143;65755:182::o:0;56494:177::-;56624:39;56641:4;56647:2;56651:7;56624:39;;;;;;;;;;;;:16;:39::i;:::-;56494:177;;;:::o;67136:703::-;67223:16;67257:23;67283:17;67293:6;67283:9;:17::i;:::-;67257:43;;67311:30;67358:15;67344:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67311:63;;67385:22;67410:1;67385:26;;67422:23;67462:339;67487:15;67469;:33;:64;;;;;67524:9;;67506:14;:27;;67469:64;67462:339;;;67546:25;67574:23;67582:14;67574:7;:23::i;:::-;67546:51;;67637:6;67616:27;;:17;:27;;;67612:151;;;67697:14;67664:13;67678:15;67664:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;67730:17;;;;;:::i;:::-;;;;67612:151;67773:16;;;;;:::i;:::-;;;;67535:266;67462:339;;;67818:13;67811:20;;;;;;67136:703;;;:::o;65960:187::-;66005:6;;;;;;;;;;;66004:7;65996:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;66081:9;;66076:1;66060:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;66052:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;66115:24;66125:10;66137:1;66115:9;:24::i;:::-;65960:187::o;50362:::-;50429:7;50465:13;:11;:13::i;:::-;50457:5;:21;50449:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50536:5;50529:12;;50362:187;;;:::o;68615:132::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68723:18:::1;68703:17;:38;;;;;;;;;;;;:::i;:::-;;68615:132:::0;:::o;65616:27::-;;;;;;;;;;;;;:::o;65295:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65586:25::-;;;;;;;;;;;;;:::o;53623:124::-;53687:7;53714:20;53726:7;53714:11;:20::i;:::-;:25;;;53707:32;;53623:124;;;:::o;66536:358::-;66582:12;66597:5;;66582:20;;66622:6;;;;;;;;;;;66621:7;66613:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;66685:7;:5;:7::i;:::-;66671:21;;:10;:21;;;66667:118;;66735:4;66730:2;:9;;;;:::i;:::-;66717;:22;;66709:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;66667:118;66827:9;;66821:2;66805:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:31;;66797:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;66861:25;66871:10;66883:2;66861:9;:25::i;:::-;66571:323;66536:358::o;52364:221::-;52428:7;52473:1;52456:19;;:5;:19;;;;52448:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;52549:12;:19;52562:5;52549:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;52541:36;;52534:43;;52364:221;;;:::o;17467:148::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17574:1:::1;17537:40;;17558:6;;;;;;;;;;;17537:40;;;;;;;;;;;;17605:1;17588:6;;:19;;;;;;;;;;;;;;;;;;17467:148::o:0;66911:217::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66978:6:::1;;;;;;;;;;;66977:7;66969:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;67058:9;;67049:5;67033:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;67025:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;67092:28;67102:10;67114:5;67092:9;:28::i;:::-;66911:217:::0;:::o;68755:100::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68839:10:::1;68827:9;:22;;;;;;;;;;;;:::i;:::-;;68755:100:::0;:::o;16816:87::-;16862:7;16889:6;;;;;;;;;;;16882:13;;16816:87;:::o;53983:104::-;54039:13;54072:7;54065:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53983:104;:::o;65502:34::-;;;;:::o;55671:288::-;55778:12;:10;:12::i;:::-;55766:24;;:8;:24;;;;55758:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55879:8;55834:18;:32;55853:12;:10;:12::i;:::-;55834:32;;;;;;;;;;;;;;;:42;55867:8;55834:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55932:8;55903:48;;55918:12;:10;:12::i;:::-;55903:48;;;55942:8;55903:48;;;;;;:::i;:::-;;;;;;;;55671:288;;:::o;65652:95::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65730:9:::1;65722:5;:17;;;;65652:95:::0;:::o;56742:355::-;56901:28;56911:4;56917:2;56921:7;56901:9;:28::i;:::-;56962:48;56985:4;56991:2;56995:7;57004:5;56962:22;:48::i;:::-;56940:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;56742:355;;;;:::o;66164:354::-;66209:12;66224:5;;66209:20;;66249:6;;;;;;;;;;;66248:7;66240:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;66312:7;:5;:7::i;:::-;66298:21;;:10;:21;;;66294:117;;66361:4;66357:1;:8;;;;:::i;:::-;66344:9;:21;;66336:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;66294:117;66452:9;;66447:1;66431:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;66423:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;66486:24;66496:10;66508:1;66486:9;:24::i;:::-;66198:320;66164:354::o;67847:490::-;67946:13;67987:17;67995:8;67987:7;:17::i;:::-;67971:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;68092:5;68080:17;;:8;;;;;;;;;;;:17;;;68076:64;;;68115:17;68108:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68076:64;68146:28;68177:10;:8;:10::i;:::-;68146:41;;68232:1;68207:14;68201:28;:32;:130;;;;;;;;;;;;;;;;;68269:14;68285:19;:8;:17;:19::i;:::-;68306:9;68252:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68201:130;68194:137;;;67847:490;;;;:::o;65543:31::-;;;;:::o;68426:81::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68495:6:::1;68484:8;;:17;;;;;;;;;;;;;;;;;;68426:81:::0;:::o;56030:164::-;56127:4;56151:18;:25;56170:5;56151:25;;;;;;;;;;;;;;;:35;56177:8;56151:35;;;;;;;;;;;;;;;;;;;;;;;;;56144:42;;56030:164;;;;:::o;17770:244::-;17047:12;:10;:12::i;:::-;17036:23;;:7;:5;:7::i;:::-;:23;;;17028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17879:1:::1;17859:22;;:8;:22;;;;17851:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17969:8;17940:38;;17961:6;;;;;;;;;;;17940:38;;;;;;;;;;;;17998:8;17989:6;;:17;;;;;;;;;;;;;;;;;;17770:244:::0;:::o;25090:157::-;25175:4;25214:25;25199:40;;;:11;:40;;;;25192:47;;25090:157;;;:::o;57352:111::-;57409:4;57443:12;;57433:7;:22;57426:29;;57352:111;;;:::o;11842:98::-;11895:7;11922:10;11915:17;;11842:98;:::o;62272:196::-;62414:2;62387:15;:24;62403:7;62387:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;62452:7;62448:2;62432:28;;62441:5;62432:28;;;;;;;;;;;;62272:196;;;:::o;60152:2002::-;60267:35;60305:20;60317:7;60305:11;:20::i;:::-;60267:58;;60338:22;60380:13;:18;;;60364:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;60439:12;:10;:12::i;:::-;60415:36;;:20;60427:7;60415:11;:20::i;:::-;:36;;;60364:87;:154;;;;60468:50;60485:13;:18;;;60505:12;:10;:12::i;:::-;60468:16;:50::i;:::-;60364:154;60338:181;;60540:17;60532:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;60655:4;60633:26;;:13;:18;;;:26;;;60625:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;60735:1;60721:16;;:2;:16;;;;60713:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;60792:43;60814:4;60820:2;60824:7;60833:1;60792:21;:43::i;:::-;60900:49;60917:1;60921:7;60930:13;:18;;;60900:8;:49::i;:::-;61275:1;61245:12;:18;61258:4;61245:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61319:1;61291:12;:16;61304:2;61291:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61365:2;61337:11;:20;61349:7;61337:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;61427:15;61382:11;:20;61394:7;61382:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;61695:19;61727:1;61717:7;:11;61695:33;;61788:1;61747:43;;:11;:24;61759:11;61747:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;61743:295;;;61815:20;61823:11;61815:7;:20::i;:::-;61811:212;;;61892:13;:18;;;61860:11;:24;61872:11;61860:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;61975:13;:28;;;61933:11;:24;61945:11;61933:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;61811:212;61743:295;61220:829;62085:7;62081:2;62066:27;;62075:4;62066:27;;;;;;;;;;;;62104:42;62125:4;62131:2;62135:7;62144:1;62104:20;:42::i;:::-;60256:1898;;60152:2002;;;:::o;57471:104::-;57540:27;57550:2;57554:8;57540:27;;;;;;;;;;;;:9;:27::i;:::-;57471:104;;:::o;53024:537::-;53085:21;;:::i;:::-;53127:16;53135:7;53127;:16::i;:::-;53119:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;53233:12;53248:7;53233:22;;53228:245;53265:1;53257:4;:9;53228:245;;53295:31;53329:11;:17;53341:4;53329:17;;;;;;;;;;;53295:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53395:1;53369:28;;:9;:14;;;:28;;;53365:93;;53429:9;53422:16;;;;;;53365:93;53276:197;53268:6;;;;;;;;53228:245;;;;53496:57;;;;;;;;;;:::i;:::-;;;;;;;;53024:537;;;;:::o;63033:804::-;63188:4;63209:15;:2;:13;;;:15::i;:::-;63205:625;;;63261:2;63245:36;;;63282:12;:10;:12::i;:::-;63296:4;63302:7;63311:5;63245:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63241:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63508:1;63491:6;:13;:18;63487:273;;;63534:61;;;;;;;;;;:::i;:::-;;;;;;;;63487:273;63710:6;63704:13;63695:6;63691:2;63687:15;63680:38;63241:534;63378:45;;;63368:55;;;:6;:55;;;;63361:62;;;;;63205:625;63814:4;63807:11;;63033:804;;;;;;;:::o;68969:104::-;69029:13;69058:9;69051:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68969:104;:::o;12525:723::-;12581:13;12811:1;12802:5;:10;12798:53;;;12829:10;;;;;;;;;;;;;;;;;;;;;12798:53;12861:12;12876:5;12861:20;;12892:14;12917:78;12932:1;12924:4;:9;12917:78;;12950:8;;;;;:::i;:::-;;;;12981:2;12973:10;;;;;:::i;:::-;;;12917:78;;;13005:19;13037:6;13027:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:39;;13055:154;13071:1;13062:5;:10;13055:154;;13099:1;13089:11;;;;;:::i;:::-;;;13166:2;13158:5;:10;;;;:::i;:::-;13145:2;:24;;;;:::i;:::-;13132:39;;13115:6;13122;13115:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13195:2;13186:11;;;;;:::i;:::-;;;13055:154;;;13233:6;13219:21;;;;;12525:723;;;;:::o;64325:159::-;;;;;:::o;64896:158::-;;;;;:::o;57938:163::-;58061:32;58067:2;58071:8;58081:5;58088:4;58061:5;:32::i;:::-;57938:163;;;:::o;1223:326::-;1283:4;1540:1;1518:7;:19;;;:23;1511:30;;1223:326;;;:::o;58360:1538::-;58499:20;58522:12;;58499:35;;58567:1;58553:16;;:2;:16;;;;58545:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58638:1;58626:8;:13;;58618:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58697:61;58727:1;58731:2;58735:12;58749:8;58697:21;:61::i;:::-;59072:8;59036:12;:16;59049:2;59036:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59137:8;59096:12;:16;59109:2;59096:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59196:2;59163:11;:25;59175:12;59163:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;59263:15;59213:11;:25;59225:12;59213:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;59296:20;59319:12;59296:35;;59353:9;59348:415;59368:8;59364:1;:12;59348:415;;;59432:12;59428:2;59407:38;;59424:1;59407:38;;;;;;;;;;;;59468:4;59464:249;;;59531:59;59562:1;59566:2;59570:12;59584:5;59531:22;:59::i;:::-;59497:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;59464:249;59733:14;;;;;;;59378:3;;;;;;;59348:415;;;;59794:12;59779;:27;;;;59011:807;59830:60;59859:1;59863:2;59867:12;59881:8;59830:20;:60::i;:::-;58488:1410;58360:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:365::-;11187:3;11208:66;11272:1;11267:3;11208:66;:::i;:::-;11201:73;;11283:93;11372:3;11283:93;:::i;:::-;11401:2;11396:3;11392:12;11385:19;;11045:365;;;:::o;11416:366::-;11558:3;11579:67;11643:2;11638:3;11579:67;:::i;:::-;11572:74;;11655:93;11744:3;11655:93;:::i;:::-;11773:2;11768:3;11764:12;11757:19;;11416:366;;;:::o;11788:::-;11930:3;11951:67;12015:2;12010:3;11951:67;:::i;:::-;11944:74;;12027:93;12116:3;12027:93;:::i;:::-;12145:2;12140:3;12136:12;12129:19;;11788:366;;;:::o;12160:::-;12302:3;12323:67;12387:2;12382:3;12323:67;:::i;:::-;12316:74;;12399:93;12488:3;12399:93;:::i;:::-;12517:2;12512:3;12508:12;12501:19;;12160:366;;;:::o;12532:::-;12674:3;12695:67;12759:2;12754:3;12695:67;:::i;:::-;12688:74;;12771:93;12860:3;12771:93;:::i;:::-;12889:2;12884:3;12880:12;12873:19;;12532:366;;;:::o;12904:::-;13046:3;13067:67;13131:2;13126:3;13067:67;:::i;:::-;13060:74;;13143:93;13232:3;13143:93;:::i;:::-;13261:2;13256:3;13252:12;13245:19;;12904:366;;;:::o;13276:::-;13418:3;13439:67;13503:2;13498:3;13439:67;:::i;:::-;13432:74;;13515:93;13604:3;13515:93;:::i;:::-;13633:2;13628:3;13624:12;13617:19;;13276:366;;;:::o;13648:::-;13790:3;13811:67;13875:2;13870:3;13811:67;:::i;:::-;13804:74;;13887:93;13976:3;13887:93;:::i;:::-;14005:2;14000:3;13996:12;13989:19;;13648:366;;;:::o;14020:::-;14162:3;14183:67;14247:2;14242:3;14183:67;:::i;:::-;14176:74;;14259:93;14348:3;14259:93;:::i;:::-;14377:2;14372:3;14368:12;14361:19;;14020:366;;;:::o;14392:::-;14534:3;14555:67;14619:2;14614:3;14555:67;:::i;:::-;14548:74;;14631:93;14720:3;14631:93;:::i;:::-;14749:2;14744:3;14740:12;14733:19;;14392:366;;;:::o;14764:::-;14906:3;14927:67;14991:2;14986:3;14927:67;:::i;:::-;14920:74;;15003:93;15092:3;15003:93;:::i;:::-;15121:2;15116:3;15112:12;15105:19;;14764:366;;;:::o;15136:::-;15278:3;15299:67;15363:2;15358:3;15299:67;:::i;:::-;15292:74;;15375:93;15464:3;15375:93;:::i;:::-;15493:2;15488:3;15484:12;15477:19;;15136:366;;;:::o;15508:::-;15650:3;15671:67;15735:2;15730:3;15671:67;:::i;:::-;15664:74;;15747:93;15836:3;15747:93;:::i;:::-;15865:2;15860:3;15856:12;15849:19;;15508:366;;;:::o;15880:::-;16022:3;16043:67;16107:2;16102:3;16043:67;:::i;:::-;16036:74;;16119:93;16208:3;16119:93;:::i;:::-;16237:2;16232:3;16228:12;16221:19;;15880:366;;;:::o;16252:::-;16394:3;16415:67;16479:2;16474:3;16415:67;:::i;:::-;16408:74;;16491:93;16580:3;16491:93;:::i;:::-;16609:2;16604:3;16600:12;16593:19;;16252:366;;;:::o;16624:398::-;16783:3;16804:83;16885:1;16880:3;16804:83;:::i;:::-;16797:90;;16896:93;16985:3;16896:93;:::i;:::-;17014:1;17009:3;17005:11;16998:18;;16624:398;;;:::o;17028:366::-;17170:3;17191:67;17255:2;17250:3;17191:67;:::i;:::-;17184:74;;17267:93;17356:3;17267:93;:::i;:::-;17385:2;17380:3;17376:12;17369:19;;17028:366;;;:::o;17400:::-;17542:3;17563:67;17627:2;17622:3;17563:67;:::i;:::-;17556:74;;17639:93;17728:3;17639:93;:::i;:::-;17757:2;17752:3;17748:12;17741:19;;17400:366;;;:::o;17772:::-;17914:3;17935:67;17999:2;17994:3;17935:67;:::i;:::-;17928:74;;18011:93;18100:3;18011:93;:::i;:::-;18129:2;18124:3;18120:12;18113:19;;17772:366;;;:::o;18144:::-;18286:3;18307:67;18371:2;18366:3;18307:67;:::i;:::-;18300:74;;18383:93;18472:3;18383:93;:::i;:::-;18501:2;18496:3;18492:12;18485:19;;18144:366;;;:::o;18516:::-;18658:3;18679:67;18743:2;18738:3;18679:67;:::i;:::-;18672:74;;18755:93;18844:3;18755:93;:::i;:::-;18873:2;18868:3;18864:12;18857:19;;18516:366;;;:::o;18888:::-;19030:3;19051:67;19115:2;19110:3;19051:67;:::i;:::-;19044:74;;19127:93;19216:3;19127:93;:::i;:::-;19245:2;19240:3;19236:12;19229:19;;18888:366;;;:::o;19260:::-;19402:3;19423:67;19487:2;19482:3;19423:67;:::i;:::-;19416:74;;19499:93;19588:3;19499:93;:::i;:::-;19617:2;19612:3;19608:12;19601:19;;19260:366;;;:::o;19632:108::-;19709:24;19727:5;19709:24;:::i;:::-;19704:3;19697:37;19632:108;;:::o;19746:118::-;19833:24;19851:5;19833:24;:::i;:::-;19828:3;19821:37;19746:118;;:::o;19870:589::-;20095:3;20117:95;20208:3;20199:6;20117:95;:::i;:::-;20110:102;;20229:95;20320:3;20311:6;20229:95;:::i;:::-;20222:102;;20341:92;20429:3;20420:6;20341:92;:::i;:::-;20334:99;;20450:3;20443:10;;19870:589;;;;;;:::o;20465:379::-;20649:3;20671:147;20814:3;20671:147;:::i;:::-;20664:154;;20835:3;20828:10;;20465:379;;;:::o;20850:222::-;20943:4;20981:2;20970:9;20966:18;20958:26;;20994:71;21062:1;21051:9;21047:17;21038:6;20994:71;:::i;:::-;20850:222;;;;:::o;21078:640::-;21273:4;21311:3;21300:9;21296:19;21288:27;;21325:71;21393:1;21382:9;21378:17;21369:6;21325:71;:::i;:::-;21406:72;21474:2;21463:9;21459:18;21450:6;21406:72;:::i;:::-;21488;21556:2;21545:9;21541:18;21532:6;21488:72;:::i;:::-;21607:9;21601:4;21597:20;21592:2;21581:9;21577:18;21570:48;21635:76;21706:4;21697:6;21635:76;:::i;:::-;21627:84;;21078:640;;;;;;;:::o;21724:373::-;21867:4;21905:2;21894:9;21890:18;21882:26;;21954:9;21948:4;21944:20;21940:1;21929:9;21925:17;21918:47;21982:108;22085:4;22076:6;21982:108;:::i;:::-;21974:116;;21724:373;;;;:::o;22103:210::-;22190:4;22228:2;22217:9;22213:18;22205:26;;22241:65;22303:1;22292:9;22288:17;22279:6;22241:65;:::i;:::-;22103:210;;;;:::o;22319:313::-;22432:4;22470:2;22459:9;22455:18;22447:26;;22519:9;22513:4;22509:20;22505:1;22494:9;22490:17;22483:47;22547:78;22620:4;22611:6;22547:78;:::i;:::-;22539:86;;22319:313;;;;:::o;22638:419::-;22804:4;22842:2;22831:9;22827:18;22819:26;;22891:9;22885:4;22881:20;22877:1;22866:9;22862:17;22855:47;22919:131;23045:4;22919:131;:::i;:::-;22911:139;;22638:419;;;:::o;23063:::-;23229:4;23267:2;23256:9;23252:18;23244:26;;23316:9;23310:4;23306:20;23302:1;23291:9;23287:17;23280:47;23344:131;23470:4;23344:131;:::i;:::-;23336:139;;23063:419;;;:::o;23488:::-;23654:4;23692:2;23681:9;23677:18;23669:26;;23741:9;23735:4;23731:20;23727:1;23716:9;23712:17;23705:47;23769:131;23895:4;23769:131;:::i;:::-;23761:139;;23488:419;;;:::o;23913:::-;24079:4;24117:2;24106:9;24102:18;24094:26;;24166:9;24160:4;24156:20;24152:1;24141:9;24137:17;24130:47;24194:131;24320:4;24194:131;:::i;:::-;24186:139;;23913:419;;;:::o;24338:::-;24504:4;24542:2;24531:9;24527:18;24519:26;;24591:9;24585:4;24581:20;24577:1;24566:9;24562:17;24555:47;24619:131;24745:4;24619:131;:::i;:::-;24611:139;;24338:419;;;:::o;24763:::-;24929:4;24967:2;24956:9;24952:18;24944:26;;25016:9;25010:4;25006:20;25002:1;24991:9;24987:17;24980:47;25044:131;25170:4;25044:131;:::i;:::-;25036:139;;24763:419;;;:::o;25188:::-;25354:4;25392:2;25381:9;25377:18;25369:26;;25441:9;25435:4;25431:20;25427:1;25416:9;25412:17;25405:47;25469:131;25595:4;25469:131;:::i;:::-;25461:139;;25188:419;;;:::o;25613:::-;25779:4;25817:2;25806:9;25802:18;25794:26;;25866:9;25860:4;25856:20;25852:1;25841:9;25837:17;25830:47;25894:131;26020:4;25894:131;:::i;:::-;25886:139;;25613:419;;;:::o;26038:::-;26204:4;26242:2;26231:9;26227:18;26219:26;;26291:9;26285:4;26281:20;26277:1;26266:9;26262:17;26255:47;26319:131;26445:4;26319:131;:::i;:::-;26311:139;;26038:419;;;:::o;26463:::-;26629:4;26667:2;26656:9;26652:18;26644:26;;26716:9;26710:4;26706:20;26702:1;26691:9;26687:17;26680:47;26744:131;26870:4;26744:131;:::i;:::-;26736:139;;26463:419;;;:::o;26888:::-;27054:4;27092:2;27081:9;27077:18;27069:26;;27141:9;27135:4;27131:20;27127:1;27116:9;27112:17;27105:47;27169:131;27295:4;27169:131;:::i;:::-;27161:139;;26888:419;;;:::o;27313:::-;27479:4;27517:2;27506:9;27502:18;27494:26;;27566:9;27560:4;27556:20;27552:1;27541:9;27537:17;27530:47;27594:131;27720:4;27594:131;:::i;:::-;27586:139;;27313:419;;;:::o;27738:::-;27904:4;27942:2;27931:9;27927:18;27919:26;;27991:9;27985:4;27981:20;27977:1;27966:9;27962:17;27955:47;28019:131;28145:4;28019:131;:::i;:::-;28011:139;;27738:419;;;:::o;28163:::-;28329:4;28367:2;28356:9;28352:18;28344:26;;28416:9;28410:4;28406:20;28402:1;28391:9;28387:17;28380:47;28444:131;28570:4;28444:131;:::i;:::-;28436:139;;28163:419;;;:::o;28588:::-;28754:4;28792:2;28781:9;28777:18;28769:26;;28841:9;28835:4;28831:20;28827:1;28816:9;28812:17;28805:47;28869:131;28995:4;28869:131;:::i;:::-;28861:139;;28588:419;;;:::o;29013:::-;29179:4;29217:2;29206:9;29202:18;29194:26;;29266:9;29260:4;29256:20;29252:1;29241:9;29237:17;29230:47;29294:131;29420:4;29294:131;:::i;:::-;29286:139;;29013:419;;;:::o;29438:::-;29604:4;29642:2;29631:9;29627:18;29619:26;;29691:9;29685:4;29681:20;29677:1;29666:9;29662:17;29655:47;29719:131;29845:4;29719:131;:::i;:::-;29711:139;;29438:419;;;:::o;29863:::-;30029:4;30067:2;30056:9;30052:18;30044:26;;30116:9;30110:4;30106:20;30102:1;30091:9;30087:17;30080:47;30144:131;30270:4;30144:131;:::i;:::-;30136:139;;29863:419;;;:::o;30288:::-;30454:4;30492:2;30481:9;30477:18;30469:26;;30541:9;30535:4;30531:20;30527:1;30516:9;30512:17;30505:47;30569:131;30695:4;30569:131;:::i;:::-;30561:139;;30288:419;;;:::o;30713:::-;30879:4;30917:2;30906:9;30902:18;30894:26;;30966:9;30960:4;30956:20;30952:1;30941:9;30937:17;30930:47;30994:131;31120:4;30994:131;:::i;:::-;30986:139;;30713:419;;;:::o;31138:::-;31304:4;31342:2;31331:9;31327:18;31319:26;;31391:9;31385:4;31381:20;31377:1;31366:9;31362:17;31355:47;31419:131;31545:4;31419:131;:::i;:::-;31411:139;;31138:419;;;:::o;31563:::-;31729:4;31767:2;31756:9;31752:18;31744:26;;31816:9;31810:4;31806:20;31802:1;31791:9;31787:17;31780:47;31844:131;31970:4;31844:131;:::i;:::-;31836:139;;31563:419;;;:::o;31988:::-;32154:4;32192:2;32181:9;32177:18;32169:26;;32241:9;32235:4;32231:20;32227:1;32216:9;32212:17;32205:47;32269:131;32395:4;32269:131;:::i;:::-;32261:139;;31988:419;;;:::o;32413:222::-;32506:4;32544:2;32533:9;32529:18;32521:26;;32557:71;32625:1;32614:9;32610:17;32601:6;32557:71;:::i;:::-;32413:222;;;;:::o;32641:129::-;32675:6;32702:20;;:::i;:::-;32692:30;;32731:33;32759:4;32751:6;32731:33;:::i;:::-;32641:129;;;:::o;32776:75::-;32809:6;32842:2;32836:9;32826:19;;32776:75;:::o;32857:307::-;32918:4;33008:18;33000:6;32997:30;32994:56;;;33030:18;;:::i;:::-;32994:56;33068:29;33090:6;33068:29;:::i;:::-;33060:37;;33152:4;33146;33142:15;33134:23;;32857:307;;;:::o;33170:308::-;33232:4;33322:18;33314:6;33311:30;33308:56;;;33344:18;;:::i;:::-;33308:56;33382:29;33404:6;33382:29;:::i;:::-;33374:37;;33466:4;33460;33456:15;33448:23;;33170:308;;;:::o;33484:132::-;33551:4;33574:3;33566:11;;33604:4;33599:3;33595:14;33587:22;;33484:132;;;:::o;33622:141::-;33671:4;33694:3;33686:11;;33717:3;33714:1;33707:14;33751:4;33748:1;33738:18;33730:26;;33622:141;;;:::o;33769:114::-;33836:6;33870:5;33864:12;33854:22;;33769:114;;;:::o;33889:98::-;33940:6;33974:5;33968:12;33958:22;;33889:98;;;:::o;33993:99::-;34045:6;34079:5;34073:12;34063:22;;33993:99;;;:::o;34098:113::-;34168:4;34200;34195:3;34191:14;34183:22;;34098:113;;;:::o;34217:184::-;34316:11;34350:6;34345:3;34338:19;34390:4;34385:3;34381:14;34366:29;;34217:184;;;;:::o;34407:168::-;34490:11;34524:6;34519:3;34512:19;34564:4;34559:3;34555:14;34540:29;;34407:168;;;;:::o;34581:147::-;34682:11;34719:3;34704:18;;34581:147;;;;:::o;34734:169::-;34818:11;34852:6;34847:3;34840:19;34892:4;34887:3;34883:14;34868:29;;34734:169;;;;:::o;34909:148::-;35011:11;35048:3;35033:18;;34909:148;;;;:::o;35063:305::-;35103:3;35122:20;35140:1;35122:20;:::i;:::-;35117:25;;35156:20;35174:1;35156:20;:::i;:::-;35151:25;;35310:1;35242:66;35238:74;35235:1;35232:81;35229:107;;;35316:18;;:::i;:::-;35229:107;35360:1;35357;35353:9;35346:16;;35063:305;;;;:::o;35374:185::-;35414:1;35431:20;35449:1;35431:20;:::i;:::-;35426:25;;35465:20;35483:1;35465:20;:::i;:::-;35460:25;;35504:1;35494:35;;35509:18;;:::i;:::-;35494:35;35551:1;35548;35544:9;35539:14;;35374:185;;;;:::o;35565:348::-;35605:7;35628:20;35646:1;35628:20;:::i;:::-;35623:25;;35662:20;35680:1;35662:20;:::i;:::-;35657:25;;35850:1;35782:66;35778:74;35775:1;35772:81;35767:1;35760:9;35753:17;35749:105;35746:131;;;35857:18;;:::i;:::-;35746:131;35905:1;35902;35898:9;35887:20;;35565:348;;;;:::o;35919:191::-;35959:4;35979:20;35997:1;35979:20;:::i;:::-;35974:25;;36013:20;36031:1;36013:20;:::i;:::-;36008:25;;36052:1;36049;36046:8;36043:34;;;36057:18;;:::i;:::-;36043:34;36102:1;36099;36095:9;36087:17;;35919:191;;;;:::o;36116:96::-;36153:7;36182:24;36200:5;36182:24;:::i;:::-;36171:35;;36116:96;;;:::o;36218:90::-;36252:7;36295:5;36288:13;36281:21;36270:32;;36218:90;;;:::o;36314:149::-;36350:7;36390:66;36383:5;36379:78;36368:89;;36314:149;;;:::o;36469:126::-;36506:7;36546:42;36539:5;36535:54;36524:65;;36469:126;;;:::o;36601:77::-;36638:7;36667:5;36656:16;;36601:77;;;:::o;36684:154::-;36768:6;36763:3;36758;36745:30;36830:1;36821:6;36816:3;36812:16;36805:27;36684:154;;;:::o;36844:307::-;36912:1;36922:113;36936:6;36933:1;36930:13;36922:113;;;37021:1;37016:3;37012:11;37006:18;37002:1;36997:3;36993:11;36986:39;36958:2;36955:1;36951:10;36946:15;;36922:113;;;37053:6;37050:1;37047:13;37044:101;;;37133:1;37124:6;37119:3;37115:16;37108:27;37044:101;36893:258;36844:307;;;:::o;37157:320::-;37201:6;37238:1;37232:4;37228:12;37218:22;;37285:1;37279:4;37275:12;37306:18;37296:81;;37362:4;37354:6;37350:17;37340:27;;37296:81;37424:2;37416:6;37413:14;37393:18;37390:38;37387:84;;;37443:18;;:::i;:::-;37387:84;37208:269;37157:320;;;:::o;37483:281::-;37566:27;37588:4;37566:27;:::i;:::-;37558:6;37554:40;37696:6;37684:10;37681:22;37660:18;37648:10;37645:34;37642:62;37639:88;;;37707:18;;:::i;:::-;37639:88;37747:10;37743:2;37736:22;37526:238;37483:281;;:::o;37770:233::-;37809:3;37832:24;37850:5;37832:24;:::i;:::-;37823:33;;37878:66;37871:5;37868:77;37865:103;;;37948:18;;:::i;:::-;37865:103;37995:1;37988:5;37984:13;37977:20;;37770:233;;;:::o;38009:176::-;38041:1;38058:20;38076:1;38058:20;:::i;:::-;38053:25;;38092:20;38110:1;38092:20;:::i;:::-;38087:25;;38131:1;38121:35;;38136:18;;:::i;:::-;38121:35;38177:1;38174;38170:9;38165:14;;38009:176;;;;:::o;38191:180::-;38239:77;38236:1;38229:88;38336:4;38333:1;38326:15;38360:4;38357:1;38350:15;38377:180;38425:77;38422:1;38415:88;38522:4;38519:1;38512:15;38546:4;38543:1;38536:15;38563:180;38611:77;38608:1;38601:88;38708:4;38705:1;38698:15;38732:4;38729:1;38722:15;38749:180;38797:77;38794:1;38787:88;38894:4;38891:1;38884:15;38918:4;38915:1;38908:15;38935:180;38983:77;38980:1;38973:88;39080:4;39077:1;39070:15;39104:4;39101:1;39094:15;39121:117;39230:1;39227;39220:12;39244:117;39353:1;39350;39343:12;39367:117;39476:1;39473;39466:12;39490:117;39599:1;39596;39589:12;39613:102;39654:6;39705:2;39701:7;39696:2;39689:5;39685:14;39681:28;39671:38;;39613:102;;;:::o;39721:221::-;39861:34;39857:1;39849:6;39845:14;39838:58;39930:4;39925:2;39917:6;39913:15;39906:29;39721:221;:::o;39948:157::-;40088:9;40084:1;40076:6;40072:14;40065:33;39948:157;:::o;40111:225::-;40251:34;40247:1;40239:6;40235:14;40228:58;40320:8;40315:2;40307:6;40303:15;40296:33;40111:225;:::o;40342:229::-;40482:34;40478:1;40470:6;40466:14;40459:58;40551:12;40546:2;40538:6;40534:15;40527:37;40342:229;:::o;40577:222::-;40717:34;40713:1;40705:6;40701:14;40694:58;40786:5;40781:2;40773:6;40769:15;40762:30;40577:222;:::o;40805:224::-;40945:34;40941:1;40933:6;40929:14;40922:58;41014:7;41009:2;41001:6;40997:15;40990:32;40805:224;:::o;41035:244::-;41175:34;41171:1;41163:6;41159:14;41152:58;41244:27;41239:2;41231:6;41227:15;41220:52;41035:244;:::o;41285:230::-;41425:34;41421:1;41413:6;41409:14;41402:58;41494:13;41489:2;41481:6;41477:15;41470:38;41285:230;:::o;41521:225::-;41661:34;41657:1;41649:6;41645:14;41638:58;41730:8;41725:2;41717:6;41713:15;41706:33;41521:225;:::o;41752:182::-;41892:34;41888:1;41880:6;41876:14;41869:58;41752:182;:::o;41940:173::-;42080:25;42076:1;42068:6;42064:14;42057:49;41940:173;:::o;42119:234::-;42259:34;42255:1;42247:6;42243:14;42236:58;42328:17;42323:2;42315:6;42311:15;42304:42;42119:234;:::o;42359:176::-;42499:28;42495:1;42487:6;42483:14;42476:52;42359:176;:::o;42541:237::-;42681:34;42677:1;42669:6;42665:14;42658:58;42750:20;42745:2;42737:6;42733:15;42726:45;42541:237;:::o;42784:179::-;42924:31;42920:1;42912:6;42908:14;42901:55;42784:179;:::o;42969:221::-;43109:34;43105:1;43097:6;43093:14;43086:58;43178:4;43173:2;43165:6;43161:15;43154:29;42969:221;:::o;43196:114::-;;:::o;43316:166::-;43456:18;43452:1;43444:6;43440:14;43433:42;43316:166;:::o;43488:238::-;43628:34;43624:1;43616:6;43612:14;43605:58;43697:21;43692:2;43684:6;43680:15;43673:46;43488:238;:::o;43732:220::-;43872:34;43868:1;43860:6;43856:14;43849:58;43941:3;43936:2;43928:6;43924:15;43917:28;43732:220;:::o;43958:227::-;44098:34;44094:1;44086:6;44082:14;44075:58;44167:10;44162:2;44154:6;44150:15;44143:35;43958:227;:::o;44191:233::-;44331:34;44327:1;44319:6;44315:14;44308:58;44400:16;44395:2;44387:6;44383:15;44376:41;44191:233;:::o;44430:234::-;44570:34;44566:1;44558:6;44554:14;44547:58;44639:17;44634:2;44626:6;44622:15;44615:42;44430:234;:::o;44670:232::-;44810:34;44806:1;44798:6;44794:14;44787:58;44879:15;44874:2;44866:6;44862:15;44855:40;44670:232;:::o;44908:122::-;44981:24;44999:5;44981:24;:::i;:::-;44974:5;44971:35;44961:63;;45020:1;45017;45010:12;44961:63;44908:122;:::o;45036:116::-;45106:21;45121:5;45106:21;:::i;:::-;45099:5;45096:32;45086:60;;45142:1;45139;45132:12;45086:60;45036:116;:::o;45158:120::-;45230:23;45247:5;45230:23;:::i;:::-;45223:5;45220:34;45210:62;;45268:1;45265;45258:12;45210:62;45158:120;:::o;45284:122::-;45357:24;45375:5;45357:24;:::i;:::-;45350:5;45347:35;45337:63;;45396:1;45393;45386:12;45337:63;45284:122;:::o
Swarm Source
ipfs://ffada39863f39dd5c5fe4f1f259883aa929a98168ffd4a6ab9e396c43c45864a
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.