Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
30 TSUBAME
Holders
11
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TSUBAMELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
LoveTSUBAME
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-11 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC721/extensions/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/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 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())) : ""; } /** * @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 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" ); _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 { require(operator != _msgSender(), "ERC721: 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 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); } /** * @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); } /** * @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 of token that is not own" ); 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); } /** * @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 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( "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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/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: LoveTSUBAME.sol pragma solidity ^0.8.0; /// @author Hammad Ghazi contract LoveTSUBAME is ERC721Enumerable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenId; uint256 public constant MAX_TSUBAME = 10000; uint256 public price = 80000000000000000; //0.08 Ether string baseTokenURI; bool public saleOpen = false; bool public presaleOpen = false; mapping(address => bool) public whitelistAddr; event LoveTsubameMinted(uint256 totalMinted); constructor(string memory baseURI) ERC721("Love TSUBAME", "TSUBAME") { setBaseURI(baseURI); } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } //Close sale if open, open sale if closed function flipSaleState() external onlyOwner { saleOpen = !saleOpen; } function flipPresaleState() external onlyOwner { presaleOpen = !presaleOpen; } function withdrawAll() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function whitelistAddress(address[] calldata users) external onlyOwner { for (uint256 i = 0; i < users.length; i++) { whitelistAddr[users[i]] = true; } } function presaleMint(uint256 _count) external payable { require( whitelistAddr[msg.sender] == true, "Address not eligible for presale mint" ); require(presaleOpen, "Presale is not open yet"); require( _count > 0 && _count <= 5, "Minimum 1 and Maximum 5 LoveTSUBAME can be minted per address in presale" ); require( 5 >= walletOfOwner(msg.sender).length + _count, "Purchase will exceed max presale mint amount per address" ); require( msg.value >= price * _count, "Ether sent with this transaction is not correct" ); if (walletOfOwner(msg.sender).length + _count == 5) { whitelistAddr[msg.sender] = false; } address to = msg.sender; for (uint256 i = 0; i < _count; i++) { _mint(to); } } //mint LoveTSUBAME function mintLoveTsubame(address _to, uint256 _count) external payable { require( totalSupply() + _count <= MAX_TSUBAME, "Exceeds maximum supply of LoveTSUBAME" ); require( _count > 0, "Minimum 1 LoveTSUBAME has to be minted per transaction" ); if (msg.sender != owner()) { require(saleOpen, "Sale is not open yet"); require( _count <= 20, "Maximum 20 LoveTSUBAME can be minted per transaction" ); require( msg.value >= price * _count, "Ether sent with this transaction is not correct" ); } for (uint256 i = 0; i < _count; i++) { _mint(_to); } } //Get token Ids of all tokens owned by _owner function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function _mint(address _to) private { _tokenId.increment(); uint256 tokenId = _tokenId.current(); _safeMint(_to, tokenId); emit LoveTsubameMinted(tokenId); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"LoveTsubameMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TSUBAME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintLoveTsubame","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","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":[{"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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddr","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267011c37937e080000600c556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200005357600080fd5b506040516200511e3803806200511e833981810160405281019062000079919062000422565b6040518060400160405280600c81526020017f4c6f76652054535542414d4500000000000000000000000000000000000000008152506040518060400160405280600781526020017f54535542414d45000000000000000000000000000000000000000000000000008152508160009080519060200190620000fd929190620002f4565b50806001908051906020019062000116929190620002f4565b505050620001396200012d6200015160201b60201c565b6200015960201b60201c565b6200014a816200021f60201b60201c565b506200067a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022f6200015160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000255620002ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a5906200049a565b60405180910390fd5b80600d9080519060200190620002c6929190620002f4565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003029062000562565b90600052602060002090601f01602090048101928262000326576000855562000372565b82601f106200034157805160ff191683800117855562000372565b8280016001018555821562000372579182015b828111156200037157825182559160200191906001019062000354565b5b50905062000381919062000385565b5090565b5b80821115620003a057600081600090555060010162000386565b5090565b6000620003bb620003b584620004e5565b620004bc565b905082815260208101848484011115620003da57620003d962000631565b5b620003e78482856200052c565b509392505050565b600082601f8301126200040757620004066200062c565b5b815162000419848260208601620003a4565b91505092915050565b6000602082840312156200043b576200043a6200063b565b5b600082015167ffffffffffffffff8111156200045c576200045b62000636565b5b6200046a84828501620003ef565b91505092915050565b6000620004826020836200051b565b91506200048f8262000651565b602082019050919050565b60006020820190508181036000830152620004b58162000473565b9050919050565b6000620004c8620004db565b9050620004d6828262000598565b919050565b6000604051905090565b600067ffffffffffffffff821115620005035762000502620005fd565b5b6200050e8262000640565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200054c5780820151818401526020810190506200052f565b838111156200055c576000848401525b50505050565b600060028204905060018216806200057b57607f821691505b60208210811415620005925762000591620005ce565b5b50919050565b620005a38262000640565b810181811067ffffffffffffffff82111715620005c557620005c4620005fd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614a94806200068a6000396000f3fe6080604052600436106101ee5760003560e01c8063853828b61161010d578063b88d4fde116100a0578063e0004ab41161006f578063e0004ab4146106ee578063e985e9c51461070a578063f0a94c8614610747578063f2fde38b14610772578063f81227d41461079b576101ee565b8063b88d4fde14610641578063bee6348a1461066a578063c87b56dd14610695578063c9b298f1146106d2576101ee565b806399288dbb116100dc57806399288dbb14610599578063a035b1fe146105c4578063a22cb465146105ef578063b31d61b014610618576101ee565b8063853828b6146105035780638da5cb5b1461051a57806391b7f5ed1461054557806395d89b411461056e576101ee565b806334918dfd1161018557806355f804b31161015457806355f804b3146104495780636352211e1461047257806370a08231146104af578063715018a6146104ec576101ee565b806334918dfd1461038f57806342842e0e146103a6578063438b6300146103cf5780634f6ccce71461040c576101ee565b8063095ea7b3116101c1578063095ea7b3146102d557806318160ddd146102fe57806323b872dd146103295780632f745c5914610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063080a57f91461025b578063081812fc14610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061328a565b6107b2565b6040516102279190613968565b60405180910390f35b34801561023c57600080fd5b5061024561082c565b6040516102529190613983565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061307a565b6108be565b60405161028f9190613968565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061332d565b6108de565b6040516102cc91906138df565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f791906131fd565b610963565b005b34801561030a57600080fd5b50610313610a7b565b6040516103209190613d25565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b91906130e7565b610a88565b005b34801561035e57600080fd5b50610379600480360381019061037491906131fd565b610ae8565b6040516103869190613d25565b60405180910390f35b34801561039b57600080fd5b506103a4610b8d565b005b3480156103b257600080fd5b506103cd60048036038101906103c891906130e7565b610c35565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061307a565b610c55565b6040516104039190613946565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061332d565b610d03565b6040516104409190613d25565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906132e4565b610d74565b005b34801561047e57600080fd5b506104996004803603810190610494919061332d565b610e0a565b6040516104a691906138df565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061307a565b610ebc565b6040516104e39190613d25565b60405180910390f35b3480156104f857600080fd5b50610501610f74565b005b34801561050f57600080fd5b50610518610ffc565b005b34801561052657600080fd5b5061052f611127565b60405161053c91906138df565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061332d565b611151565b005b34801561057a57600080fd5b506105836111d7565b6040516105909190613983565b60405180910390f35b3480156105a557600080fd5b506105ae611269565b6040516105bb9190613968565b60405180910390f35b3480156105d057600080fd5b506105d961127c565b6040516105e69190613d25565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906131bd565b611282565b005b34801561062457600080fd5b5061063f600480360381019061063a919061323d565b611403565b005b34801561064d57600080fd5b506106686004803603810190610663919061313a565b611524565b005b34801561067657600080fd5b5061067f611586565b60405161068c9190613968565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b7919061332d565b611599565b6040516106c99190613983565b60405180910390f35b6106ec60048036038101906106e7919061332d565b611640565b005b610708600480360381019061070391906131fd565b6118c1565b005b34801561071657600080fd5b50610731600480360381019061072c91906130a7565b611aa5565b60405161073e9190613968565b60405180910390f35b34801561075357600080fd5b5061075c611b39565b6040516107699190613d25565b60405180910390f35b34801561077e57600080fd5b506107996004803603810190610794919061307a565b611b3f565b005b3480156107a757600080fd5b506107b0611c37565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610825575061082482611cdf565b5b9050919050565b60606000805461083b90614019565b80601f016020809104026020016040519081016040528092919081815260200182805461086790614019565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b60006108e982611dc1565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613b65565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096e82610e0a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613c25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fe611e2d565b73ffffffffffffffffffffffffffffffffffffffff161480610a2d5750610a2c81610a27611e2d565b611aa5565b5b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613ae5565b60405180910390fd5b610a768383611e35565b505050565b6000600880549050905090565b610a99610a93611e2d565b82611eee565b610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613ca5565b60405180910390fd5b610ae3838383611fcc565b505050565b6000610af383610ebc565b8210610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b906139a5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b95611e2d565b73ffffffffffffffffffffffffffffffffffffffff16610bb3611127565b73ffffffffffffffffffffffffffffffffffffffff1614610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613ba5565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610c5083838360405180602001604052806000815250611524565b505050565b60606000610c6283610ebc565b905060008167ffffffffffffffff811115610c8057610c7f6141e1565b5b604051908082528060200260200182016040528015610cae5781602001602082028036833780820191505090505b50905060005b82811015610cf857610cc68582610ae8565b828281518110610cd957610cd86141b2565b5b6020026020010181815250508080610cf09061407c565b915050610cb4565b508092505050919050565b6000610d0d610a7b565b8210610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613cc5565b60405180910390fd5b60088281548110610d6257610d616141b2565b5b90600052602060002001549050919050565b610d7c611e2d565b73ffffffffffffffffffffffffffffffffffffffff16610d9a611127565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613ba5565b60405180910390fd5b80600d9080519060200190610e06929190612e38565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613b25565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613b05565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7c611e2d565b73ffffffffffffffffffffffffffffffffffffffff16610f9a611127565b73ffffffffffffffffffffffffffffffffffffffff1614610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790613ba5565b60405180910390fd5b610ffa6000612228565b565b611004611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611022611127565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613ba5565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161109e906138ca565b60006040518083038185875af1925050503d80600081146110db576040519150601f19603f3d011682016040523d82523d6000602084013e6110e0565b606091505b5050905080611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613c85565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611159611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611177611127565b73ffffffffffffffffffffffffffffffffffffffff16146111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613ba5565b60405180910390fd5b80600c8190555050565b6060600180546111e690614019565b80601f016020809104026020016040519081016040528092919081815260200182805461121290614019565b801561125f5780601f106112345761010080835404028352916020019161125f565b820191906000526020600020905b81548152906001019060200180831161124257829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600c5481565b61128a611e2d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613a45565b60405180910390fd5b8060056000611305611e2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b2611e2d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f79190613968565b60405180910390a35050565b61140b611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611429611127565b73ffffffffffffffffffffffffffffffffffffffff161461147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613ba5565b60405180910390fd5b60005b8282905081101561151f576001600f60008585858181106114a6576114a56141b2565b5b90506020020160208101906114bb919061307a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115179061407c565b915050611482565b505050565b61153561152f611e2d565b83611eee565b611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90613ca5565b60405180910390fd5b611580848484846122ee565b50505050565b600e60019054906101000a900460ff1681565b60606115a482611dc1565b6115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613be5565b60405180910390fd5b60006115ed61234a565b9050600081511161160d5760405180602001604052806000815250611638565b80611617846123dc565b6040516020016116289291906138a6565b6040516020818303038152906040525b915050919050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613c45565b60405180910390fd5b600e60019054906101000a900460ff16611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613c05565b60405180910390fd5b600081118015611733575060058111155b611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613ac5565b60405180910390fd5b8061177c33610c55565b516117879190613e4e565b600510156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613d05565b60405180910390fd5b80600c546117d89190613ed5565b34101561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613b85565b60405180910390fd5b60058161182633610c55565b516118319190613e4e565b1415611890576000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600033905060005b828110156118bc576118a98261253d565b80806118b49061407c565b915050611898565b505050565b612710816118cd610a7b565b6118d79190613e4e565b1115611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90613a85565b60405180910390fd5b6000811161195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613c65565b60405180910390fd5b611963611127565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a7957600e60009054906101000a900460ff166119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db90613a65565b60405180910390fd5b6014811115611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613ce5565b60405180910390fd5b80600c54611a369190613ed5565b341015611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90613b85565b60405180910390fd5b5b60005b81811015611aa057611a8d8361253d565b8080611a989061407c565b915050611a7c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61271081565b611b47611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611b65611127565b73ffffffffffffffffffffffffffffffffffffffff1614611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb290613ba5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c22906139e5565b60405180910390fd5b611c3481612228565b50565b611c3f611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611c5d611127565b73ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613ba5565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611daa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611dba5750611db98261259a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ea883610e0a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ef982611dc1565b611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90613aa5565b60405180910390fd5b6000611f4383610e0a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fb257508373ffffffffffffffffffffffffffffffffffffffff16611f9a846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fc35750611fc28185611aa5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fec82610e0a565b73ffffffffffffffffffffffffffffffffffffffff1614612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990613bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a990613a25565b60405180910390fd5b6120bd838383612604565b6120c8600082611e35565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121189190613f2f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216f9190613e4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f9848484611fcc565b61230584848484612718565b612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233b906139c5565b60405180910390fd5b50505050565b6060600d805461235990614019565b80601f016020809104026020016040519081016040528092919081815260200182805461238590614019565b80156123d25780601f106123a7576101008083540402835291602001916123d2565b820191906000526020600020905b8154815290600101906020018083116123b557829003601f168201915b5050505050905090565b60606000821415612424576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612538565b600082905060005b6000821461245657808061243f9061407c565b915050600a8261244f9190613ea4565b915061242c565b60008167ffffffffffffffff811115612472576124716141e1565b5b6040519080825280601f01601f1916602001820160405280156124a45781602001600182028036833780820191505090505b5090505b60008514612531576001826124bd9190613f2f565b9150600a856124cc91906140c5565b60306124d89190613e4e565b60f81b8183815181106124ee576124ed6141b2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561252a9190613ea4565b94506124a8565b8093505050505b919050565b612547600b6128af565b6000612553600b6128c5565b905061255f82826128d3565b7f90bc7fdc4dcf0dd849e9adff0ac0a8056e5650775f3098c923542e27153c32dd8160405161258e9190613d25565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61260f8383836128f1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126525761264d816128f6565b612691565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126905761268f838261293f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d4576126cf81612aac565b612713565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612712576127118282612b7d565b5b5b505050565b60006127398473ffffffffffffffffffffffffffffffffffffffff16612bfc565b156128a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612762611e2d565b8786866040518563ffffffff1660e01b815260040161278494939291906138fa565b602060405180830381600087803b15801561279e57600080fd5b505af19250505080156127cf57506040513d601f19601f820116820180604052508101906127cc91906132b7565b60015b612852573d80600081146127ff576040519150601f19603f3d011682016040523d82523d6000602084013e612804565b606091505b5060008151141561284a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612841906139c5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128a7565b600190505b949350505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6128ed828260405180602001604052806000815250612c0f565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161294c84610ebc565b6129569190613f2f565b9050600060076000848152602001908152602001600020549050818114612a3b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ac09190613f2f565b9050600060096000848152602001908152602001600020549050600060088381548110612af057612aef6141b2565b5b906000526020600020015490508060088381548110612b1257612b116141b2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b6157612b60614183565b5b6001900381819060005260206000200160009055905550505050565b6000612b8883610ebc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b612c198383612c6a565b612c266000848484612718565b612c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5c906139c5565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd190613b45565b60405180910390fd5b612ce381611dc1565b15612d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1a90613a05565b60405180910390fd5b612d2f60008383612604565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7f9190613e4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e4490614019565b90600052602060002090601f016020900481019282612e665760008555612ead565b82601f10612e7f57805160ff1916838001178555612ead565b82800160010185558215612ead579182015b82811115612eac578251825591602001919060010190612e91565b5b509050612eba9190612ebe565b5090565b5b80821115612ed7576000816000905550600101612ebf565b5090565b6000612eee612ee984613d65565b613d40565b905082815260208101848484011115612f0a57612f0961421f565b5b612f15848285613fd7565b509392505050565b6000612f30612f2b84613d96565b613d40565b905082815260208101848484011115612f4c57612f4b61421f565b5b612f57848285613fd7565b509392505050565b600081359050612f6e81614a02565b92915050565b60008083601f840112612f8a57612f89614215565b5b8235905067ffffffffffffffff811115612fa757612fa6614210565b5b602083019150836020820283011115612fc357612fc261421a565b5b9250929050565b600081359050612fd981614a19565b92915050565b600081359050612fee81614a30565b92915050565b60008151905061300381614a30565b92915050565b600082601f83011261301e5761301d614215565b5b813561302e848260208601612edb565b91505092915050565b600082601f83011261304c5761304b614215565b5b813561305c848260208601612f1d565b91505092915050565b60008135905061307481614a47565b92915050565b6000602082840312156130905761308f614229565b5b600061309e84828501612f5f565b91505092915050565b600080604083850312156130be576130bd614229565b5b60006130cc85828601612f5f565b92505060206130dd85828601612f5f565b9150509250929050565b600080600060608486031215613100576130ff614229565b5b600061310e86828701612f5f565b935050602061311f86828701612f5f565b925050604061313086828701613065565b9150509250925092565b6000806000806080858703121561315457613153614229565b5b600061316287828801612f5f565b945050602061317387828801612f5f565b935050604061318487828801613065565b925050606085013567ffffffffffffffff8111156131a5576131a4614224565b5b6131b187828801613009565b91505092959194509250565b600080604083850312156131d4576131d3614229565b5b60006131e285828601612f5f565b92505060206131f385828601612fca565b9150509250929050565b6000806040838503121561321457613213614229565b5b600061322285828601612f5f565b925050602061323385828601613065565b9150509250929050565b6000806020838503121561325457613253614229565b5b600083013567ffffffffffffffff81111561327257613271614224565b5b61327e85828601612f74565b92509250509250929050565b6000602082840312156132a05761329f614229565b5b60006132ae84828501612fdf565b91505092915050565b6000602082840312156132cd576132cc614229565b5b60006132db84828501612ff4565b91505092915050565b6000602082840312156132fa576132f9614229565b5b600082013567ffffffffffffffff81111561331857613317614224565b5b61332484828501613037565b91505092915050565b60006020828403121561334357613342614229565b5b600061335184828501613065565b91505092915050565b60006133668383613888565b60208301905092915050565b61337b81613f63565b82525050565b600061338c82613dd7565b6133968185613e05565b93506133a183613dc7565b8060005b838110156133d25781516133b9888261335a565b97506133c483613df8565b9250506001810190506133a5565b5085935050505092915050565b6133e881613f75565b82525050565b60006133f982613de2565b6134038185613e16565b9350613413818560208601613fe6565b61341c8161422e565b840191505092915050565b600061343282613ded565b61343c8185613e32565b935061344c818560208601613fe6565b6134558161422e565b840191505092915050565b600061346b82613ded565b6134758185613e43565b9350613485818560208601613fe6565b80840191505092915050565b600061349e602b83613e32565b91506134a98261423f565b604082019050919050565b60006134c1603283613e32565b91506134cc8261428e565b604082019050919050565b60006134e4602683613e32565b91506134ef826142dd565b604082019050919050565b6000613507601c83613e32565b91506135128261432c565b602082019050919050565b600061352a602483613e32565b915061353582614355565b604082019050919050565b600061354d601983613e32565b9150613558826143a4565b602082019050919050565b6000613570601483613e32565b915061357b826143cd565b602082019050919050565b6000613593602583613e32565b915061359e826143f6565b604082019050919050565b60006135b6602c83613e32565b91506135c182614445565b604082019050919050565b60006135d9604883613e32565b91506135e482614494565b606082019050919050565b60006135fc603883613e32565b915061360782614509565b604082019050919050565b600061361f602a83613e32565b915061362a82614558565b604082019050919050565b6000613642602983613e32565b915061364d826145a7565b604082019050919050565b6000613665602083613e32565b9150613670826145f6565b602082019050919050565b6000613688602c83613e32565b91506136938261461f565b604082019050919050565b60006136ab602f83613e32565b91506136b68261466e565b604082019050919050565b60006136ce602083613e32565b91506136d9826146bd565b602082019050919050565b60006136f1602983613e32565b91506136fc826146e6565b604082019050919050565b6000613714602f83613e32565b915061371f82614735565b604082019050919050565b6000613737601783613e32565b915061374282614784565b602082019050919050565b600061375a602183613e32565b9150613765826147ad565b604082019050919050565b600061377d602583613e32565b9150613788826147fc565b604082019050919050565b60006137a0603683613e32565b91506137ab8261484b565b604082019050919050565b60006137c3600083613e27565b91506137ce8261489a565b600082019050919050565b60006137e6601083613e32565b91506137f18261489d565b602082019050919050565b6000613809603183613e32565b9150613814826148c6565b604082019050919050565b600061382c602c83613e32565b915061383782614915565b604082019050919050565b600061384f603483613e32565b915061385a82614964565b604082019050919050565b6000613872603883613e32565b915061387d826149b3565b604082019050919050565b61389181613fcd565b82525050565b6138a081613fcd565b82525050565b60006138b28285613460565b91506138be8284613460565b91508190509392505050565b60006138d5826137b6565b9150819050919050565b60006020820190506138f46000830184613372565b92915050565b600060808201905061390f6000830187613372565b61391c6020830186613372565b6139296040830185613897565b818103606083015261393b81846133ee565b905095945050505050565b600060208201905081810360008301526139608184613381565b905092915050565b600060208201905061397d60008301846133df565b92915050565b6000602082019050818103600083015261399d8184613427565b905092915050565b600060208201905081810360008301526139be81613491565b9050919050565b600060208201905081810360008301526139de816134b4565b9050919050565b600060208201905081810360008301526139fe816134d7565b9050919050565b60006020820190508181036000830152613a1e816134fa565b9050919050565b60006020820190508181036000830152613a3e8161351d565b9050919050565b60006020820190508181036000830152613a5e81613540565b9050919050565b60006020820190508181036000830152613a7e81613563565b9050919050565b60006020820190508181036000830152613a9e81613586565b9050919050565b60006020820190508181036000830152613abe816135a9565b9050919050565b60006020820190508181036000830152613ade816135cc565b9050919050565b60006020820190508181036000830152613afe816135ef565b9050919050565b60006020820190508181036000830152613b1e81613612565b9050919050565b60006020820190508181036000830152613b3e81613635565b9050919050565b60006020820190508181036000830152613b5e81613658565b9050919050565b60006020820190508181036000830152613b7e8161367b565b9050919050565b60006020820190508181036000830152613b9e8161369e565b9050919050565b60006020820190508181036000830152613bbe816136c1565b9050919050565b60006020820190508181036000830152613bde816136e4565b9050919050565b60006020820190508181036000830152613bfe81613707565b9050919050565b60006020820190508181036000830152613c1e8161372a565b9050919050565b60006020820190508181036000830152613c3e8161374d565b9050919050565b60006020820190508181036000830152613c5e81613770565b9050919050565b60006020820190508181036000830152613c7e81613793565b9050919050565b60006020820190508181036000830152613c9e816137d9565b9050919050565b60006020820190508181036000830152613cbe816137fc565b9050919050565b60006020820190508181036000830152613cde8161381f565b9050919050565b60006020820190508181036000830152613cfe81613842565b9050919050565b60006020820190508181036000830152613d1e81613865565b9050919050565b6000602082019050613d3a6000830184613897565b92915050565b6000613d4a613d5b565b9050613d56828261404b565b919050565b6000604051905090565b600067ffffffffffffffff821115613d8057613d7f6141e1565b5b613d898261422e565b9050602081019050919050565b600067ffffffffffffffff821115613db157613db06141e1565b5b613dba8261422e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e5982613fcd565b9150613e6483613fcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9957613e986140f6565b5b828201905092915050565b6000613eaf82613fcd565b9150613eba83613fcd565b925082613eca57613ec9614125565b5b828204905092915050565b6000613ee082613fcd565b9150613eeb83613fcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f2457613f236140f6565b5b828202905092915050565b6000613f3a82613fcd565b9150613f4583613fcd565b925082821015613f5857613f576140f6565b5b828203905092915050565b6000613f6e82613fad565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614004578082015181840152602081019050613fe9565b83811115614013576000848401525b50505050565b6000600282049050600182168061403157607f821691505b6020821081141561404557614044614154565b5b50919050565b6140548261422e565b810181811067ffffffffffffffff82111715614073576140726141e1565b5b80604052505050565b600061408782613fcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140ba576140b96140f6565b5b600182019050919050565b60006140d082613fcd565b91506140db83613fcd565b9250826140eb576140ea614125565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f45786365656473206d6178696d756d20737570706c79206f66204c6f7665545360008201527f5542414d45000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e696d756d203120616e64204d6178696d756d2035204c6f76655453554260008201527f414d452063616e206265206d696e74656420706572206164647265737320696e60208201527f2070726573616c65000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206f70656e20796574000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f7420656c696769626c6520666f722070726573616c6560008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204c6f766554535542414d452068617320746f2062652060008201527f6d696e74656420706572207472616e73616374696f6e00000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6178696d756d203230204c6f766554535542414d452063616e206265206d6960008201527f6e74656420706572207472616e73616374696f6e000000000000000000000000602082015250565b7f50757263686173652077696c6c20657863656564206d61782070726573616c6560008201527f206d696e7420616d6f756e742070657220616464726573730000000000000000602082015250565b614a0b81613f63565b8114614a1657600080fd5b50565b614a2281613f75565b8114614a2d57600080fd5b50565b614a3981613f81565b8114614a4457600080fd5b50565b614a5081613fcd565b8114614a5b57600080fd5b5056fea26469706673582212206bc4a5670aca8e30863260b29e1968def5ec9cb24376e70490373f4305df5c4064736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d616f59465942674e566e79744431483962474436796f3854614b6b44564b7a4b724164584d6f566b376f37702f00000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063853828b61161010d578063b88d4fde116100a0578063e0004ab41161006f578063e0004ab4146106ee578063e985e9c51461070a578063f0a94c8614610747578063f2fde38b14610772578063f81227d41461079b576101ee565b8063b88d4fde14610641578063bee6348a1461066a578063c87b56dd14610695578063c9b298f1146106d2576101ee565b806399288dbb116100dc57806399288dbb14610599578063a035b1fe146105c4578063a22cb465146105ef578063b31d61b014610618576101ee565b8063853828b6146105035780638da5cb5b1461051a57806391b7f5ed1461054557806395d89b411461056e576101ee565b806334918dfd1161018557806355f804b31161015457806355f804b3146104495780636352211e1461047257806370a08231146104af578063715018a6146104ec576101ee565b806334918dfd1461038f57806342842e0e146103a6578063438b6300146103cf5780634f6ccce71461040c576101ee565b8063095ea7b3116101c1578063095ea7b3146102d557806318160ddd146102fe57806323b872dd146103295780632f745c5914610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063080a57f91461025b578063081812fc14610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061328a565b6107b2565b6040516102279190613968565b60405180910390f35b34801561023c57600080fd5b5061024561082c565b6040516102529190613983565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061307a565b6108be565b60405161028f9190613968565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061332d565b6108de565b6040516102cc91906138df565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f791906131fd565b610963565b005b34801561030a57600080fd5b50610313610a7b565b6040516103209190613d25565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b91906130e7565b610a88565b005b34801561035e57600080fd5b50610379600480360381019061037491906131fd565b610ae8565b6040516103869190613d25565b60405180910390f35b34801561039b57600080fd5b506103a4610b8d565b005b3480156103b257600080fd5b506103cd60048036038101906103c891906130e7565b610c35565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061307a565b610c55565b6040516104039190613946565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061332d565b610d03565b6040516104409190613d25565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906132e4565b610d74565b005b34801561047e57600080fd5b506104996004803603810190610494919061332d565b610e0a565b6040516104a691906138df565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d1919061307a565b610ebc565b6040516104e39190613d25565b60405180910390f35b3480156104f857600080fd5b50610501610f74565b005b34801561050f57600080fd5b50610518610ffc565b005b34801561052657600080fd5b5061052f611127565b60405161053c91906138df565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061332d565b611151565b005b34801561057a57600080fd5b506105836111d7565b6040516105909190613983565b60405180910390f35b3480156105a557600080fd5b506105ae611269565b6040516105bb9190613968565b60405180910390f35b3480156105d057600080fd5b506105d961127c565b6040516105e69190613d25565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906131bd565b611282565b005b34801561062457600080fd5b5061063f600480360381019061063a919061323d565b611403565b005b34801561064d57600080fd5b506106686004803603810190610663919061313a565b611524565b005b34801561067657600080fd5b5061067f611586565b60405161068c9190613968565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b7919061332d565b611599565b6040516106c99190613983565b60405180910390f35b6106ec60048036038101906106e7919061332d565b611640565b005b610708600480360381019061070391906131fd565b6118c1565b005b34801561071657600080fd5b50610731600480360381019061072c91906130a7565b611aa5565b60405161073e9190613968565b60405180910390f35b34801561075357600080fd5b5061075c611b39565b6040516107699190613d25565b60405180910390f35b34801561077e57600080fd5b506107996004803603810190610794919061307a565b611b3f565b005b3480156107a757600080fd5b506107b0611c37565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610825575061082482611cdf565b5b9050919050565b60606000805461083b90614019565b80601f016020809104026020016040519081016040528092919081815260200182805461086790614019565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b60006108e982611dc1565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613b65565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096e82610e0a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613c25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fe611e2d565b73ffffffffffffffffffffffffffffffffffffffff161480610a2d5750610a2c81610a27611e2d565b611aa5565b5b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613ae5565b60405180910390fd5b610a768383611e35565b505050565b6000600880549050905090565b610a99610a93611e2d565b82611eee565b610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613ca5565b60405180910390fd5b610ae3838383611fcc565b505050565b6000610af383610ebc565b8210610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b906139a5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b95611e2d565b73ffffffffffffffffffffffffffffffffffffffff16610bb3611127565b73ffffffffffffffffffffffffffffffffffffffff1614610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613ba5565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610c5083838360405180602001604052806000815250611524565b505050565b60606000610c6283610ebc565b905060008167ffffffffffffffff811115610c8057610c7f6141e1565b5b604051908082528060200260200182016040528015610cae5781602001602082028036833780820191505090505b50905060005b82811015610cf857610cc68582610ae8565b828281518110610cd957610cd86141b2565b5b6020026020010181815250508080610cf09061407c565b915050610cb4565b508092505050919050565b6000610d0d610a7b565b8210610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613cc5565b60405180910390fd5b60088281548110610d6257610d616141b2565b5b90600052602060002001549050919050565b610d7c611e2d565b73ffffffffffffffffffffffffffffffffffffffff16610d9a611127565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613ba5565b60405180910390fd5b80600d9080519060200190610e06929190612e38565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613b25565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613b05565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7c611e2d565b73ffffffffffffffffffffffffffffffffffffffff16610f9a611127565b73ffffffffffffffffffffffffffffffffffffffff1614610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790613ba5565b60405180910390fd5b610ffa6000612228565b565b611004611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611022611127565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613ba5565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161109e906138ca565b60006040518083038185875af1925050503d80600081146110db576040519150601f19603f3d011682016040523d82523d6000602084013e6110e0565b606091505b5050905080611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613c85565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611159611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611177611127565b73ffffffffffffffffffffffffffffffffffffffff16146111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613ba5565b60405180910390fd5b80600c8190555050565b6060600180546111e690614019565b80601f016020809104026020016040519081016040528092919081815260200182805461121290614019565b801561125f5780601f106112345761010080835404028352916020019161125f565b820191906000526020600020905b81548152906001019060200180831161124257829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600c5481565b61128a611e2d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613a45565b60405180910390fd5b8060056000611305611e2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b2611e2d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f79190613968565b60405180910390a35050565b61140b611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611429611127565b73ffffffffffffffffffffffffffffffffffffffff161461147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613ba5565b60405180910390fd5b60005b8282905081101561151f576001600f60008585858181106114a6576114a56141b2565b5b90506020020160208101906114bb919061307a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115179061407c565b915050611482565b505050565b61153561152f611e2d565b83611eee565b611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90613ca5565b60405180910390fd5b611580848484846122ee565b50505050565b600e60019054906101000a900460ff1681565b60606115a482611dc1565b6115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613be5565b60405180910390fd5b60006115ed61234a565b9050600081511161160d5760405180602001604052806000815250611638565b80611617846123dc565b6040516020016116289291906138a6565b6040516020818303038152906040525b915050919050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613c45565b60405180910390fd5b600e60019054906101000a900460ff16611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613c05565b60405180910390fd5b600081118015611733575060058111155b611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613ac5565b60405180910390fd5b8061177c33610c55565b516117879190613e4e565b600510156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613d05565b60405180910390fd5b80600c546117d89190613ed5565b34101561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613b85565b60405180910390fd5b60058161182633610c55565b516118319190613e4e565b1415611890576000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600033905060005b828110156118bc576118a98261253d565b80806118b49061407c565b915050611898565b505050565b612710816118cd610a7b565b6118d79190613e4e565b1115611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90613a85565b60405180910390fd5b6000811161195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613c65565b60405180910390fd5b611963611127565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a7957600e60009054906101000a900460ff166119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db90613a65565b60405180910390fd5b6014811115611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613ce5565b60405180910390fd5b80600c54611a369190613ed5565b341015611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90613b85565b60405180910390fd5b5b60005b81811015611aa057611a8d8361253d565b8080611a989061407c565b915050611a7c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61271081565b611b47611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611b65611127565b73ffffffffffffffffffffffffffffffffffffffff1614611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb290613ba5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c22906139e5565b60405180910390fd5b611c3481612228565b50565b611c3f611e2d565b73ffffffffffffffffffffffffffffffffffffffff16611c5d611127565b73ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613ba5565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611daa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611dba5750611db98261259a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ea883610e0a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ef982611dc1565b611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90613aa5565b60405180910390fd5b6000611f4383610e0a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fb257508373ffffffffffffffffffffffffffffffffffffffff16611f9a846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fc35750611fc28185611aa5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fec82610e0a565b73ffffffffffffffffffffffffffffffffffffffff1614612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990613bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a990613a25565b60405180910390fd5b6120bd838383612604565b6120c8600082611e35565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121189190613f2f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216f9190613e4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f9848484611fcc565b61230584848484612718565b612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233b906139c5565b60405180910390fd5b50505050565b6060600d805461235990614019565b80601f016020809104026020016040519081016040528092919081815260200182805461238590614019565b80156123d25780601f106123a7576101008083540402835291602001916123d2565b820191906000526020600020905b8154815290600101906020018083116123b557829003601f168201915b5050505050905090565b60606000821415612424576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612538565b600082905060005b6000821461245657808061243f9061407c565b915050600a8261244f9190613ea4565b915061242c565b60008167ffffffffffffffff811115612472576124716141e1565b5b6040519080825280601f01601f1916602001820160405280156124a45781602001600182028036833780820191505090505b5090505b60008514612531576001826124bd9190613f2f565b9150600a856124cc91906140c5565b60306124d89190613e4e565b60f81b8183815181106124ee576124ed6141b2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561252a9190613ea4565b94506124a8565b8093505050505b919050565b612547600b6128af565b6000612553600b6128c5565b905061255f82826128d3565b7f90bc7fdc4dcf0dd849e9adff0ac0a8056e5650775f3098c923542e27153c32dd8160405161258e9190613d25565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61260f8383836128f1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126525761264d816128f6565b612691565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126905761268f838261293f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d4576126cf81612aac565b612713565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612712576127118282612b7d565b5b5b505050565b60006127398473ffffffffffffffffffffffffffffffffffffffff16612bfc565b156128a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612762611e2d565b8786866040518563ffffffff1660e01b815260040161278494939291906138fa565b602060405180830381600087803b15801561279e57600080fd5b505af19250505080156127cf57506040513d601f19601f820116820180604052508101906127cc91906132b7565b60015b612852573d80600081146127ff576040519150601f19603f3d011682016040523d82523d6000602084013e612804565b606091505b5060008151141561284a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612841906139c5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128a7565b600190505b949350505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6128ed828260405180602001604052806000815250612c0f565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161294c84610ebc565b6129569190613f2f565b9050600060076000848152602001908152602001600020549050818114612a3b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ac09190613f2f565b9050600060096000848152602001908152602001600020549050600060088381548110612af057612aef6141b2565b5b906000526020600020015490508060088381548110612b1257612b116141b2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b6157612b60614183565b5b6001900381819060005260206000200160009055905550505050565b6000612b8883610ebc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b612c198383612c6a565b612c266000848484612718565b612c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5c906139c5565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd190613b45565b60405180910390fd5b612ce381611dc1565b15612d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1a90613a05565b60405180910390fd5b612d2f60008383612604565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7f9190613e4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e4490614019565b90600052602060002090601f016020900481019282612e665760008555612ead565b82601f10612e7f57805160ff1916838001178555612ead565b82800160010185558215612ead579182015b82811115612eac578251825591602001919060010190612e91565b5b509050612eba9190612ebe565b5090565b5b80821115612ed7576000816000905550600101612ebf565b5090565b6000612eee612ee984613d65565b613d40565b905082815260208101848484011115612f0a57612f0961421f565b5b612f15848285613fd7565b509392505050565b6000612f30612f2b84613d96565b613d40565b905082815260208101848484011115612f4c57612f4b61421f565b5b612f57848285613fd7565b509392505050565b600081359050612f6e81614a02565b92915050565b60008083601f840112612f8a57612f89614215565b5b8235905067ffffffffffffffff811115612fa757612fa6614210565b5b602083019150836020820283011115612fc357612fc261421a565b5b9250929050565b600081359050612fd981614a19565b92915050565b600081359050612fee81614a30565b92915050565b60008151905061300381614a30565b92915050565b600082601f83011261301e5761301d614215565b5b813561302e848260208601612edb565b91505092915050565b600082601f83011261304c5761304b614215565b5b813561305c848260208601612f1d565b91505092915050565b60008135905061307481614a47565b92915050565b6000602082840312156130905761308f614229565b5b600061309e84828501612f5f565b91505092915050565b600080604083850312156130be576130bd614229565b5b60006130cc85828601612f5f565b92505060206130dd85828601612f5f565b9150509250929050565b600080600060608486031215613100576130ff614229565b5b600061310e86828701612f5f565b935050602061311f86828701612f5f565b925050604061313086828701613065565b9150509250925092565b6000806000806080858703121561315457613153614229565b5b600061316287828801612f5f565b945050602061317387828801612f5f565b935050604061318487828801613065565b925050606085013567ffffffffffffffff8111156131a5576131a4614224565b5b6131b187828801613009565b91505092959194509250565b600080604083850312156131d4576131d3614229565b5b60006131e285828601612f5f565b92505060206131f385828601612fca565b9150509250929050565b6000806040838503121561321457613213614229565b5b600061322285828601612f5f565b925050602061323385828601613065565b9150509250929050565b6000806020838503121561325457613253614229565b5b600083013567ffffffffffffffff81111561327257613271614224565b5b61327e85828601612f74565b92509250509250929050565b6000602082840312156132a05761329f614229565b5b60006132ae84828501612fdf565b91505092915050565b6000602082840312156132cd576132cc614229565b5b60006132db84828501612ff4565b91505092915050565b6000602082840312156132fa576132f9614229565b5b600082013567ffffffffffffffff81111561331857613317614224565b5b61332484828501613037565b91505092915050565b60006020828403121561334357613342614229565b5b600061335184828501613065565b91505092915050565b60006133668383613888565b60208301905092915050565b61337b81613f63565b82525050565b600061338c82613dd7565b6133968185613e05565b93506133a183613dc7565b8060005b838110156133d25781516133b9888261335a565b97506133c483613df8565b9250506001810190506133a5565b5085935050505092915050565b6133e881613f75565b82525050565b60006133f982613de2565b6134038185613e16565b9350613413818560208601613fe6565b61341c8161422e565b840191505092915050565b600061343282613ded565b61343c8185613e32565b935061344c818560208601613fe6565b6134558161422e565b840191505092915050565b600061346b82613ded565b6134758185613e43565b9350613485818560208601613fe6565b80840191505092915050565b600061349e602b83613e32565b91506134a98261423f565b604082019050919050565b60006134c1603283613e32565b91506134cc8261428e565b604082019050919050565b60006134e4602683613e32565b91506134ef826142dd565b604082019050919050565b6000613507601c83613e32565b91506135128261432c565b602082019050919050565b600061352a602483613e32565b915061353582614355565b604082019050919050565b600061354d601983613e32565b9150613558826143a4565b602082019050919050565b6000613570601483613e32565b915061357b826143cd565b602082019050919050565b6000613593602583613e32565b915061359e826143f6565b604082019050919050565b60006135b6602c83613e32565b91506135c182614445565b604082019050919050565b60006135d9604883613e32565b91506135e482614494565b606082019050919050565b60006135fc603883613e32565b915061360782614509565b604082019050919050565b600061361f602a83613e32565b915061362a82614558565b604082019050919050565b6000613642602983613e32565b915061364d826145a7565b604082019050919050565b6000613665602083613e32565b9150613670826145f6565b602082019050919050565b6000613688602c83613e32565b91506136938261461f565b604082019050919050565b60006136ab602f83613e32565b91506136b68261466e565b604082019050919050565b60006136ce602083613e32565b91506136d9826146bd565b602082019050919050565b60006136f1602983613e32565b91506136fc826146e6565b604082019050919050565b6000613714602f83613e32565b915061371f82614735565b604082019050919050565b6000613737601783613e32565b915061374282614784565b602082019050919050565b600061375a602183613e32565b9150613765826147ad565b604082019050919050565b600061377d602583613e32565b9150613788826147fc565b604082019050919050565b60006137a0603683613e32565b91506137ab8261484b565b604082019050919050565b60006137c3600083613e27565b91506137ce8261489a565b600082019050919050565b60006137e6601083613e32565b91506137f18261489d565b602082019050919050565b6000613809603183613e32565b9150613814826148c6565b604082019050919050565b600061382c602c83613e32565b915061383782614915565b604082019050919050565b600061384f603483613e32565b915061385a82614964565b604082019050919050565b6000613872603883613e32565b915061387d826149b3565b604082019050919050565b61389181613fcd565b82525050565b6138a081613fcd565b82525050565b60006138b28285613460565b91506138be8284613460565b91508190509392505050565b60006138d5826137b6565b9150819050919050565b60006020820190506138f46000830184613372565b92915050565b600060808201905061390f6000830187613372565b61391c6020830186613372565b6139296040830185613897565b818103606083015261393b81846133ee565b905095945050505050565b600060208201905081810360008301526139608184613381565b905092915050565b600060208201905061397d60008301846133df565b92915050565b6000602082019050818103600083015261399d8184613427565b905092915050565b600060208201905081810360008301526139be81613491565b9050919050565b600060208201905081810360008301526139de816134b4565b9050919050565b600060208201905081810360008301526139fe816134d7565b9050919050565b60006020820190508181036000830152613a1e816134fa565b9050919050565b60006020820190508181036000830152613a3e8161351d565b9050919050565b60006020820190508181036000830152613a5e81613540565b9050919050565b60006020820190508181036000830152613a7e81613563565b9050919050565b60006020820190508181036000830152613a9e81613586565b9050919050565b60006020820190508181036000830152613abe816135a9565b9050919050565b60006020820190508181036000830152613ade816135cc565b9050919050565b60006020820190508181036000830152613afe816135ef565b9050919050565b60006020820190508181036000830152613b1e81613612565b9050919050565b60006020820190508181036000830152613b3e81613635565b9050919050565b60006020820190508181036000830152613b5e81613658565b9050919050565b60006020820190508181036000830152613b7e8161367b565b9050919050565b60006020820190508181036000830152613b9e8161369e565b9050919050565b60006020820190508181036000830152613bbe816136c1565b9050919050565b60006020820190508181036000830152613bde816136e4565b9050919050565b60006020820190508181036000830152613bfe81613707565b9050919050565b60006020820190508181036000830152613c1e8161372a565b9050919050565b60006020820190508181036000830152613c3e8161374d565b9050919050565b60006020820190508181036000830152613c5e81613770565b9050919050565b60006020820190508181036000830152613c7e81613793565b9050919050565b60006020820190508181036000830152613c9e816137d9565b9050919050565b60006020820190508181036000830152613cbe816137fc565b9050919050565b60006020820190508181036000830152613cde8161381f565b9050919050565b60006020820190508181036000830152613cfe81613842565b9050919050565b60006020820190508181036000830152613d1e81613865565b9050919050565b6000602082019050613d3a6000830184613897565b92915050565b6000613d4a613d5b565b9050613d56828261404b565b919050565b6000604051905090565b600067ffffffffffffffff821115613d8057613d7f6141e1565b5b613d898261422e565b9050602081019050919050565b600067ffffffffffffffff821115613db157613db06141e1565b5b613dba8261422e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e5982613fcd565b9150613e6483613fcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9957613e986140f6565b5b828201905092915050565b6000613eaf82613fcd565b9150613eba83613fcd565b925082613eca57613ec9614125565b5b828204905092915050565b6000613ee082613fcd565b9150613eeb83613fcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f2457613f236140f6565b5b828202905092915050565b6000613f3a82613fcd565b9150613f4583613fcd565b925082821015613f5857613f576140f6565b5b828203905092915050565b6000613f6e82613fad565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614004578082015181840152602081019050613fe9565b83811115614013576000848401525b50505050565b6000600282049050600182168061403157607f821691505b6020821081141561404557614044614154565b5b50919050565b6140548261422e565b810181811067ffffffffffffffff82111715614073576140726141e1565b5b80604052505050565b600061408782613fcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140ba576140b96140f6565b5b600182019050919050565b60006140d082613fcd565b91506140db83613fcd565b9250826140eb576140ea614125565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f45786365656473206d6178696d756d20737570706c79206f66204c6f7665545360008201527f5542414d45000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e696d756d203120616e64204d6178696d756d2035204c6f76655453554260008201527f414d452063616e206265206d696e74656420706572206164647265737320696e60208201527f2070726573616c65000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206f70656e20796574000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f7420656c696769626c6520666f722070726573616c6560008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204c6f766554535542414d452068617320746f2062652060008201527f6d696e74656420706572207472616e73616374696f6e00000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6178696d756d203230204c6f766554535542414d452063616e206265206d6960008201527f6e74656420706572207472616e73616374696f6e000000000000000000000000602082015250565b7f50757263686173652077696c6c20657863656564206d61782070726573616c6560008201527f206d696e7420616d6f756e742070657220616464726573730000000000000000602082015250565b614a0b81613f63565b8114614a1657600080fd5b50565b614a2281613f75565b8114614a2d57600080fd5b50565b614a3981613f81565b8114614a4457600080fd5b50565b614a5081613fcd565b8114614a5b57600080fd5b5056fea26469706673582212206bc4a5670aca8e30863260b29e1968def5ec9cb24376e70490373f4305df5c4064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d616f59465942674e566e79744431483962474436796f3854614b6b44564b7a4b724164584d6f566b376f37702f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmaoYFYBgNVnytD1H9bGD6yo8TaKkDVKzKrAdXMoVk7o7p/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d616f59465942674e566e79744431483962474436796f38
Arg [3] : 54614b6b44564b7a4b724164584d6f566b376f37702f00000000000000000000
Deployed Bytecode Sourcemap
46365:3974:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39872:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46715:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28725:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28248:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40675:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40256:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47084:83;;;;;;;;;;;;;:::i;:::-;;30231:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49517:383;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40865:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49908:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26639:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9739:94;;;;;;;;;;;;;:::i;:::-;;47275:176;;;;;;;;;;;;;:::i;:::-;;9088:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46937:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27201:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46642:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46556:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29105:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47459:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30487:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46677:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27376:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47656:948;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48636:822;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29503:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46506:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9988:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47175:92;;;;;;;;;;;;;:::i;:::-;;39872:300;40019:4;40076:35;40061:50;;;:11;:50;;;;:103;;;;40128:36;40152:11;40128:23;:36::i;:::-;40061:103;40041:123;;39872:300;;;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;46715:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29001:15;:24;29017:7;29001:24;;;;;;;;;;;;;;;;;;;;;28994:31;;28725:308;;;:::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;28387:11;;:2;:11;;;;28379:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28487:5;28471:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;:::-;28496:16;:37::i;:::-;28471:62;28449:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28630:21;28639:2;28643:7;28630:8;:21::i;:::-;28318:341;28248:411;;:::o;40675:113::-;40736:7;40763:10;:17;;;;40756:24;;40675:113;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;:::-;29784:376;;;:::o;40256:343::-;40398:7;40453:23;40470:5;40453:16;:23::i;:::-;40445:5;:31;40423:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:12;:19;40578:5;40565:19;;;;;;;;;;;;;;;:26;40585:5;40565:26;;;;;;;;;;;;40558:33;;40256:343;;;;:::o;47084:83::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47151:8:::1;;;;;;;;;;;47150:9;47139:8;;:20;;;;;;;;;;;;;;;;;;47084:83::o:0;30231:185::-;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;:::-;30231:185;;;:::o;49517:383::-;49604:16;49638:18;49659:17;49669:6;49659:9;:17::i;:::-;49638:38;;49689:25;49731:10;49717:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49689:53;;49758:9;49753:112;49777:10;49773:1;:14;49753:112;;;49823:30;49843:6;49851:1;49823:19;:30::i;:::-;49809:8;49818:1;49809:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49789:3;;;;;:::i;:::-;;;;49753:112;;;;49884:8;49877:15;;;;49517:383;;;:::o;40865:320::-;40985:7;41040:30;:28;:30::i;:::-;41032:5;:38;41010:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41160:10;41171:5;41160:17;;;;;;;;:::i;:::-;;;;;;;;;;41153:24;;40865:320;;;:::o;49908:101::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49994:7:::1;49979:12;:22;;;;;;;;;;;;:::i;:::-;;49908:101:::0;:::o;26639:326::-;26756:7;26781:13;26797:7;:16;26805:7;26797:16;;;;;;;;;;;;;;;;;;;;;26781:32;;26863:1;26846:19;;:5;:19;;;;26824:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26952:5;26945:12;;;26639:326;;;:::o;26282:295::-;26399:7;26463:1;26446:19;;:5;:19;;;;26424:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26553:9;:16;26563:5;26553:16;;;;;;;;;;;;;;;;26546:23;;26282:295;;;:::o;9739:94::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;47275:176::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47329:12:::1;47347:10;:15;;47370:21;47347:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47328:68;;;47415:7;47407:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47317:134;47275:176::o:0;9088:87::-;9134:7;9161:6;;;;;;;;;;;9154:13;;9088:87;:::o;46937:92::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47012:9:::1;47004:5;:17;;;;46937:92:::0;:::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27201:104;:::o;46642:28::-;;;;;;;;;;;;;:::o;46556:40::-;;;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;29240:24;;:8;:24;;;;29232:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;29307:32;;;;;;;;;;;;;;;:42;29340:8;29307:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29405:8;29376:48;;29391:12;:10;:12::i;:::-;29376:48;;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;47459:189::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47546:9:::1;47541:100;47565:5;;:12;;47561:1;:16;47541:100;;;47625:4;47599:13;:23;47613:5;;47619:1;47613:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47599:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;47579:3;;;;;:::i;:::-;;;;47541:100;;;;47459:189:::0;;:::o;30487:365::-;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;:::-;30487:365;;;;:::o;46677:31::-;;;;;;;;;;;;;:::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27740:1;27722:7;27716:21;:25;:120;;;;;;;;;;;;;;;;;27785:7;27794:18;:7;:16;:18::i;:::-;27768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27716:120;27696:140;;;27376:468;;;:::o;47656:948::-;47772:4;47743:33;;:13;:25;47757:10;47743:25;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;47721:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;47860:11;;;;;;;;;;;47852:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;47941:1;47932:6;:10;:25;;;;;47956:1;47946:6;:11;;47932:25;47910:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;48130:6;48095:25;48109:10;48095:13;:25::i;:::-;:32;:41;;;;:::i;:::-;48090:1;:46;;48068:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;48274:6;48266:5;;:14;;;;:::i;:::-;48253:9;:27;;48231:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;48417:1;48407:6;48372:25;48386:10;48372:13;:25::i;:::-;:32;:41;;;;:::i;:::-;:46;48368:112;;;48463:5;48435:13;:25;48449:10;48435:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;48368:112;48490:10;48503;48490:23;;48529:9;48524:73;48548:6;48544:1;:10;48524:73;;;48576:9;48582:2;48576:5;:9::i;:::-;48556:3;;;;;:::i;:::-;;;;48524:73;;;;47710:894;47656:948;:::o;48636:822::-;46544:5;48756:6;48740:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:37;;48718:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;48884:1;48875:6;:10;48853:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;48996:7;:5;:7::i;:::-;48982:21;;:10;:21;;;48978:387;;49028:8;;;;;;;;;;;49020:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;49112:2;49102:6;:12;;49076:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;49264:6;49256:5;;:14;;;;:::i;:::-;49243:9;:27;;49217:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;48978:387;49382:9;49377:74;49401:6;49397:1;:10;49377:74;;;49429:10;49435:3;49429:5;:10::i;:::-;49409:3;;;;;:::i;:::-;;;;49377:74;;;;48636:822;;:::o;29503:214::-;29645:4;29674:18;:25;29693:5;29674:25;;;;;;;;;;;;;;;:35;29700:8;29674:35;;;;;;;;;;;;;;;;;;;;;;;;;29667:42;;29503:214;;;;:::o;46506:43::-;46544:5;46506:43;:::o;9988:229::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10111:1:::1;10091:22;;:8;:22;;;;10069:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10190:19;10200:8;10190:9;:19::i;:::-;9988:229:::0;:::o;47175:92::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47248:11:::1;;;;;;;;;;;47247:12;47233:11;;:26;;;;;;;;;;;;;;;;;;47175:92::o:0;25863:355::-;26010:4;26067:25;26052:40;;;:11;:40;;;;:105;;;;26124:33;26109:48;;;:11;:48;;;;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;:::-;26052:158;26032:178;;25863:355;;;:::o;32399:127::-;32464:4;32516:1;32488:30;;:7;:16;32496:7;32488:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32481:37;;32399:127;;;:::o;2061:98::-;2114:7;2141:10;2134:17;;2061:98;:::o;36522:174::-;36624:2;36597:15;:24;36613:7;36597:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36680:7;36676:2;36642:46;;36651:23;36666:7;36651:14;:23::i;:::-;36642:46;;;;;;;;;;;;36522:174;;:::o;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;33023:16;;:7;:16;;;:64;;;;33080:7;33056:31;;:20;33068:7;33056:11;:20::i;:::-;:31;;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;:::-;33023:113;33015:122;;;32693:452;;;;:::o;35789:615::-;35962:4;35935:31;;:23;35950:7;35935:14;:23::i;:::-;:31;;;35913:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36068:1;36054:16;;:2;:16;;;;36046:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;36289:1;36270:9;:15;36280:4;36270:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36318:1;36301:9;:13;36311:2;36301:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36349:2;36330:7;:16;36338:7;36330:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36388:7;36384:2;36369:27;;36378:4;36369:27;;;;;;;;;;;;35789:615;;;:::o;10225:173::-;10281:16;10300:6;;;;;;;;;;;10281:25;;10326:8;10317:6;;:17;;;;;;;;;;;;;;;;;;10381:8;10350:40;;10371:8;10350:40;;;;;;;;;;;;10270:128;10225:173;:::o;31734:352::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31952:48;31975:4;31981:2;31985:7;31994:5;31952:22;:48::i;:::-;31930:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31734:352;;;;:::o;50223:113::-;50283:13;50316:12;50309:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50223:113;:::o;12730:723::-;12786:13;13016:1;13007:5;:10;13003:53;;;13034:10;;;;;;;;;;;;;;;;;;;;;13003:53;13066:12;13081:5;13066:20;;13097:14;13122:78;13137:1;13129:4;:9;13122:78;;13155:8;;;;;:::i;:::-;;;;13186:2;13178:10;;;;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13210:39;;13260:154;13276:1;13267:5;:10;13260:154;;13304:1;13294:11;;;;;:::i;:::-;;;13371:2;13363:5;:10;;;;:::i;:::-;13350:2;:24;;;;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13400:2;13391:11;;;;;:::i;:::-;;;13260:154;;;13438:6;13424:21;;;;;12730:723;;;;:::o;50017:198::-;50064:20;:8;:18;:20::i;:::-;50095:15;50113:18;:8;:16;:18::i;:::-;50095:36;;50142:23;50152:3;50157:7;50142:9;:23::i;:::-;50181:26;50199:7;50181:26;;;;;;:::i;:::-;;;;;;;;50053:162;50017:198;:::o;12209:207::-;12339:4;12383:25;12368:40;;;:11;:40;;;;12361:47;;12209:207;;;:::o;41798:589::-;41942:45;41969:4;41975:2;41979:7;41942:26;:45::i;:::-;42020:1;42004:18;;:4;:18;;;42000:187;;;42039:40;42071:7;42039:31;:40::i;:::-;42000:187;;;42109:2;42101:10;;:4;:10;;;42097:90;;42128:47;42161:4;42167:7;42128:32;:47::i;:::-;42097:90;42000:187;42215:1;42201:16;;:2;:16;;;42197:183;;;42234:45;42271:7;42234:36;:45::i;:::-;42197:183;;;42307:4;42301:10;;:2;:10;;;42297:83;;42328:40;42356:2;42360:7;42328:27;:40::i;:::-;42297:83;42197:183;41798:589;;;:::o;37261:984::-;37416:4;37437:15;:2;:13;;;:15::i;:::-;37433:805;;;37506:2;37490:36;;;37549:12;:10;:12::i;:::-;37584:4;37611:7;37641:5;37490:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37469:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37869:1;37852:6;:13;:18;37848:320;;;37895:108;;;;;;;;;;:::i;:::-;;;;;;;;37848:320;38118:6;38112:13;38103:6;38099:2;38095:15;38088:38;37469:714;37739:45;;;37729:55;;;:6;:55;;;;37722:62;;;;;37433:805;38222:4;38215:11;;37261:984;;;;;;;:::o;970:127::-;1077:1;1059:7;:14;;;:19;;;;;;;;;;;970:127;:::o;848:114::-;913:7;940;:14;;;933:21;;848:114;;;:::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;:::-;33487:110;;:::o;38817:126::-;;;;:::o;43110:164::-;43214:10;:17;;;;43187:15;:24;43203:7;43187:24;;;;;;;;;;;:44;;;;43242:10;43258:7;43242:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43110:164;:::o;43901:1002::-;44181:22;44231:1;44206:22;44223:4;44206:16;:22::i;:::-;:26;;;;:::i;:::-;44181:51;;44243:18;44264:17;:26;44282:7;44264:26;;;;;;;;;;;;44243:47;;44411:14;44397:10;:28;44393:328;;44442:19;44464:12;:18;44477:4;44464:18;;;;;;;;;;;;;;;:34;44483:14;44464:34;;;;;;;;;;;;44442:56;;44548:11;44515:12;:18;44528:4;44515:18;;;;;;;;;;;;;;;:30;44534:10;44515:30;;;;;;;;;;;:44;;;;44665:10;44632:17;:30;44650:11;44632:30;;;;;;;;;;;:43;;;;44427:294;44393:328;44817:17;:26;44835:7;44817:26;;;;;;;;;;;44810:33;;;44861:12;:18;44874:4;44861:18;;;;;;;;;;;;;;;:34;44880:14;44861:34;;;;;;;;;;;44854:41;;;43996:907;;43901:1002;;:::o;45198:1079::-;45451:22;45496:1;45476:10;:17;;;;:21;;;;:::i;:::-;45451:46;;45508:18;45529:15;:24;45545:7;45529:24;;;;;;;;;;;;45508:45;;45880:19;45902:10;45913:14;45902:26;;;;;;;;:::i;:::-;;;;;;;;;;45880:48;;45966:11;45941:10;45952;45941:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46077:10;46046:15;:28;46062:11;46046:28;;;;;;;;;;;:41;;;;46218:15;:24;46234:7;46218:24;;;;;;;;;;;46211:31;;;46253:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45269:1008;;;45198:1079;:::o;42688:221::-;42773:14;42790:20;42807:2;42790:16;:20::i;:::-;42773:37;;42848:7;42821:12;:16;42834:2;42821:16;;;;;;;;;;;;;;;:24;42838:6;42821:24;;;;;;;;;;;:34;;;;42895:6;42866:17;:26;42884:7;42866:26;;;;;;;;;;;:35;;;;42762:147;42688:221;;:::o;15283:387::-;15343:4;15551:12;15618:7;15606:20;15598:28;;15661:1;15654:4;:8;15647:15;;;15283:387;;;:::o;33824:321::-;33954:18;33960:2;33964:7;33954:5;:18::i;:::-;34005:54;34036:1;34040:2;34044:7;34053:5;34005:22;:54::i;:::-;33983:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33824:321;;;:::o;34481:382::-;34575:1;34561:16;;:2;:16;;;;34553:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;34771:1;34754:9;:13;34764:2;34754:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34802:2;34783:7;:16;34791:7;34783:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34847:7;34843:2;34822:33;;34839:1;34822:33;;;;;;;;;;;;34481:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:179::-;8383:10;8404:46;8446:3;8438:6;8404:46;:::i;:::-;8482:4;8477:3;8473:14;8459:28;;8314:179;;;;:::o;8499:118::-;8586:24;8604:5;8586:24;:::i;:::-;8581:3;8574:37;8499:118;;:::o;8653:732::-;8772:3;8801:54;8849:5;8801:54;:::i;:::-;8871:86;8950:6;8945:3;8871:86;:::i;:::-;8864:93;;8981:56;9031:5;8981:56;:::i;:::-;9060:7;9091:1;9076:284;9101:6;9098:1;9095:13;9076:284;;;9177:6;9171:13;9204:63;9263:3;9248:13;9204:63;:::i;:::-;9197:70;;9290:60;9343:6;9290:60;:::i;:::-;9280:70;;9136:224;9123:1;9120;9116:9;9111:14;;9076:284;;;9080:14;9376:3;9369:10;;8777:608;;;8653:732;;;;:::o;9391:109::-;9472:21;9487:5;9472:21;:::i;:::-;9467:3;9460:34;9391:109;;:::o;9506:360::-;9592:3;9620:38;9652:5;9620:38;:::i;:::-;9674:70;9737:6;9732:3;9674:70;:::i;:::-;9667:77;;9753:52;9798:6;9793:3;9786:4;9779:5;9775:16;9753:52;:::i;:::-;9830:29;9852:6;9830:29;:::i;:::-;9825:3;9821:39;9814:46;;9596:270;9506:360;;;;:::o;9872:364::-;9960:3;9988:39;10021:5;9988:39;:::i;:::-;10043:71;10107:6;10102:3;10043:71;:::i;:::-;10036:78;;10123:52;10168:6;10163:3;10156:4;10149:5;10145:16;10123:52;:::i;:::-;10200:29;10222:6;10200:29;:::i;:::-;10195:3;10191:39;10184:46;;9964:272;9872:364;;;;:::o;10242:377::-;10348:3;10376:39;10409:5;10376:39;:::i;:::-;10431:89;10513:6;10508:3;10431:89;:::i;:::-;10424:96;;10529:52;10574:6;10569:3;10562:4;10555:5;10551:16;10529:52;:::i;:::-;10606:6;10601:3;10597:16;10590:23;;10352:267;10242:377;;;;:::o;10625:366::-;10767:3;10788:67;10852:2;10847:3;10788:67;:::i;:::-;10781:74;;10864:93;10953:3;10864:93;:::i;:::-;10982:2;10977:3;10973:12;10966:19;;10625:366;;;:::o;10997:::-;11139:3;11160:67;11224:2;11219:3;11160:67;:::i;:::-;11153:74;;11236:93;11325:3;11236:93;:::i;:::-;11354:2;11349:3;11345:12;11338:19;;10997:366;;;:::o;11369:::-;11511:3;11532:67;11596:2;11591:3;11532:67;:::i;:::-;11525:74;;11608:93;11697:3;11608:93;:::i;:::-;11726:2;11721:3;11717:12;11710:19;;11369:366;;;:::o;11741:::-;11883:3;11904:67;11968:2;11963:3;11904:67;:::i;:::-;11897:74;;11980:93;12069:3;11980:93;:::i;:::-;12098:2;12093:3;12089:12;12082:19;;11741:366;;;:::o;12113:::-;12255:3;12276:67;12340:2;12335:3;12276:67;:::i;:::-;12269:74;;12352:93;12441:3;12352:93;:::i;:::-;12470:2;12465:3;12461:12;12454:19;;12113:366;;;:::o;12485:::-;12627:3;12648:67;12712:2;12707:3;12648:67;:::i;:::-;12641:74;;12724:93;12813:3;12724:93;:::i;:::-;12842:2;12837:3;12833:12;12826:19;;12485:366;;;:::o;12857:::-;12999:3;13020:67;13084:2;13079:3;13020:67;:::i;:::-;13013:74;;13096:93;13185:3;13096:93;:::i;:::-;13214:2;13209:3;13205:12;13198:19;;12857:366;;;:::o;13229:::-;13371:3;13392:67;13456:2;13451:3;13392:67;:::i;:::-;13385:74;;13468:93;13557:3;13468:93;:::i;:::-;13586:2;13581:3;13577:12;13570:19;;13229:366;;;:::o;13601:::-;13743:3;13764:67;13828:2;13823:3;13764:67;:::i;:::-;13757:74;;13840:93;13929:3;13840:93;:::i;:::-;13958:2;13953:3;13949:12;13942:19;;13601:366;;;:::o;13973:::-;14115:3;14136:67;14200:2;14195:3;14136:67;:::i;:::-;14129:74;;14212:93;14301:3;14212:93;:::i;:::-;14330:2;14325:3;14321:12;14314:19;;13973:366;;;:::o;14345:::-;14487:3;14508:67;14572:2;14567:3;14508:67;:::i;:::-;14501:74;;14584:93;14673:3;14584:93;:::i;:::-;14702:2;14697:3;14693:12;14686:19;;14345:366;;;:::o;14717:::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:::-;15231:3;15252:67;15316:2;15311:3;15252:67;:::i;:::-;15245:74;;15328:93;15417:3;15328:93;:::i;:::-;15446:2;15441:3;15437:12;15430:19;;15089:366;;;:::o;15461:::-;15603:3;15624:67;15688:2;15683:3;15624:67;:::i;:::-;15617:74;;15700:93;15789:3;15700:93;:::i;:::-;15818:2;15813:3;15809:12;15802:19;;15461:366;;;:::o;15833:::-;15975:3;15996:67;16060:2;16055:3;15996:67;:::i;:::-;15989:74;;16072:93;16161:3;16072:93;:::i;:::-;16190:2;16185:3;16181:12;16174:19;;15833:366;;;:::o;16205:::-;16347:3;16368:67;16432:2;16427:3;16368:67;:::i;:::-;16361:74;;16444:93;16533:3;16444:93;:::i;:::-;16562:2;16557:3;16553:12;16546:19;;16205:366;;;:::o;16577:::-;16719:3;16740:67;16804:2;16799:3;16740:67;:::i;:::-;16733:74;;16816:93;16905:3;16816:93;:::i;:::-;16934:2;16929:3;16925:12;16918:19;;16577:366;;;:::o;16949:::-;17091:3;17112:67;17176:2;17171:3;17112:67;:::i;:::-;17105:74;;17188:93;17277:3;17188:93;:::i;:::-;17306:2;17301:3;17297:12;17290:19;;16949:366;;;:::o;17321:::-;17463:3;17484:67;17548:2;17543:3;17484:67;:::i;:::-;17477:74;;17560:93;17649:3;17560:93;:::i;:::-;17678:2;17673:3;17669:12;17662:19;;17321:366;;;:::o;17693:::-;17835:3;17856:67;17920:2;17915:3;17856:67;:::i;:::-;17849:74;;17932:93;18021:3;17932:93;:::i;:::-;18050:2;18045:3;18041:12;18034:19;;17693:366;;;:::o;18065:::-;18207:3;18228:67;18292:2;18287:3;18228:67;:::i;:::-;18221:74;;18304:93;18393:3;18304:93;:::i;:::-;18422:2;18417:3;18413:12;18406:19;;18065:366;;;:::o;18437:::-;18579:3;18600:67;18664:2;18659:3;18600:67;:::i;:::-;18593:74;;18676:93;18765:3;18676:93;:::i;:::-;18794:2;18789:3;18785:12;18778:19;;18437:366;;;:::o;18809:::-;18951:3;18972:67;19036:2;19031:3;18972:67;:::i;:::-;18965:74;;19048:93;19137:3;19048:93;:::i;:::-;19166:2;19161:3;19157:12;19150:19;;18809:366;;;:::o;19181:398::-;19340:3;19361:83;19442:1;19437:3;19361:83;:::i;:::-;19354:90;;19453:93;19542:3;19453:93;:::i;:::-;19571:1;19566:3;19562:11;19555:18;;19181:398;;;:::o;19585:366::-;19727:3;19748:67;19812:2;19807:3;19748:67;:::i;:::-;19741:74;;19824:93;19913:3;19824:93;:::i;:::-;19942:2;19937:3;19933:12;19926:19;;19585:366;;;:::o;19957:::-;20099:3;20120:67;20184:2;20179:3;20120:67;:::i;:::-;20113:74;;20196:93;20285:3;20196:93;:::i;:::-;20314:2;20309:3;20305:12;20298:19;;19957:366;;;:::o;20329:::-;20471:3;20492:67;20556:2;20551:3;20492:67;:::i;:::-;20485:74;;20568:93;20657:3;20568:93;:::i;:::-;20686:2;20681:3;20677:12;20670:19;;20329:366;;;:::o;20701:::-;20843:3;20864:67;20928:2;20923:3;20864:67;:::i;:::-;20857:74;;20940:93;21029:3;20940:93;:::i;:::-;21058:2;21053:3;21049:12;21042:19;;20701:366;;;:::o;21073:::-;21215:3;21236:67;21300:2;21295:3;21236:67;:::i;:::-;21229:74;;21312:93;21401:3;21312:93;:::i;:::-;21430:2;21425:3;21421:12;21414:19;;21073:366;;;:::o;21445:108::-;21522:24;21540:5;21522:24;:::i;:::-;21517:3;21510:37;21445:108;;:::o;21559:118::-;21646:24;21664:5;21646:24;:::i;:::-;21641:3;21634:37;21559:118;;:::o;21683:435::-;21863:3;21885:95;21976:3;21967:6;21885:95;:::i;:::-;21878:102;;21997:95;22088:3;22079:6;21997:95;:::i;:::-;21990:102;;22109:3;22102:10;;21683:435;;;;;:::o;22124:379::-;22308:3;22330:147;22473:3;22330:147;:::i;:::-;22323:154;;22494:3;22487:10;;22124:379;;;:::o;22509:222::-;22602:4;22640:2;22629:9;22625:18;22617:26;;22653:71;22721:1;22710:9;22706:17;22697:6;22653:71;:::i;:::-;22509:222;;;;:::o;22737:640::-;22932:4;22970:3;22959:9;22955:19;22947:27;;22984:71;23052:1;23041:9;23037:17;23028:6;22984:71;:::i;:::-;23065:72;23133:2;23122:9;23118:18;23109:6;23065:72;:::i;:::-;23147;23215:2;23204:9;23200:18;23191:6;23147:72;:::i;:::-;23266:9;23260:4;23256:20;23251:2;23240:9;23236:18;23229:48;23294:76;23365:4;23356:6;23294:76;:::i;:::-;23286:84;;22737:640;;;;;;;:::o;23383:373::-;23526:4;23564:2;23553:9;23549:18;23541:26;;23613:9;23607:4;23603:20;23599:1;23588:9;23584:17;23577:47;23641:108;23744:4;23735:6;23641:108;:::i;:::-;23633:116;;23383:373;;;;:::o;23762:210::-;23849:4;23887:2;23876:9;23872:18;23864:26;;23900:65;23962:1;23951:9;23947:17;23938:6;23900:65;:::i;:::-;23762:210;;;;:::o;23978:313::-;24091:4;24129:2;24118:9;24114:18;24106:26;;24178:9;24172:4;24168:20;24164:1;24153:9;24149:17;24142:47;24206:78;24279:4;24270:6;24206:78;:::i;:::-;24198:86;;23978:313;;;;:::o;24297:419::-;24463:4;24501:2;24490:9;24486:18;24478:26;;24550:9;24544:4;24540:20;24536:1;24525:9;24521:17;24514:47;24578:131;24704:4;24578:131;:::i;:::-;24570:139;;24297:419;;;:::o;24722:::-;24888:4;24926:2;24915:9;24911:18;24903:26;;24975:9;24969:4;24965:20;24961:1;24950:9;24946:17;24939:47;25003:131;25129:4;25003:131;:::i;:::-;24995:139;;24722:419;;;:::o;25147:::-;25313:4;25351:2;25340:9;25336:18;25328:26;;25400:9;25394:4;25390:20;25386:1;25375:9;25371:17;25364:47;25428:131;25554:4;25428:131;:::i;:::-;25420:139;;25147:419;;;:::o;25572:::-;25738:4;25776:2;25765:9;25761:18;25753:26;;25825:9;25819:4;25815:20;25811:1;25800:9;25796:17;25789:47;25853:131;25979:4;25853:131;:::i;:::-;25845:139;;25572:419;;;:::o;25997:::-;26163:4;26201:2;26190:9;26186:18;26178:26;;26250:9;26244:4;26240:20;26236:1;26225:9;26221:17;26214:47;26278:131;26404:4;26278:131;:::i;:::-;26270:139;;25997:419;;;:::o;26422:::-;26588:4;26626:2;26615:9;26611:18;26603:26;;26675:9;26669:4;26665:20;26661:1;26650:9;26646:17;26639:47;26703:131;26829:4;26703:131;:::i;:::-;26695:139;;26422:419;;;:::o;26847:::-;27013:4;27051:2;27040:9;27036:18;27028:26;;27100:9;27094:4;27090:20;27086:1;27075:9;27071:17;27064:47;27128:131;27254:4;27128:131;:::i;:::-;27120:139;;26847:419;;;:::o;27272:::-;27438:4;27476:2;27465:9;27461:18;27453:26;;27525:9;27519:4;27515:20;27511:1;27500:9;27496:17;27489:47;27553:131;27679:4;27553:131;:::i;:::-;27545:139;;27272:419;;;:::o;27697:::-;27863:4;27901:2;27890:9;27886:18;27878:26;;27950:9;27944:4;27940:20;27936:1;27925:9;27921:17;27914:47;27978:131;28104:4;27978:131;:::i;:::-;27970:139;;27697:419;;;:::o;28122:::-;28288:4;28326:2;28315:9;28311:18;28303:26;;28375:9;28369:4;28365:20;28361:1;28350:9;28346:17;28339:47;28403:131;28529:4;28403:131;:::i;:::-;28395:139;;28122:419;;;:::o;28547:::-;28713:4;28751:2;28740:9;28736:18;28728:26;;28800:9;28794:4;28790:20;28786:1;28775:9;28771:17;28764:47;28828:131;28954:4;28828:131;:::i;:::-;28820:139;;28547:419;;;:::o;28972:::-;29138:4;29176:2;29165:9;29161:18;29153:26;;29225:9;29219:4;29215:20;29211:1;29200:9;29196:17;29189:47;29253:131;29379:4;29253:131;:::i;:::-;29245:139;;28972:419;;;:::o;29397:::-;29563:4;29601:2;29590:9;29586:18;29578:26;;29650:9;29644:4;29640:20;29636:1;29625:9;29621:17;29614:47;29678:131;29804:4;29678:131;:::i;:::-;29670:139;;29397:419;;;:::o;29822:::-;29988:4;30026:2;30015:9;30011:18;30003:26;;30075:9;30069:4;30065:20;30061:1;30050:9;30046:17;30039:47;30103:131;30229:4;30103:131;:::i;:::-;30095:139;;29822:419;;;:::o;30247:::-;30413:4;30451:2;30440:9;30436:18;30428:26;;30500:9;30494:4;30490:20;30486:1;30475:9;30471:17;30464:47;30528:131;30654:4;30528:131;:::i;:::-;30520:139;;30247:419;;;:::o;30672:::-;30838:4;30876:2;30865:9;30861:18;30853:26;;30925:9;30919:4;30915:20;30911:1;30900:9;30896:17;30889:47;30953:131;31079:4;30953:131;:::i;:::-;30945:139;;30672:419;;;:::o;31097:::-;31263:4;31301:2;31290:9;31286:18;31278:26;;31350:9;31344:4;31340:20;31336:1;31325:9;31321:17;31314:47;31378:131;31504:4;31378:131;:::i;:::-;31370:139;;31097:419;;;:::o;31522:::-;31688:4;31726:2;31715:9;31711:18;31703:26;;31775:9;31769:4;31765:20;31761:1;31750:9;31746:17;31739:47;31803:131;31929:4;31803:131;:::i;:::-;31795:139;;31522:419;;;:::o;31947:::-;32113:4;32151:2;32140:9;32136:18;32128:26;;32200:9;32194:4;32190:20;32186:1;32175:9;32171:17;32164:47;32228:131;32354:4;32228:131;:::i;:::-;32220:139;;31947:419;;;:::o;32372:::-;32538:4;32576:2;32565:9;32561:18;32553:26;;32625:9;32619:4;32615:20;32611:1;32600:9;32596:17;32589:47;32653:131;32779:4;32653:131;:::i;:::-;32645:139;;32372:419;;;:::o;32797:::-;32963:4;33001:2;32990:9;32986:18;32978:26;;33050:9;33044:4;33040:20;33036:1;33025:9;33021:17;33014:47;33078:131;33204:4;33078:131;:::i;:::-;33070:139;;32797:419;;;:::o;33222:::-;33388:4;33426:2;33415:9;33411:18;33403:26;;33475:9;33469:4;33465:20;33461:1;33450:9;33446:17;33439:47;33503:131;33629:4;33503:131;:::i;:::-;33495:139;;33222:419;;;:::o;33647:::-;33813:4;33851:2;33840:9;33836:18;33828:26;;33900:9;33894:4;33890:20;33886:1;33875:9;33871:17;33864:47;33928:131;34054:4;33928:131;:::i;:::-;33920:139;;33647:419;;;:::o;34072:::-;34238:4;34276:2;34265:9;34261:18;34253:26;;34325:9;34319:4;34315:20;34311:1;34300:9;34296:17;34289:47;34353:131;34479:4;34353:131;:::i;:::-;34345:139;;34072:419;;;:::o;34497:::-;34663:4;34701:2;34690:9;34686:18;34678:26;;34750:9;34744:4;34740:20;34736:1;34725:9;34721:17;34714:47;34778:131;34904:4;34778:131;:::i;:::-;34770:139;;34497:419;;;:::o;34922:::-;35088:4;35126:2;35115:9;35111:18;35103:26;;35175:9;35169:4;35165:20;35161:1;35150:9;35146:17;35139:47;35203:131;35329:4;35203:131;:::i;:::-;35195:139;;34922:419;;;:::o;35347:::-;35513:4;35551:2;35540:9;35536:18;35528:26;;35600:9;35594:4;35590:20;35586:1;35575:9;35571:17;35564:47;35628:131;35754:4;35628:131;:::i;:::-;35620:139;;35347:419;;;:::o;35772:::-;35938:4;35976:2;35965:9;35961:18;35953:26;;36025:9;36019:4;36015:20;36011:1;36000:9;35996:17;35989:47;36053:131;36179:4;36053:131;:::i;:::-;36045:139;;35772:419;;;:::o;36197:222::-;36290:4;36328:2;36317:9;36313:18;36305:26;;36341:71;36409:1;36398:9;36394:17;36385:6;36341:71;:::i;:::-;36197:222;;;;:::o;36425:129::-;36459:6;36486:20;;:::i;:::-;36476:30;;36515:33;36543:4;36535:6;36515:33;:::i;:::-;36425:129;;;:::o;36560:75::-;36593:6;36626:2;36620:9;36610:19;;36560:75;:::o;36641:307::-;36702:4;36792:18;36784:6;36781:30;36778:56;;;36814:18;;:::i;:::-;36778:56;36852:29;36874:6;36852:29;:::i;:::-;36844:37;;36936:4;36930;36926:15;36918:23;;36641:307;;;:::o;36954:308::-;37016:4;37106:18;37098:6;37095:30;37092:56;;;37128:18;;:::i;:::-;37092:56;37166:29;37188:6;37166:29;:::i;:::-;37158:37;;37250:4;37244;37240:15;37232:23;;36954:308;;;:::o;37268:132::-;37335:4;37358:3;37350:11;;37388:4;37383:3;37379:14;37371:22;;37268:132;;;:::o;37406:114::-;37473:6;37507:5;37501:12;37491:22;;37406:114;;;:::o;37526:98::-;37577:6;37611:5;37605:12;37595:22;;37526:98;;;:::o;37630:99::-;37682:6;37716:5;37710:12;37700:22;;37630:99;;;:::o;37735:113::-;37805:4;37837;37832:3;37828:14;37820:22;;37735:113;;;:::o;37854:184::-;37953:11;37987:6;37982:3;37975:19;38027:4;38022:3;38018:14;38003:29;;37854:184;;;;:::o;38044:168::-;38127:11;38161:6;38156:3;38149:19;38201:4;38196:3;38192:14;38177:29;;38044:168;;;;:::o;38218:147::-;38319:11;38356:3;38341:18;;38218:147;;;;:::o;38371:169::-;38455:11;38489:6;38484:3;38477:19;38529:4;38524:3;38520:14;38505:29;;38371:169;;;;:::o;38546:148::-;38648:11;38685:3;38670:18;;38546:148;;;;:::o;38700:305::-;38740:3;38759:20;38777:1;38759:20;:::i;:::-;38754:25;;38793:20;38811:1;38793:20;:::i;:::-;38788:25;;38947:1;38879:66;38875:74;38872:1;38869:81;38866:107;;;38953:18;;:::i;:::-;38866:107;38997:1;38994;38990:9;38983:16;;38700:305;;;;:::o;39011:185::-;39051:1;39068:20;39086:1;39068:20;:::i;:::-;39063:25;;39102:20;39120:1;39102:20;:::i;:::-;39097:25;;39141:1;39131:35;;39146:18;;:::i;:::-;39131:35;39188:1;39185;39181:9;39176:14;;39011:185;;;;:::o;39202:348::-;39242:7;39265:20;39283:1;39265:20;:::i;:::-;39260:25;;39299:20;39317:1;39299:20;:::i;:::-;39294:25;;39487:1;39419:66;39415:74;39412:1;39409:81;39404:1;39397:9;39390:17;39386:105;39383:131;;;39494:18;;:::i;:::-;39383:131;39542:1;39539;39535:9;39524:20;;39202:348;;;;:::o;39556:191::-;39596:4;39616:20;39634:1;39616:20;:::i;:::-;39611:25;;39650:20;39668:1;39650:20;:::i;:::-;39645:25;;39689:1;39686;39683:8;39680:34;;;39694:18;;:::i;:::-;39680:34;39739:1;39736;39732:9;39724:17;;39556:191;;;;:::o;39753:96::-;39790:7;39819:24;39837:5;39819:24;:::i;:::-;39808:35;;39753:96;;;:::o;39855:90::-;39889:7;39932:5;39925:13;39918:21;39907:32;;39855:90;;;:::o;39951:149::-;39987:7;40027:66;40020:5;40016:78;40005:89;;39951:149;;;:::o;40106:126::-;40143:7;40183:42;40176:5;40172:54;40161:65;;40106:126;;;:::o;40238:77::-;40275:7;40304:5;40293:16;;40238:77;;;:::o;40321:154::-;40405:6;40400:3;40395;40382:30;40467:1;40458:6;40453:3;40449:16;40442:27;40321:154;;;:::o;40481:307::-;40549:1;40559:113;40573:6;40570:1;40567:13;40559:113;;;40658:1;40653:3;40649:11;40643:18;40639:1;40634:3;40630:11;40623:39;40595:2;40592:1;40588:10;40583:15;;40559:113;;;40690:6;40687:1;40684:13;40681:101;;;40770:1;40761:6;40756:3;40752:16;40745:27;40681:101;40530:258;40481:307;;;:::o;40794:320::-;40838:6;40875:1;40869:4;40865:12;40855:22;;40922:1;40916:4;40912:12;40943:18;40933:81;;40999:4;40991:6;40987:17;40977:27;;40933:81;41061:2;41053:6;41050:14;41030:18;41027:38;41024:84;;;41080:18;;:::i;:::-;41024:84;40845:269;40794:320;;;:::o;41120:281::-;41203:27;41225:4;41203:27;:::i;:::-;41195:6;41191:40;41333:6;41321:10;41318:22;41297:18;41285:10;41282:34;41279:62;41276:88;;;41344:18;;:::i;:::-;41276:88;41384:10;41380:2;41373:22;41163:238;41120:281;;:::o;41407:233::-;41446:3;41469:24;41487:5;41469:24;:::i;:::-;41460:33;;41515:66;41508:5;41505:77;41502:103;;;41585:18;;:::i;:::-;41502:103;41632:1;41625:5;41621:13;41614:20;;41407:233;;;:::o;41646:176::-;41678:1;41695:20;41713:1;41695:20;:::i;:::-;41690:25;;41729:20;41747:1;41729:20;:::i;:::-;41724:25;;41768:1;41758:35;;41773:18;;:::i;:::-;41758:35;41814:1;41811;41807:9;41802:14;;41646:176;;;;:::o;41828:180::-;41876:77;41873:1;41866:88;41973:4;41970:1;41963:15;41997:4;41994:1;41987:15;42014:180;42062:77;42059:1;42052:88;42159:4;42156:1;42149:15;42183:4;42180:1;42173:15;42200:180;42248:77;42245:1;42238:88;42345:4;42342:1;42335:15;42369:4;42366:1;42359:15;42386:180;42434:77;42431:1;42424:88;42531:4;42528:1;42521:15;42555:4;42552:1;42545:15;42572:180;42620:77;42617:1;42610:88;42717:4;42714:1;42707:15;42741:4;42738:1;42731:15;42758:180;42806:77;42803:1;42796:88;42903:4;42900:1;42893:15;42927:4;42924:1;42917:15;42944:117;43053:1;43050;43043:12;43067:117;43176:1;43173;43166:12;43190:117;43299:1;43296;43289:12;43313:117;43422:1;43419;43412:12;43436:117;43545:1;43542;43535:12;43559:117;43668:1;43665;43658:12;43682:102;43723:6;43774:2;43770:7;43765:2;43758:5;43754:14;43750:28;43740:38;;43682:102;;;:::o;43790:230::-;43930:34;43926:1;43918:6;43914:14;43907:58;43999:13;43994:2;43986:6;43982:15;43975:38;43790:230;:::o;44026:237::-;44166:34;44162:1;44154:6;44150:14;44143:58;44235:20;44230:2;44222:6;44218:15;44211:45;44026:237;:::o;44269:225::-;44409:34;44405:1;44397:6;44393:14;44386:58;44478:8;44473:2;44465:6;44461:15;44454:33;44269:225;:::o;44500:178::-;44640:30;44636:1;44628:6;44624:14;44617:54;44500:178;:::o;44684:223::-;44824:34;44820:1;44812:6;44808:14;44801:58;44893:6;44888:2;44880:6;44876:15;44869:31;44684:223;:::o;44913:175::-;45053:27;45049:1;45041:6;45037:14;45030:51;44913:175;:::o;45094:170::-;45234:22;45230:1;45222:6;45218:14;45211:46;45094:170;:::o;45270:224::-;45410:34;45406:1;45398:6;45394:14;45387:58;45479:7;45474:2;45466:6;45462:15;45455:32;45270:224;:::o;45500:231::-;45640:34;45636:1;45628:6;45624:14;45617:58;45709:14;45704:2;45696:6;45692:15;45685:39;45500:231;:::o;45737:296::-;45877:34;45873:1;45865:6;45861:14;45854:58;45946:34;45941:2;45933:6;45929:15;45922:59;46015:10;46010:2;46002:6;45998:15;45991:35;45737:296;:::o;46039:243::-;46179:34;46175:1;46167:6;46163:14;46156:58;46248:26;46243:2;46235:6;46231:15;46224:51;46039:243;:::o;46288:229::-;46428:34;46424:1;46416:6;46412:14;46405:58;46497:12;46492:2;46484:6;46480:15;46473:37;46288:229;:::o;46523:228::-;46663:34;46659:1;46651:6;46647:14;46640:58;46732:11;46727:2;46719:6;46715:15;46708:36;46523:228;:::o;46757:182::-;46897:34;46893:1;46885:6;46881:14;46874:58;46757:182;:::o;46945:231::-;47085:34;47081:1;47073:6;47069:14;47062:58;47154:14;47149:2;47141:6;47137:15;47130:39;46945:231;:::o;47182:234::-;47322:34;47318:1;47310:6;47306:14;47299:58;47391:17;47386:2;47378:6;47374:15;47367:42;47182:234;:::o;47422:182::-;47562:34;47558:1;47550:6;47546:14;47539:58;47422:182;:::o;47610:228::-;47750:34;47746:1;47738:6;47734:14;47727:58;47819:11;47814:2;47806:6;47802:15;47795:36;47610:228;:::o;47844:234::-;47984:34;47980:1;47972:6;47968:14;47961:58;48053:17;48048:2;48040:6;48036:15;48029:42;47844:234;:::o;48084:173::-;48224:25;48220:1;48212:6;48208:14;48201:49;48084:173;:::o;48263:220::-;48403:34;48399:1;48391:6;48387:14;48380:58;48472:3;48467:2;48459:6;48455:15;48448:28;48263:220;:::o;48489:224::-;48629:34;48625:1;48617:6;48613:14;48606:58;48698:7;48693:2;48685:6;48681:15;48674:32;48489:224;:::o;48719:241::-;48859:34;48855:1;48847:6;48843:14;48836:58;48928:24;48923:2;48915:6;48911:15;48904:49;48719:241;:::o;48966:114::-;;:::o;49086:166::-;49226:18;49222:1;49214:6;49210:14;49203:42;49086:166;:::o;49258:236::-;49398:34;49394:1;49386:6;49382:14;49375:58;49467:19;49462:2;49454:6;49450:15;49443:44;49258:236;:::o;49500:231::-;49640:34;49636:1;49628:6;49624:14;49617:58;49709:14;49704:2;49696:6;49692:15;49685:39;49500:231;:::o;49737:239::-;49877:34;49873:1;49865:6;49861:14;49854:58;49946:22;49941:2;49933:6;49929:15;49922:47;49737:239;:::o;49982:243::-;50122:34;50118:1;50110:6;50106:14;50099:58;50191:26;50186:2;50178:6;50174:15;50167:51;49982:243;:::o;50231:122::-;50304:24;50322:5;50304:24;:::i;:::-;50297:5;50294:35;50284:63;;50343:1;50340;50333:12;50284:63;50231:122;:::o;50359:116::-;50429:21;50444:5;50429:21;:::i;:::-;50422:5;50419:32;50409:60;;50465:1;50462;50455:12;50409:60;50359:116;:::o;50481:120::-;50553:23;50570:5;50553:23;:::i;:::-;50546:5;50543:34;50533:62;;50591:1;50588;50581:12;50533:62;50481:120;:::o;50607:122::-;50680:24;50698:5;50680:24;:::i;:::-;50673:5;50670:35;50660:63;;50719:1;50716;50709:12;50660:63;50607:122;:::o
Swarm Source
ipfs://6bc4a5670aca8e30863260b29e1968def5ec9cb24376e70490373f4305df5c40
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.