Token My Collection uNcEBE4jeOTabMF8eTyj
Polygon Sponsored slots available. Book your slot here!
Overview ERC-721
Total Supply:
1 my-collection-uncebe4jeotabmf8etyj
Holders:
1 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x5d81bb66DA59a397921EA6e92Fc121266aF07437
Contract Name:
ERC721MintableTradeable
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-19 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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); } /** * @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; } } /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. 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; } } } /** * @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); } /** * @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; } /** * @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); } /** * @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); } /** * @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}. 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 { // solhint-disable-next-line no-inline-assembly 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` 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 { } } /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } /** * @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(); } } contract ERC721Mintable is ERC721, ERC721Enumerable, ERC721URIStorage, IERC2981, Ownable { uint256 constant PERCENTAGE_DIVISOR = 100000; // 1000 * 100, 1000 to get percentage and 100 to get fraction uint256 public royaltyPercentage; // decimal 3 digits address public royaltyRecipient; string public contractURI; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; // Mapping from token ID to file hash mapping (uint256 => bytes32) private _fileHash; // Mapping for minters mapping(address => bool) private _minters; string private _baseTokenURI; bool private mintingFrozen = false; constructor( string memory name, string memory symbol, string memory baseTokenURI, string memory contractURIValue, uint256 royaltyPercent, address royaltyReceiver ) ERC721(name, symbol) { royaltyPercentage = royaltyPercent; royaltyRecipient = royaltyReceiver; _baseTokenURI = baseTokenURI; contractURI = contractURIValue; _tokenIdTracker.increment(); // start with 1 } function version() external virtual view returns (uint256) { return 5; } /** * @dev Throws if called by any account other than the owner or minter. */ modifier onlyMinter() virtual { require(_minters[_msgSender()] || owner() == _msgSender(), "ERC721Mintable: caller is not minter or owner"); _; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function baseURI() public view virtual returns (string memory) { return _baseURI(); } function getFileHash(uint256 tokenId) public view virtual returns (bytes32) { return _fileHash[tokenId]; } function isMinter(address minter) public view virtual returns (bool) { return _minters[minter]; } function setMinter(address minter, bool canMint) public virtual onlyOwner { _minters[minter] = canMint; } function isMintingFrozen() public view virtual returns (bool) { return mintingFrozen; } function freezeMinting() public virtual onlyOwner { mintingFrozen = true; } function _getCurrentTokenId() internal view virtual returns (uint256) { return _tokenIdTracker.current(); } function mint(address to, string memory tokenRelativeURI) public virtual onlyMinter { _mintInternal(to, tokenRelativeURI, bytes32(0)); } function mintWithHash(address to, string memory tokenRelativeURI, bytes32 fileHash) public virtual onlyMinter { _mintInternal(to, tokenRelativeURI, fileHash); } function mintBatch(address to, string[] memory tokenRelativeURIs, bytes32[] memory fileHashes) public virtual onlyMinter { for(uint i = 0; i < tokenRelativeURIs.length; i++) { bytes32 fileHash = i < fileHashes.length? fileHashes[i]: bytes32(0); _mintInternal(to, tokenRelativeURIs[i], fileHash); } } function _mintInternal(address to, string memory tokenRelativeURI, bytes32 fileHash) internal virtual { require(mintingFrozen == false, 'ERC1155Mintable: No more minting allowed.'); _mint(to, _tokenIdTracker.current()); _setTokenURI(_tokenIdTracker.current(), tokenRelativeURI); if (fileHash != bytes32(0)) { _fileHash[_tokenIdTracker.current()] = fileHash; } _tokenIdTracker.increment(); } function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function burn(uint256 tokenId) public virtual { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Mintable: caller is not owner nor approved"); _burn(tokenId); } /** * @dev See {IERC2981-royaltyInfo}. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view override returns (address receiver, uint256 royaltyAmount) { royaltyAmount = (salePrice * royaltyPercentage) / PERCENTAGE_DIVISOR; return(royaltyRecipient, royaltyAmount); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } } contract Executable is Ownable { // Mapping for NFTically Executors mapping(address => bool) private _executors; // array with all Executors address[] private _allExecutors; // ability to disable all Executors per token owner mapping(address => bool) private _disableAllExecutors; event ExecutorUpdated(address indexed executor, bool canExecute); constructor(address executor) { _executors[executor] = true; _allExecutors.push(executor); emit ExecutorUpdated(executor, true); } function isExecutor(address executor) public view virtual returns (bool) { return _executors[executor]; } function getAllExecutors() public view virtual returns (address[] memory) { return _allExecutors; } function areExecutorsDisabled(address owner) public view virtual returns (bool) { return _disableAllExecutors[owner]; } function setExecutor(address executor, bool canExecute) public virtual { require(_executors[_msgSender()], "Executable: caller is not executor"); _setExecutor(executor, canExecute); } function _setExecutor(address executor, bool canExecute) internal virtual { _executors[executor] = canExecute; // push executor in _allExecutors only if it does not exists already uint i; for(i = 0; i < _allExecutors.length; i++) { if(_allExecutors[i] == executor) break; } if (i >= _allExecutors.length) { _allExecutors.push(executor); } emit ExecutorUpdated(executor, canExecute); } // enable/disble all Executors for the caller tokens function disableAllExecutorsForMe(bool disableAll) public virtual { _disableAllExecutors[_msgSender()] = disableAll; } } contract ERC721MintableTradeable is ERC721Mintable, Executable { constructor( string memory name, string memory symbol, string memory baseTokenURI, string memory contractURIValue, uint256 royaltyPercent, address royaltyReceiver, address executor ) ERC721Mintable(name, symbol, baseTokenURI, contractURIValue, royaltyPercent, royaltyReceiver) Executable(executor) {} // executors, owner or minter can mint. modifier onlyMinter() virtual override { require(isExecutor(_msgSender()) || isMinter(_msgSender()) || owner() == _msgSender(), "ERC721MintableTradeable: caller is not executor/minter/owner"); _; } // check if given address can mint (for external use) function canMint(address addressToCheck) external view virtual returns (bool) { return isExecutor(addressToCheck) || isMinter(addressToCheck) || owner() == addressToCheck; } // override to make few functionality executable through Executors to allow meta transactions function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { if ( ! areExecutorsDisabled(owner) && isExecutor(operator)) { return true; } return super.isApprovedForAll(owner, operator); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"string","name":"contractURIValue","type":"string"},{"internalType":"uint256","name":"royaltyPercent","type":"uint256"},{"internalType":"address","name":"royaltyReceiver","type":"address"},{"internalType":"address","name":"executor","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":false,"internalType":"bool","name":"canExecute","type":"bool"}],"name":"ExecutorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"areExecutorsDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressToCheck","type":"address"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"disableAll","type":"bool"}],"name":"disableAllExecutorsForMe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExecutors","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFileHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"executor","type":"address"}],"name":"isExecutor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintingFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"tokenRelativeURI","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string[]","name":"tokenRelativeURIs","type":"string[]"},{"internalType":"bytes32[]","name":"fileHashes","type":"bytes32[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"tokenRelativeURI","type":"string"},{"internalType":"bytes32","name":"fileHash","type":"bytes32"}],"name":"mintWithHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"executor","type":"address"},{"internalType":"bool","name":"canExecute","type":"bool"}],"name":"setExecutor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"canMint","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526013805460ff191690553480156200001b57600080fd5b5060405162003b2e38038062003b2e8339810160408190526200003e916200036f565b80878787878787858581600090805190602001906200005f929190620001f5565b50805162000075906001906020840190620001f5565b50505060006200008a620001e860201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c829055600d80546001600160a01b0319166001600160a01b03831617905583516200010d906012906020870190620001f5565b5082516200012390600e906020860190620001f5565b506200013b600f620001ec60201b620018941760201c565b505050506001600160a01b0383166000818152601460209081526040808320805460ff1916600190811790915560158054808301825594527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47590930180546001600160a01b03191685179055519182529193507f9fdbc2d48b8a0db2f62663bf9312ad02f5b1f6414ad600b55a247d09aeec3ea292500160405180910390a25050505050505050620004aa565b3390565b80546001019055565b828054620002039062000457565b90600052602060002090601f01602090048101928262000227576000855562000272565b82601f106200024257805160ff191683800117855562000272565b8280016001018555821562000272579182015b828111156200027257825182559160200191906001019062000255565b506200028092915062000284565b5090565b5b8082111562000280576000815560010162000285565b80516001600160a01b0381168114620002b357600080fd5b919050565b600082601f830112620002ca57600080fd5b81516001600160401b0380821115620002e757620002e762000494565b604051601f8301601f19908116603f0116810190828211818310171562000312576200031262000494565b816040528381526020925086838588010111156200032f57600080fd5b600091505b8382101562000353578582018301518183018401529082019062000334565b83821115620003655760008385830101525b9695505050505050565b600080600080600080600060e0888a0312156200038b57600080fd5b87516001600160401b0380821115620003a357600080fd5b620003b18b838c01620002b8565b985060208a0151915080821115620003c857600080fd5b620003d68b838c01620002b8565b975060408a0151915080821115620003ed57600080fd5b620003fb8b838c01620002b8565b965060608a01519150808211156200041257600080fd5b50620004218a828b01620002b8565b945050608088015192506200043960a089016200029b565b91506200044960c089016200029b565b905092959891949750929550565b600181811c908216806200046c57607f821691505b602082108114156200048e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61367480620004ba6000396000f3fe608060405234801561001057600080fd5b50600436106102c85760003560e01c80638a7a4b9f1161017b578063d096bc39116100d8578063e985e9c51161008c578063ee40974a11610071578063ee40974a14610637578063f2fde38b14610683578063fdfebffe1461069657600080fd5b8063e985e9c514610604578063eb1311351461061757600080fd5b8063d42db6b9116100bd578063d42db6b9146105b0578063debfda30146105c3578063e8a3d485146105fc57600080fd5b8063d096bc3914610564578063d0def5211461059d57600080fd5b8063b88d4fde1161012f578063c2ba474411610114578063c2ba47441461052b578063c87b56dd1461053e578063cf456ae71461055157600080fd5b8063b88d4fde14610510578063c013f30f1461052357600080fd5b806395d89b411161016057806395d89b41146104bc578063a22cb465146104c4578063aa271e1a146104d757600080fd5b80638a7a4b9f146104935780638da5cb5b1461049e57600080fd5b806342842e0e116102295780636352211e116101dd57806370a08231116101c257806370a082311461046f578063715018a6146104825780638a71bb2d1461048a57600080fd5b80636352211e146104545780636c0360eb1461046757600080fd5b80634c00de821161020e5780634c00de821461041a5780634f6ccce71461043a57806354fd4d501461044d57600080fd5b806342842e0e146103f457806342966c681461040757600080fd5b80631e1bff3f116102805780632a55205a116102655780632a55205a1461038f5780632f745c59146103ce57806335321552146103e157600080fd5b80631e1bff3f1461036957806323b872dd1461037c57600080fd5b8063081812fc116102b1578063081812fc1461030a578063095ea7b31461034257806318160ddd1461035757600080fd5b806301ffc9a7146102cd57806306fdde03146102f5575b600080fd5b6102e06102db3660046131c1565b6106ab565b60405190151581526020015b60405180910390f35b6102fd610707565b6040516102ec9190613352565b61031d6103183660046131fb565b610799565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102ec565b61035561035036600461317c565b61085e565b005b6008545b6040519081526020016102ec565b6103556103773660046130ad565b6109b7565b61035561038a366004612f09565b610a4a565b6103a261039d366004613214565b610ad2565b6040805173ffffffffffffffffffffffffffffffffffffffff90931683526020830191909152016102ec565b61035b6103dc36600461317c565b610b14565b6103556103ef366004612fc1565b610bc9565b610355610402366004612f09565b610cec565b6103556104153660046131fb565b610d07565b600d5461031d9073ffffffffffffffffffffffffffffffffffffffff1681565b61035b6104483660046131fb565b610d8e565b600561035b565b61031d6104623660046131fb565b610e32565b6102fd610eca565b61035b61047d366004612ebb565b610ed9565b610355610f8d565b61035b600c5481565b60135460ff166102e0565b600b5473ffffffffffffffffffffffffffffffffffffffff1661031d565b6102fd611063565b6103556104d23660046130ad565b611072565b6102e06104e5366004612ebb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205460ff1690565b61035561051e366004612f45565b61116f565b6103556111f7565b6102e0610539366004612ebb565b61128b565b6102fd61054c3660046131fb565b61133d565b61035561055f3660046130ad565b611348565b6102e0610572366004612ebb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526016602052604090205460ff1690565b6103556105ab3660046130d7565b611405565b6103556105be366004613125565b6114bd565b6102e06105d1366004612ebb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526014602052604090205460ff1690565b6102fd611574565b6102e0610612366004612ed6565b611602565b61035b6106253660046131fb565b60009081526010602052604090205490565b6103556106453660046131a6565b33600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610355610691366004612ebb565b6116a8565b61069e611826565b6040516102ec91906132f8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061070157506107018261189d565b92915050565b60606000805461071690613484565b80601f016020809104026020016040519081016040528092919081815260200182805461074290613484565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166108355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061086982610e32565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161082c565b3373ffffffffffffffffffffffffffffffffffffffff8216148061093657506109368133611602565b6109a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082c565b6109b283836118f3565b505050565b3360009081526014602052604090205460ff16610a3c5760405162461bcd60e51b815260206004820152602260248201527f45786563757461626c653a2063616c6c6572206973206e6f742065786563757460448201527f6f72000000000000000000000000000000000000000000000000000000000000606482015260840161082c565b610a468282611993565b5050565b610a55335b82611b27565b610ac75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082c565b6109b2838383611c50565b600080620186a0600c5484610ae79190613404565b610af191906133f0565b600d5473ffffffffffffffffffffffffffffffffffffffff169590945092505050565b6000610b1f83610ed9565b8210610b935760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161082c565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b610bd2336105d1565b80610be15750610be1336104e5565b80610c035750600b5473ffffffffffffffffffffffffffffffffffffffff1633145b610c755760405162461bcd60e51b815260206004820152603c60248201527f4552433732314d696e7461626c65547261646561626c653a2063616c6c65722060448201527f6973206e6f74206578656375746f722f6d696e7465722f6f776e657200000000606482015260840161082c565b60005b8251811015610ce657600082518210610c92576000610cad565b828281518110610ca457610ca46135b2565b60200260200101515b9050610cd385858481518110610cc557610cc56135b2565b602002602001015183611e8e565b5080610cde816134d8565b915050610c78565b50505050565b6109b28383836040518060200160405280600081525061116f565b610d1033610a4f565b610d825760405162461bcd60e51b815260206004820152603060248201527f4552433732314d696e7461626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000606482015260840161082c565b610d8b81611f5f565b50565b6000610d9960085490565b8210610e0d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161082c565b60088281548110610e2057610e206135b2565b90600052602060002001549050919050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806107015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161082c565b6060610ed4611f68565b905090565b600073ffffffffffffffffffffffffffffffffffffffff8216610f645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161082c565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600b5473ffffffffffffffffffffffffffffffffffffffff163314610ff45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b600b5460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60606001805461071690613484565b73ffffffffffffffffffffffffffffffffffffffff82163314156110d85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082c565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111793383611b27565b6111eb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082c565b610ce684848484611f77565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461125e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff811660009081526014602052604081205460ff16806112e4575073ffffffffffffffffffffffffffffffffffffffff821660009081526011602052604090205460ff165b8061070157508173ffffffffffffffffffffffffffffffffffffffff16611320600b5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161492915050565b606061070182612000565b600b5473ffffffffffffffffffffffffffffffffffffffff1633146113af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61140e336105d1565b8061141d575061141d336104e5565b8061143f5750600b5473ffffffffffffffffffffffffffffffffffffffff1633145b6114b15760405162461bcd60e51b815260206004820152603c60248201527f4552433732314d696e7461626c65547261646561626c653a2063616c6c65722060448201527f6973206e6f74206578656375746f722f6d696e7465722f6f776e657200000000606482015260840161082c565b610a4682826000611e8e565b6114c6336105d1565b806114d557506114d5336104e5565b806114f75750600b5473ffffffffffffffffffffffffffffffffffffffff1633145b6115695760405162461bcd60e51b815260206004820152603c60248201527f4552433732314d696e7461626c65547261646561626c653a2063616c6c65722060448201527f6973206e6f74206578656375746f722f6d696e7465722f6f776e657200000000606482015260840161082c565b6109b2838383611e8e565b600e805461158190613484565b80601f01602080910402602001604051908101604052809291908181526020018280546115ad90613484565b80156115fa5780601f106115cf576101008083540402835291602001916115fa565b820191906000526020600020905b8154815290600101906020018083116115dd57829003601f168201915b505050505081565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604081205460ff1615801561165d575073ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff165b1561166a57506001610701565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461170f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b73ffffffffffffffffffffffffffffffffffffffff81166117985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161082c565b600b5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6060601580548060200260200160405190810160405280929190818152602001828054801561078f57602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311611860575050505050905090565b80546001019055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061070157506107018261218b565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061194d82610e32565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260146020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168315151790555b601554811015611a56578273ffffffffffffffffffffffffffffffffffffffff1660158281548110611a1757611a176135b2565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff161415611a4457611a56565b80611a4e816134d8565b9150506119e3565b6015548110611ad057601580546001810182556000919091527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4750180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85161790555b8273ffffffffffffffffffffffffffffffffffffffff167f9fdbc2d48b8a0db2f62663bf9312ad02f5b1f6414ad600b55a247d09aeec3ea283604051611b1a911515815260200190565b60405180910390a2505050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611bbe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161082c565b6000611bc983610e32565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c3857508373ffffffffffffffffffffffffffffffffffffffff16611c2084610799565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c485750611c488185611602565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7082610e32565b73ffffffffffffffffffffffffffffffffffffffff1614611cf95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161082c565b73ffffffffffffffffffffffffffffffffffffffff8216611d815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161082c565b611d8c83838361226e565b611d976000826118f3565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611dcd908490613441565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611e089084906133d8565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60135460ff1615611f075760405162461bcd60e51b815260206004820152602960248201527f455243313135354d696e7461626c653a204e6f206d6f7265206d696e74696e6760448201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000606482015260840161082c565b611f1983611f14600f5490565b612279565b611f2b611f25600f5490565b83612413565b8015611f51578060106000611f3f600f5490565b81526020810191909152604001600020555b6109b2600f80546001019055565b610d8b816124c9565b60606012805461071690613484565b611f82848484611c50565b611f8e84848484612509565b610ce65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161082c565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661209a5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f722060448201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000606482015260840161082c565b6000828152600a6020526040812080546120b390613484565b80601f01602080910402602001604051908101604052809291908181526020018280546120df90613484565b801561212c5780601f106121015761010080835404028352916020019161212c565b820191906000526020600020905b81548152906001019060200180831161210f57829003601f168201915b50505050509050600061213d611f68565b9050805160001415612150575092915050565b81511561218257808260405160200161216a929190613280565b60405160208183030381529060405292505050919050565b611c48846126ee565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061221e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061070157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610701565b6109b28383836127e3565b73ffffffffffffffffffffffffffffffffffffffff82166122dc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082c565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561234e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082c565b61235a6000838361226e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906123909084906133d8565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008281526002602052604090205473ffffffffffffffffffffffffffffffffffffffff166124aa5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201527f6578697374656e7420746f6b656e000000000000000000000000000000000000606482015260840161082c565b6000828152600a6020908152604090912082516109b292840190612cab565b6124d2816128e9565b6000818152600a6020526040902080546124eb90613484565b159050610d8b576000818152600a60205260408120610d8b91612d2f565b600073ffffffffffffffffffffffffffffffffffffffff84163b156126e3576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125809033908990889088906004016132af565b602060405180830381600087803b15801561259a57600080fd5b505af19250505080156125e8575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526125e5918101906131de565b60015b612698573d808015612616576040519150601f19603f3d011682016040523d82523d6000602084013e61261b565b606091505b5080516126905760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161082c565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611c48565b506001949350505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166127885760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161082c565b6000612792611f68565b905060008151116127b257604051806020016040528060008152506116a1565b806127bc846129c2565b6040516020016127cd929190613280565b6040516020818303038152906040529392505050565b73ffffffffffffffffffffffffffffffffffffffff831661284b5761284681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612888565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612888576128888382612af4565b73ffffffffffffffffffffffffffffffffffffffff82166128ac576109b281612bab565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146109b2576109b28282612c5a565b60006128f482610e32565b90506129028160008461226e565b61290d6000836118f3565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600360205260408120805460019290612943908490613441565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081612a0257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612a2c5780612a16816134d8565b9150612a259050600a836133f0565b9150612a06565b60008167ffffffffffffffff811115612a4757612a476135e1565b6040519080825280601f01601f191660200182016040528015612a71576020820181803683370190505b5090505b8415611c4857612a86600183613441565b9150612a93600a86613511565b612a9e9060306133d8565b60f81b818381518110612ab357612ab36135b2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612aed600a866133f0565b9450612a75565b60006001612b0184610ed9565b612b0b9190613441565b600083815260076020526040902054909150808214612b6b5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090612bbd90600190613441565b60008381526009602052604081205460088054939450909284908110612be557612be56135b2565b906000526020600020015490508060088381548110612c0657612c066135b2565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c3e57612c3e613583565b6001900381819060005260206000200160009055905550505050565b6000612c6583610ed9565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612cb790613484565b90600052602060002090601f016020900481019282612cd95760008555612d1f565b82601f10612cf257805160ff1916838001178555612d1f565b82800160010185558215612d1f579182015b82811115612d1f578251825591602001919060010190612d04565b50612d2b929150612d65565b5090565b508054612d3b90613484565b6000825580601f10612d4b575050565b601f016020900490600052602060002090810190610d8b91905b5b80821115612d2b5760008155600101612d66565b600067ffffffffffffffff831115612d9457612d946135e1565b612dc560207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601613365565b9050828152838383011115612dd957600080fd5b828260208301376000602084830101529392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114612e1457600080fd5b919050565b600082601f830112612e2a57600080fd5b81356020612e3f612e3a836133b4565b613365565b80838252828201915082860187848660051b8901011115612e5f57600080fd5b60005b85811015612e7e57813584529284019290840190600101612e62565b5090979650505050505050565b80358015158114612e1457600080fd5b600082601f830112612eac57600080fd5b6116a183833560208501612d7a565b600060208284031215612ecd57600080fd5b6116a182612df0565b60008060408385031215612ee957600080fd5b612ef283612df0565b9150612f0060208401612df0565b90509250929050565b600080600060608486031215612f1e57600080fd5b612f2784612df0565b9250612f3560208501612df0565b9150604084013590509250925092565b60008060008060808587031215612f5b57600080fd5b612f6485612df0565b9350612f7260208601612df0565b925060408501359150606085013567ffffffffffffffff811115612f9557600080fd5b8501601f81018713612fa657600080fd5b612fb587823560208401612d7a565b91505092959194509250565b600080600060608486031215612fd657600080fd5b612fdf84612df0565b925060208085013567ffffffffffffffff80821115612ffd57600080fd5b818701915087601f83011261301157600080fd5b813561301f612e3a826133b4565b8082825285820191508585018b878560051b880101111561303f57600080fd5b60005b8481101561307a5781358681111561305957600080fd5b6130678e8a838b0101612e9b565b8552509287019290870190600101613042565b50909750505050604087013592508083111561309557600080fd5b50506130a386828701612e19565b9150509250925092565b600080604083850312156130c057600080fd5b6130c983612df0565b9150612f0060208401612e8b565b600080604083850312156130ea57600080fd5b6130f383612df0565b9150602083013567ffffffffffffffff81111561310f57600080fd5b61311b85828601612e9b565b9150509250929050565b60008060006060848603121561313a57600080fd5b61314384612df0565b9250602084013567ffffffffffffffff81111561315f57600080fd5b61316b86828701612e9b565b925050604084013590509250925092565b6000806040838503121561318f57600080fd5b61319883612df0565b946020939093013593505050565b6000602082840312156131b857600080fd5b6116a182612e8b565b6000602082840312156131d357600080fd5b81356116a181613610565b6000602082840312156131f057600080fd5b81516116a181613610565b60006020828403121561320d57600080fd5b5035919050565b6000806040838503121561322757600080fd5b50508035926020909101359150565b6000815180845261324e816020860160208601613458565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351613292818460208801613458565b8351908301906132a6818360208801613458565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526132ee6080830184613236565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561334657835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101613314565b50909695505050505050565b6020815260006116a16020830184613236565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156133ac576133ac6135e1565b604052919050565b600067ffffffffffffffff8211156133ce576133ce6135e1565b5060051b60200190565b600082198211156133eb576133eb613525565b500190565b6000826133ff576133ff613554565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561343c5761343c613525565b500290565b60008282101561345357613453613525565b500390565b60005b8381101561347357818101518382015260200161345b565b83811115610ce65750506000910152565b600181811c9082168061349857607f821691505b602082108114156134d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561350a5761350a613525565b5060010190565b60008261352057613520613554565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d8b57600080fdfea26469706673582212203e9ace4a55ffbb0adc5a00596d4b363bc6abb9c5e646300e185262e4e6de6b2d64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087cd47ac4e8c42356813e69aedd347e45d18450500000000000000000000000000000000000000000000000000000000000000087465737437383738000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000874657374373837380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5658586633546e6b33575a43454d6e685074315446456f574c47754669767941434657736e636a4d6e4d43610000000000000000000000
Deployed ByteCode Sourcemap
52293:1365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50136:233;;;;;;:::i;:::-;;:::i;:::-;;;9804:14:1;;9797:22;9779:41;;9767:2;9752:18;50136:233:0;;;;;;;;25697:100;;;:::i;:::-;;;;;;;:::i;27157:221::-;;;;;;:::i;:::-;;:::i;:::-;;;8080:42:1;8068:55;;;8050:74;;8038:2;8023:18;27157:221:0;7904:226:1;26694:397:0;;;;;;:::i;:::-;;:::i;:::-;;39851:113;39939:10;:17;39851:113;;;9977:25:1;;;9965:2;9950:18;39851:113:0;9831:177:1;51348:210:0;;;;;;:::i;:::-;;:::i;28047:305::-;;;;;;:::i;:::-;;:::i;49769:295::-;;;;;;:::i;:::-;;:::i;:::-;;;;8855:42:1;8843:55;;;8825:74;;8930:2;8915:18;;8908:34;;;;8798:18;49769:295:0;8651:297:1;39519:256:0;;;;;;:::i;:::-;;:::i;48159:362::-;;;;;;:::i;:::-;;:::i;28423:151::-;;;;;;:::i;:::-;;:::i;49508:194::-;;;;;;:::i;:::-;;:::i;45602:31::-;;;;;;;;;40041:233;;;;;;:::i;:::-;;:::i;46510:86::-;46587:1;46510:86;;25391:239;;;;;;:::i;:::-;;:::i;46997:99::-;;;:::i;25121:208::-;;;;;;:::i;:::-;;:::i;14809:148::-;;;:::i;45541:32::-;;;;;;47478:101;47558:13;;;;47478:101;;14158:87;14231:6;;;;14158:87;;25866:104;;;:::i;27450:295::-;;;;;;:::i;:::-;;:::i;47232:111::-;;;;;;:::i;:::-;47319:16;;47295:4;47319:16;;;:8;:16;;;;;;;;;47232:111;28645:285;;;;;;:::i;:::-;;:::i;47587:89::-;;;:::i;53077:187::-;;;;;;:::i;:::-;;:::i;49009:163::-;;;;;;:::i;:::-;;:::i;47351:119::-;;;;;;:::i;:::-;;:::i;51205:133::-;;;;;;:::i;:::-;51303:27;;51279:4;51303:27;;;:20;:27;;;;;;;;;51205:133;47815:150;;;;;;:::i;:::-;;:::i;47975:174::-;;;;;;:::i;:::-;;:::i;50953:119::-;;;;;;:::i;:::-;51044:20;;51020:4;51044:20;;;:10;:20;;;;;;;;;50953:119;45642:25;;;:::i;53373:282::-;;;;;;:::i;:::-;;:::i;47104:120::-;;;;;;:::i;:::-;47171:7;47198:18;;;:9;:18;;;;;;;47104:120;52150:132;;;;;;:::i;:::-;12880:10;52227:34;;;;:20;:34;;;;;:47;;;;;;;;;;;;;52150:132;15112:244;;;;;;:::i;:::-;;:::i;51082:113::-;;;:::i;:::-;;;;;;;:::i;50136:233::-;50256:4;50280:41;;;50295:26;50280:41;;:81;;;50325:36;50349:11;50325:23;:36::i;:::-;50273:88;50136:233;-1:-1:-1;;50136:233:0:o;25697:100::-;25751:13;25784:5;25777:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25697:100;:::o;27157:221::-;27233:7;30486:16;;;:7;:16;;;;;;:30;:16;27253:73;;;;-1:-1:-1;;;27253:73:0;;16056:2:1;27253:73:0;;;16038:21:1;16095:2;16075:18;;;16068:30;16134:34;16114:18;;;16107:62;16205:14;16185:18;;;16178:42;16237:19;;27253:73:0;;;;;;;;;-1:-1:-1;27346:24:0;;;;:15;:24;;;;;;;;;27157:221::o;26694:397::-;26775:13;26791:23;26806:7;26791:14;:23::i;:::-;26775:39;;26839:5;26833:11;;:2;:11;;;;26825:57;;;;-1:-1:-1;;;26825:57:0;;17656:2:1;26825:57:0;;;17638:21:1;17695:2;17675:18;;;17668:30;17734:34;17714:18;;;17707:62;17805:3;17785:18;;;17778:31;17826:19;;26825:57:0;17454:397:1;26825:57:0;12880:10;26903:21;;;;;:62;;-1:-1:-1;26928:37:0;26945:5;12880:10;53373:282;:::i;26928:37::-;26895:154;;;;-1:-1:-1;;;26895:154:0;;13616:2:1;26895:154:0;;;13598:21:1;13655:2;13635:18;;;13628:30;13694:34;13674:18;;;13667:62;13765:26;13745:18;;;13738:54;13809:19;;26895:154:0;13414:420:1;26895:154:0;27062:21;27071:2;27075:7;27062:8;:21::i;:::-;26764:327;26694:397;;:::o;51348:210::-;12880:10;51440:24;;;;:10;:24;;;;;;;;51432:71;;;;-1:-1:-1;;;51432:71:0;;19306:2:1;51432:71:0;;;19288:21:1;19345:2;19325:18;;;19318:30;19384:34;19364:18;;;19357:62;19455:4;19435:18;;;19428:32;19477:19;;51432:71:0;19104:398:1;51432:71:0;51516:34;51529:8;51539:10;51516:12;:34::i;:::-;51348:210;;:::o;28047:305::-;28208:41;12880:10;28227:12;28241:7;28208:18;:41::i;:::-;28200:103;;;;-1:-1:-1;;;28200:103:0;;18475:2:1;28200:103:0;;;18457:21:1;18514:2;18494:18;;;18487:30;18553:34;18533:18;;;18526:62;18624:19;18604:18;;;18597:47;18661:19;;28200:103:0;18273:413:1;28200:103:0;28316:28;28326:4;28332:2;28336:7;28316:9;:28::i;49769:295::-;49884:16;49902:21;45463:6;49965:17;;49953:9;:29;;;;:::i;:::-;49952:52;;;;:::i;:::-;50024:16;;;;;49936:68;;-1:-1:-1;49769:295:0;-1:-1:-1;;;49769:295:0:o;39519:256::-;39616:7;39652:23;39669:5;39652:16;:23::i;:::-;39644:5;:31;39636:87;;;;-1:-1:-1;;;39636:87:0;;10849:2:1;39636:87:0;;;10831:21:1;10888:2;10868:18;;;10861:30;10927:34;10907:18;;;10900:62;10998:13;10978:18;;;10971:41;11029:19;;39636:87:0;10647:407:1;39636:87:0;-1:-1:-1;39741:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39519:256::o;48159:362::-;52846:24;12880:10;52857:12;12800:98;52846:24;:50;;;-1:-1:-1;52874:22:0;12880:10;52883:12;12800:98;52874:22;52846:77;;;-1:-1:-1;14231:6:0;;52900:23;14231:6;12880:10;52900:23;52846:77;52838:150;;;;-1:-1:-1;;;52838:150:0;;19709:2:1;52838:150:0;;;19691:21:1;19748:2;19728:18;;;19721:30;19787:34;19767:18;;;19760:62;19858:30;19838:18;;;19831:58;19906:19;;52838:150:0;19507:424:1;52838:150:0;48305:6:::1;48301:213;48321:17;:24;48317:1;:28;48301:213;;;48369:16;48392:10;:17;48388:1;:21;:48;;48434:1;48388:48;;;48411:10;48422:1;48411:13;;;;;;;;:::i;:::-;;;;;;;48388:48;48369:67;;48453:49;48467:2;48471:17;48489:1;48471:20;;;;;;;;:::i;:::-;;;;;;;48493:8;48453:13;:49::i;:::-;-1:-1:-1::0;48347:3:0;::::1;::::0;::::1;:::i;:::-;;;;48301:213;;;;48159:362:::0;;;:::o;28423:151::-;28527:39;28544:4;28550:2;28554:7;28527:39;;;;;;;;;;;;:16;:39::i;49508:194::-;49573:41;12880:10;49592:12;12800:98;49573:41;49565:102;;;;-1:-1:-1;;;49565:102:0;;18058:2:1;49565:102:0;;;18040:21:1;18097:2;18077:18;;;18070:30;18136:34;18116:18;;;18109:62;18207:18;18187;;;18180:46;18243:19;;49565:102:0;17856:412:1;49565:102:0;49680:14;49686:7;49680:5;:14::i;:::-;49508:194;:::o;40041:233::-;40116:7;40152:30;39939:10;:17;;39851:113;40152:30;40144:5;:38;40136:95;;;;-1:-1:-1;;;40136:95:0;;18893:2:1;40136:95:0;;;18875:21:1;18932:2;18912:18;;;18905:30;18971:34;18951:18;;;18944:62;19042:14;19022:18;;;19015:42;19074:19;;40136:95:0;18691:408:1;40136:95:0;40249:10;40260:5;40249:17;;;;;;;;:::i;:::-;;;;;;;;;40242:24;;40041:233;;;:::o;25391:239::-;25463:7;25499:16;;;:7;:16;;;;;;;;25534:19;25526:73;;;;-1:-1:-1;;;25526:73:0;;14452:2:1;25526:73:0;;;14434:21:1;14491:2;14471:18;;;14464:30;14530:34;14510:18;;;14503:62;14601:11;14581:18;;;14574:39;14630:19;;25526:73:0;14250:405:1;46997:99:0;47045:13;47078:10;:8;:10::i;:::-;47071:17;;46997:99;:::o;25121:208::-;25193:7;25221:19;;;25213:74;;;;-1:-1:-1;;;25213:74:0;;14041:2:1;25213:74:0;;;14023:21:1;14080:2;14060:18;;;14053:30;14119:34;14099:18;;;14092:62;14190:12;14170:18;;;14163:40;14220:19;;25213:74:0;13839:406:1;25213:74:0;-1:-1:-1;25305:16:0;;;;;;:9;:16;;;;;;;25121:208::o;14809:148::-;14231:6;;14378:23;14231:6;12880:10;14378:23;14370:68;;;;-1:-1:-1;;;14370:68:0;;16469:2:1;14370:68:0;;;16451:21:1;;;16488:18;;;16481:30;16547:34;16527:18;;;16520:62;16599:18;;14370:68:0;16267:356:1;14370:68:0;14900:6:::1;::::0;14879:40:::1;::::0;14916:1:::1;::::0;14879:40:::1;14900:6;::::0;14879:40:::1;::::0;14916:1;;14879:40:::1;14930:6;:19:::0;;;::::1;::::0;;14809:148::o;25866:104::-;25922:13;25955:7;25948:14;;;;;:::i;27450:295::-;27553:24;;;12880:10;27553:24;;27545:62;;;;-1:-1:-1;;;27545:62:0;;12849:2:1;27545:62:0;;;12831:21:1;12888:2;12868:18;;;12861:30;12927:27;12907:18;;;12900:55;12972:18;;27545:62:0;12647:349:1;27545:62:0;12880:10;27620:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;27689:48;;9779:41:1;;;27620:42:0;;12880:10;27689:48;;9752:18:1;27689:48:0;;;;;;;27450:295;;:::o;28645:285::-;28777:41;12880:10;28810:7;28777:18;:41::i;:::-;28769:103;;;;-1:-1:-1;;;28769:103:0;;18475:2:1;28769:103:0;;;18457:21:1;18514:2;18494:18;;;18487:30;18553:34;18533:18;;;18526:62;18624:19;18604:18;;;18597:47;18661:19;;28769:103:0;18273:413:1;28769:103:0;28883:39;28897:4;28903:2;28907:7;28916:5;28883:13;:39::i;47587:89::-;14231:6;;14378:23;14231:6;12880:10;14378:23;14370:68;;;;-1:-1:-1;;;14370:68:0;;16469:2:1;14370:68:0;;;16451:21:1;;;16488:18;;;16481:30;16547:34;16527:18;;;16520:62;16599:18;;14370:68:0;16267:356:1;14370:68:0;47648:13:::1;:20:::0;;;::::1;47664:4;47648:20;::::0;;47587:89::o;53077:187::-;51044:20;;;53149:4;51044:20;;;:10;:20;;;;;;;;53173:54;;;-1:-1:-1;47319:16:0;;;47295:4;47319:16;;;:8;:16;;;;;;;;53203:24;53173:83;;;;53242:14;53231:25;;:7;14231:6;;;;;14158:87;53231:7;:25;;;53166:90;53077:187;-1:-1:-1;;53077:187:0:o;49009:163::-;49108:13;49141:23;49156:7;49141:14;:23::i;47351:119::-;14231:6;;14378:23;14231:6;12880:10;14378:23;14370:68;;;;-1:-1:-1;;;14370:68:0;;16469:2:1;14370:68:0;;;16451:21:1;;;16488:18;;;16481:30;16547:34;16527:18;;;16520:62;16599:18;;14370:68:0;16267:356:1;14370:68:0;47436:16:::1;::::0;;;::::1;;::::0;;;:8:::1;:16;::::0;;;;:26;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;47351:119::o;47815:150::-;52846:24;12880:10;52857:12;12800:98;52846:24;:50;;;-1:-1:-1;52874:22:0;12880:10;52883:12;12800:98;52874:22;52846:77;;;-1:-1:-1;14231:6:0;;52900:23;14231:6;12880:10;52900:23;52846:77;52838:150;;;;-1:-1:-1;;;52838:150:0;;19709:2:1;52838:150:0;;;19691:21:1;19748:2;19728:18;;;19721:30;19787:34;19767:18;;;19760:62;19858:30;19838:18;;;19831:58;19906:19;;52838:150:0;19507:424:1;52838:150:0;47910:47:::1;47924:2:::0;47928:16;47954:1:::1;47910:13;:47::i;47975:174::-:0;52846:24;12880:10;52857:12;12800:98;52846:24;:50;;;-1:-1:-1;52874:22:0;12880:10;52883:12;12800:98;52874:22;52846:77;;;-1:-1:-1;14231:6:0;;52900:23;14231:6;12880:10;52900:23;52846:77;52838:150;;;;-1:-1:-1;;;52838:150:0;;19709:2:1;52838:150:0;;;19691:21:1;19748:2;19728:18;;;19721:30;19787:34;19767:18;;;19760:62;19858:30;19838:18;;;19831:58;19906:19;;52838:150:0;19507:424:1;52838:150:0;48096:45:::1;48110:2;48114:16;48132:8;48096:13;:45::i;45642:25::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53373:282::-;51303:27;;;53470:4;51303:27;;;:20;:27;;;;;;;;53494:29;:53;;;;-1:-1:-1;51044:20:0;;;51020:4;51044:20;;;:10;:20;;;;;;;;53527;53489:100;;;-1:-1:-1;53573:4:0;53566:11;;53489:100;27937:25;;;;27913:4;27937:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;53608:39;53601:46;53373:282;-1:-1:-1;;;53373:282:0:o;15112:244::-;14231:6;;14378:23;14231:6;12880:10;14378:23;14370:68;;;;-1:-1:-1;;;14370:68:0;;16469:2:1;14370:68:0;;;16451:21:1;;;16488:18;;;16481:30;16547:34;16527:18;;;16520:62;16599:18;;14370:68:0;16267:356:1;14370:68:0;15201:22:::1;::::0;::::1;15193:73;;;::::0;-1:-1:-1;;;15193:73:0;;11680:2:1;15193:73:0::1;::::0;::::1;11662:21:1::0;11719:2;11699:18;;;11692:30;11758:34;11738:18;;;11731:62;11829:8;11809:18;;;11802:36;11855:19;;15193:73:0::1;11478:402:1::0;15193:73:0::1;15303:6;::::0;15282:38:::1;::::0;::::1;::::0;;::::1;::::0;15303:6:::1;::::0;15282:38:::1;::::0;15303:6:::1;::::0;15282:38:::1;15331:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;15112:244::o;51082:113::-;51138:16;51174:13;51167:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51082:113;:::o;16218:127::-;16307:19;;16325:1;16307:19;;;16218:127::o;39198:237::-;39300:4;39324:50;;;39339:35;39324:50;;:103;;;39391:36;39415:11;39391:23;:36::i;34274:174::-;34349:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;34403:23;34349:24;34403:14;:23::i;:::-;34394:46;;;;;;;;;;;;34274:174;;:::o;51568:510::-;51655:20;;;;;;;:10;:20;;;;;:33;;;;;;;;;;51799:107;51814:13;:20;51810:24;;51799:107;;;51879:8;51859:28;;:13;51873:1;51859:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:28;51856:38;;;51889:5;;51856:38;51836:3;;;;:::i;:::-;;;;51799:107;;;51939:13;:20;51934:25;;51930:86;;51976:13;:28;;;;;;;-1:-1:-1;51976:28:0;;;;;;;;;;;;;;;;51930:86;52049:8;52033:37;;;52059:10;52033:37;;;;9804:14:1;9797:22;9779:41;;9767:2;9752:18;;9639:187;52033:37:0;;;;;;;;51642:436;51568:510;;:::o;30691:348::-;30784:4;30486:16;;;:7;:16;;;;;;:30;:16;30801:73;;;;-1:-1:-1;;;30801:73:0;;13203:2:1;30801:73:0;;;13185:21:1;13242:2;13222:18;;;13215:30;13281:34;13261:18;;;13254:62;13352:14;13332:18;;;13325:42;13384:19;;30801:73:0;13001:408:1;30801:73:0;30885:13;30901:23;30916:7;30901:14;:23::i;:::-;30885:39;;30954:5;30943:16;;:7;:16;;;:51;;;;30987:7;30963:31;;:20;30975:7;30963:11;:20::i;:::-;:31;;;30943:51;:87;;;;30998:32;31015:5;31022:7;30998:16;:32::i;:::-;30935:96;30691:348;-1:-1:-1;;;;30691:348:0:o;33612:544::-;33737:4;33710:31;;:23;33725:7;33710:14;:23::i;:::-;:31;;;33702:85;;;;-1:-1:-1;;;33702:85:0;;16830:2:1;33702:85:0;;;16812:21:1;16869:2;16849:18;;;16842:30;16908:34;16888:18;;;16881:62;16979:11;16959:18;;;16952:39;17008:19;;33702:85:0;16628:405:1;33702:85:0;33806:16;;;33798:65;;;;-1:-1:-1;;;33798:65:0;;12444:2:1;33798:65:0;;;12426:21:1;12483:2;12463:18;;;12456:30;12522:34;12502:18;;;12495:62;12593:6;12573:18;;;12566:34;12617:19;;33798:65:0;12242:400:1;33798:65:0;33876:39;33897:4;33903:2;33907:7;33876:20;:39::i;:::-;33980:29;33997:1;34001:7;33980:8;:29::i;:::-;34022:15;;;;;;;:9;:15;;;;;:20;;34041:1;;34022:15;:20;;34041:1;;34022:20;:::i;:::-;;;;-1:-1:-1;;34053:13:0;;;;;;;:9;:13;;;;;:18;;34070:1;;34053:13;:18;;34070:1;;34053:18;:::i;:::-;;;;-1:-1:-1;;34082:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;34121:27;;34082:16;;34121:27;;;;;;;33612:544;;;:::o;48531:470::-;48652:13;;;;:22;48644:76;;;;-1:-1:-1;;;48644:76:0;;10439:2:1;48644:76:0;;;10421:21:1;10478:2;10458:18;;;10451:30;10517:34;10497:18;;;10490:62;10588:11;10568:18;;;10561:39;10617:19;;48644:76:0;10237:405:1;48644:76:0;48733:36;48739:2;48743:25;:15;16188:14;;16096:114;48743:25;48733:5;:36::i;:::-;48782:57;48795:25;:15;16188:14;;16096:114;48795:25;48822:16;48782:12;:57::i;:::-;48856:22;;48852:102;;48934:8;48895:9;:36;48905:25;:15;16188:14;;16096:114;48905:25;48895:36;;;;;;;;;;;-1:-1:-1;48895:36:0;:47;48852:102;48966:27;:15;16307:19;;16325:1;16307:19;;;16218:127;49377:123;49472:20;49484:7;49472:11;:20::i;46875:114::-;46935:13;46968;46961:20;;;;;:::i;29812:272::-;29926:28;29936:4;29942:2;29946:7;29926:9;:28::i;:::-;29973:48;29996:4;30002:2;30006:7;30015:5;29973:22;:48::i;:::-;29965:111;;;;-1:-1:-1;;;29965:111:0;;11261:2:1;29965:111:0;;;11243:21:1;11300:2;11280:18;;;11273:30;11339:34;11319:18;;;11312:62;11410:20;11390:18;;;11383:48;11448:19;;29965:111:0;11059:414:1;36888:679:0;30462:4;30486:16;;;:7;:16;;;;;;36961:13;;30486:30;:16;36987:78;;;;-1:-1:-1;;;36987:78:0;;15638:2:1;36987:78:0;;;15620:21:1;15677:2;15657:18;;;15650:30;15716:34;15696:18;;;15689:62;15787:19;15767:18;;;15760:47;15824:19;;36987:78:0;15436:413:1;36987:78:0;37078:23;37104:19;;;:10;:19;;;;;37078:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37134:18;37155:10;:8;:10::i;:::-;37134:31;;37247:4;37241:18;37263:1;37241:23;37237:72;;;-1:-1:-1;37288:9:0;36888:679;-1:-1:-1;;36888:679:0:o;37237:72::-;37413:23;;:27;37409:108;;37488:4;37494:9;37471:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37457:48;;;;36888:679;;;:::o;37409:108::-;37536:23;37551:7;37536:14;:23::i;24765:292::-;24867:4;24891:40;;;24906:25;24891:40;;:105;;-1:-1:-1;24948:48:0;;;24963:33;24948:48;24891:105;:158;;;-1:-1:-1;11557:25:0;11542:40;;;;25013:36;11433:157;49180:189;49316:45;49343:4;49349:2;49353:7;49316:26;:45::i;32304:382::-;32384:16;;;32376:61;;;;-1:-1:-1;;;32376:61:0;;15277:2:1;32376:61:0;;;15259:21:1;;;15296:18;;;15289:30;15355:34;15335:18;;;15328:62;15407:18;;32376:61:0;15075:356:1;32376:61:0;30462:4;30486:16;;;:7;:16;;;;;;:30;:16;:30;32448:58;;;;-1:-1:-1;;;32448:58:0;;12087:2:1;32448:58:0;;;12069:21:1;12126:2;12106:18;;;12099:30;12165;12145:18;;;12138:58;12213:18;;32448:58:0;11885:352:1;32448:58:0;32519:45;32548:1;32552:2;32556:7;32519:20;:45::i;:::-;32577:13;;;;;;;:9;:13;;;;;:18;;32594:1;;32577:13;:18;;32594:1;;32577:18;:::i;:::-;;;;-1:-1:-1;;32606:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;32645:33;;32606:16;;;32645:33;;32606:16;;32645:33;32304:382;;:::o;37723:217::-;30462:4;30486:16;;;:7;:16;;;;;;:30;:16;37815:75;;;;-1:-1:-1;;;37815:75:0;;14862:2:1;37815:75:0;;;14844:21:1;14901:2;14881:18;;;14874:30;14940:34;14920:18;;;14913:62;15011:16;14991:18;;;14984:44;15045:19;;37815:75:0;14660:410:1;37815:75:0;37901:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;38169:206::-;38238:20;38250:7;38238:11;:20::i;:::-;38281:19;;;;:10;:19;;;;;38275:33;;;;;:::i;:::-;:38;;-1:-1:-1;38271:97:0;;38337:19;;;;:10;:19;;;;;38330:26;;;:::i;35013:843::-;35134:4;35160:13;;;3091:20;3130:8;35156:693;;35196:72;;;;;:36;;;;;;:72;;12880:10;;35247:4;;35253:7;;35262:5;;35196:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35196:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35192:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35442:13:0;;35438:341;;35485:60;;-1:-1:-1;;;35485:60:0;;11261:2:1;35485:60:0;;;11243:21:1;11300:2;11280:18;;;11273:30;11339:34;11319:18;;;11312:62;11410:20;11390:18;;;11383:48;11448:19;;35485:60:0;11059:414:1;35438:341:0;35729:6;35723:13;35714:6;35710:2;35706:15;35699:38;35192:602;35319:55;;35329:45;35319:55;;-1:-1:-1;35312:62:0;;35156:693;-1:-1:-1;35833:4:0;35013:843;;;;;;:::o;26041:360::-;30462:4;30486:16;;;:7;:16;;;;;;26114:13;;30486:30;:16;26140:76;;;;-1:-1:-1;;;26140:76:0;;17240:2:1;26140:76:0;;;17222:21:1;17279:2;17259:18;;;17252:30;17318:34;17298:18;;;17291:62;17389:17;17369:18;;;17362:45;17424:19;;26140:76:0;17038:411:1;26140:76:0;26229:21;26253:10;:8;:10::i;:::-;26229:34;;26305:1;26287:7;26281:21;:25;:112;;;;;;;;;;;;;;;;;26346:7;26355:18;:7;:16;:18::i;:::-;26329:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26274:119;26041:360;-1:-1:-1;;;26041:360:0:o;40887:555::-;41059:18;;;41055:187;;41094:40;41126:7;42269:10;:17;;42242:24;;;;:15;:24;;;;;:44;;;42297:24;;;;;;;;;;;;42165:164;41094:40;41055:187;;;41164:2;41156:10;;:4;:10;;;41152:90;;41183:47;41216:4;41222:7;41183:32;:47::i;:::-;41256:16;;;41252:183;;41289:45;41326:7;41289:36;:45::i;41252:183::-;41362:4;41356:10;;:2;:10;;;41352:83;;41383:40;41411:2;41415:7;41383:27;:40::i;32915:360::-;32975:13;32991:23;33006:7;32991:14;:23::i;:::-;32975:39;;33027:48;33048:5;33063:1;33067:7;33027:20;:48::i;:::-;33116:29;33133:1;33137:7;33116:8;:29::i;:::-;33158:16;;;;;;;:9;:16;;;;;:21;;33178:1;;33158:16;:21;;33178:1;;33158:21;:::i;:::-;;;;-1:-1:-1;;33197:16:0;;;;:7;:16;;;;;;33190:23;;;;;;33231:36;33205:7;;33197:16;33190:23;33231:36;;;;;33197:16;;33231:36;32964:311;32915:360;:::o;284:723::-;340:13;561:10;557:53;;-1:-1:-1;;588:10:0;;;;;;;;;;;;;;;;;;284:723::o;557:53::-;635:5;620:12;676:78;683:9;;676:78;;709:8;;;;:::i;:::-;;-1:-1:-1;732:10:0;;-1:-1:-1;740:2:0;732:10;;:::i;:::-;;;676:78;;;764:19;796:6;786:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;786:17:0;;764:39;;814:154;821:10;;814:154;;848:11;858:1;848:11;;:::i;:::-;;-1:-1:-1;917:10:0;925:2;917:5;:10;:::i;:::-;904:24;;:2;:24;:::i;:::-;891:39;;874:6;881;874:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;945:11:0;954:2;945:11;;:::i;:::-;;;814:154;;42956:988;43222:22;43272:1;43247:22;43264:4;43247:16;:22::i;:::-;:26;;;;:::i;:::-;43284:18;43305:26;;;:17;:26;;;;;;43222:51;;-1:-1:-1;43438:28:0;;;43434:328;;43505:18;;;43483:19;43505:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43556:30;;;;;;:44;;;43673:30;;:17;:30;;;;;:43;;;43434:328;-1:-1:-1;43858:26:0;;;;:17;:26;;;;;;;;43851:33;;;43902:18;;;;;;:12;:18;;;;;:34;;;;;;;43895:41;42956:988::o;44239:1079::-;44517:10;:17;44492:22;;44517:21;;44537:1;;44517:21;:::i;:::-;44549:18;44570:24;;;:15;:24;;;;;;44943:10;:26;;44492:46;;-1:-1:-1;44570:24:0;;44492:46;;44943:26;;;;;;:::i;:::-;;;;;;;;;44921:48;;45007:11;44982:10;44993;44982:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45087:28;;;:15;:28;;;;;;;:41;;;45259:24;;;;;45252:31;45294:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44310:1008;;;44239:1079;:::o;41743:221::-;41828:14;41845:20;41862:2;41845:16;:20::i;:::-;41876:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41921:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41743:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:465:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:116;282:4;213:66;208:2;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:45;;;368:1;365;358:12;327:45;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;14:465;;;;;:::o;484:196::-;552:20;;612:42;601:54;;591:65;;581:93;;670:1;667;660:12;581:93;484:196;;;:::o;685:673::-;739:5;792:3;785:4;777:6;773:17;769:27;759:55;;810:1;807;800:12;759:55;846:6;833:20;872:4;896:60;912:43;952:2;912:43;:::i;:::-;896:60;:::i;:::-;978:3;1002:2;997:3;990:15;1030:2;1025:3;1021:12;1014:19;;1065:2;1057:6;1053:15;1117:3;1112:2;1106;1103:1;1099:10;1091:6;1087:23;1083:32;1080:41;1077:61;;;1134:1;1131;1124:12;1077:61;1156:1;1166:163;1180:2;1177:1;1174:9;1166:163;;;1237:17;;1225:30;;1275:12;;;;1307;;;;1198:1;1191:9;1166:163;;;-1:-1:-1;1347:5:1;;685:673;-1:-1:-1;;;;;;;685:673:1:o;1363:160::-;1428:20;;1484:13;;1477:21;1467:32;;1457:60;;1513:1;1510;1503:12;1528:221;1571:5;1624:3;1617:4;1609:6;1605:17;1601:27;1591:55;;1642:1;1639;1632:12;1591:55;1664:79;1739:3;1730:6;1717:20;1710:4;1702:6;1698:17;1664:79;:::i;1754:186::-;1813:6;1866:2;1854:9;1845:7;1841:23;1837:32;1834:52;;;1882:1;1879;1872:12;1834:52;1905:29;1924:9;1905:29;:::i;1945:260::-;2013:6;2021;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;2113:29;2132:9;2113:29;:::i;:::-;2103:39;;2161:38;2195:2;2184:9;2180:18;2161:38;:::i;:::-;2151:48;;1945:260;;;;;:::o;2210:328::-;2287:6;2295;2303;2356:2;2344:9;2335:7;2331:23;2327:32;2324:52;;;2372:1;2369;2362:12;2324:52;2395:29;2414:9;2395:29;:::i;:::-;2385:39;;2443:38;2477:2;2466:9;2462:18;2443:38;:::i;:::-;2433:48;;2528:2;2517:9;2513:18;2500:32;2490:42;;2210:328;;;;;:::o;2543:666::-;2638:6;2646;2654;2662;2715:3;2703:9;2694:7;2690:23;2686:33;2683:53;;;2732:1;2729;2722:12;2683:53;2755:29;2774:9;2755:29;:::i;:::-;2745:39;;2803:38;2837:2;2826:9;2822:18;2803:38;:::i;:::-;2793:48;;2888:2;2877:9;2873:18;2860:32;2850:42;;2943:2;2932:9;2928:18;2915:32;2970:18;2962:6;2959:30;2956:50;;;3002:1;2999;2992:12;2956:50;3025:22;;3078:4;3070:13;;3066:27;-1:-1:-1;3056:55:1;;3107:1;3104;3097:12;3056:55;3130:73;3195:7;3190:2;3177:16;3172:2;3168;3164:11;3130:73;:::i;:::-;3120:83;;;2543:666;;;;;;;:::o;3214:1374::-;3351:6;3359;3367;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;3459:29;3478:9;3459:29;:::i;:::-;3449:39;;3507:2;3560;3549:9;3545:18;3532:32;3583:18;3624:2;3616:6;3613:14;3610:34;;;3640:1;3637;3630:12;3610:34;3678:6;3667:9;3663:22;3653:32;;3723:7;3716:4;3712:2;3708:13;3704:27;3694:55;;3745:1;3742;3735:12;3694:55;3781:2;3768:16;3804:60;3820:43;3860:2;3820:43;:::i;3804:60::-;3886:3;3910:2;3905:3;3898:15;3938:2;3933:3;3929:12;3922:19;;3969:2;3965;3961:11;4017:7;4012:2;4006;4003:1;3999:10;3995:2;3991:19;3987:28;3984:41;3981:61;;;4038:1;4035;4028:12;3981:61;4060:1;4070:304;4084:2;4081:1;4078:9;4070:304;;;4161:3;4148:17;4197:2;4184:11;4181:19;4178:39;;;4213:1;4210;4203:12;4178:39;4242:57;4291:7;4286:2;4272:11;4268:2;4264:20;4260:29;4242:57;:::i;:::-;4230:70;;-1:-1:-1;4320:12:1;;;;4352;;;;4102:1;4095:9;4070:304;;;-1:-1:-1;4393:5:1;;-1:-1:-1;;;;4451:2:1;4436:18;;4423:32;;-1:-1:-1;4467:16:1;;;4464:36;;;4496:1;4493;4486:12;4464:36;;;4519:63;4574:7;4563:8;4552:9;4548:24;4519:63;:::i;:::-;4509:73;;;3214:1374;;;;;:::o;4593:254::-;4658:6;4666;4719:2;4707:9;4698:7;4694:23;4690:32;4687:52;;;4735:1;4732;4725:12;4687:52;4758:29;4777:9;4758:29;:::i;:::-;4748:39;;4806:35;4837:2;4826:9;4822:18;4806:35;:::i;4852:396::-;4930:6;4938;4991:2;4979:9;4970:7;4966:23;4962:32;4959:52;;;5007:1;5004;4997:12;4959:52;5030:29;5049:9;5030:29;:::i;:::-;5020:39;;5110:2;5099:9;5095:18;5082:32;5137:18;5129:6;5126:30;5123:50;;;5169:1;5166;5159:12;5123:50;5192;5234:7;5225:6;5214:9;5210:22;5192:50;:::i;:::-;5182:60;;;4852:396;;;;;:::o;5253:464::-;5340:6;5348;5356;5409:2;5397:9;5388:7;5384:23;5380:32;5377:52;;;5425:1;5422;5415:12;5377:52;5448:29;5467:9;5448:29;:::i;:::-;5438:39;;5528:2;5517:9;5513:18;5500:32;5555:18;5547:6;5544:30;5541:50;;;5587:1;5584;5577:12;5541:50;5610;5652:7;5643:6;5632:9;5628:22;5610:50;:::i;:::-;5600:60;;;5707:2;5696:9;5692:18;5679:32;5669:42;;5253:464;;;;;:::o;5722:254::-;5790:6;5798;5851:2;5839:9;5830:7;5826:23;5822:32;5819:52;;;5867:1;5864;5857:12;5819:52;5890:29;5909:9;5890:29;:::i;:::-;5880:39;5966:2;5951:18;;;;5938:32;;-1:-1:-1;;;5722:254:1:o;5981:180::-;6037:6;6090:2;6078:9;6069:7;6065:23;6061:32;6058:52;;;6106:1;6103;6096:12;6058:52;6129:26;6145:9;6129:26;:::i;6166:245::-;6224:6;6277:2;6265:9;6256:7;6252:23;6248:32;6245:52;;;6293:1;6290;6283:12;6245:52;6332:9;6319:23;6351:30;6375:5;6351:30;:::i;6416:249::-;6485:6;6538:2;6526:9;6517:7;6513:23;6509:32;6506:52;;;6554:1;6551;6544:12;6506:52;6586:9;6580:16;6605:30;6629:5;6605:30;:::i;6670:180::-;6729:6;6782:2;6770:9;6761:7;6757:23;6753:32;6750:52;;;6798:1;6795;6788:12;6750:52;-1:-1:-1;6821:23:1;;6670:180;-1:-1:-1;6670:180:1:o;6855:248::-;6923:6;6931;6984:2;6972:9;6963:7;6959:23;6955:32;6952:52;;;7000:1;6997;6990:12;6952:52;-1:-1:-1;;7023:23:1;;;7093:2;7078:18;;;7065:32;;-1:-1:-1;6855:248:1:o;7108:316::-;7149:3;7187:5;7181:12;7214:6;7209:3;7202:19;7230:63;7286:6;7279:4;7274:3;7270:14;7263:4;7256:5;7252:16;7230:63;:::i;:::-;7338:2;7326:15;7343:66;7322:88;7313:98;;;;7413:4;7309:109;;7108:316;-1:-1:-1;;7108:316:1:o;7429:470::-;7608:3;7646:6;7640:13;7662:53;7708:6;7703:3;7696:4;7688:6;7684:17;7662:53;:::i;:::-;7778:13;;7737:16;;;;7800:57;7778:13;7737:16;7834:4;7822:17;;7800:57;:::i;:::-;7873:20;;7429:470;-1:-1:-1;;;;7429:470:1:o;8135:511::-;8329:4;8358:42;8439:2;8431:6;8427:15;8416:9;8409:34;8491:2;8483:6;8479:15;8474:2;8463:9;8459:18;8452:43;;8531:6;8526:2;8515:9;8511:18;8504:34;8574:3;8569:2;8558:9;8554:18;8547:31;8595:45;8635:3;8624:9;8620:19;8612:6;8595:45;:::i;:::-;8587:53;8135:511;-1:-1:-1;;;;;;8135:511:1:o;8953:681::-;9124:2;9176:21;;;9246:13;;9149:18;;;9268:22;;;9095:4;;9124:2;9347:15;;;;9321:2;9306:18;;;9095:4;9390:218;9404:6;9401:1;9398:13;9390:218;;;9469:13;;9484:42;9465:62;9453:75;;9583:15;;;;9548:12;;;;9426:1;9419:9;9390:218;;;-1:-1:-1;9625:3:1;;8953:681;-1:-1:-1;;;;;;8953:681:1:o;10013:219::-;10162:2;10151:9;10144:21;10125:4;10182:44;10222:2;10211:9;10207:18;10199:6;10182:44;:::i;20118:334::-;20189:2;20183:9;20245:2;20235:13;;20250:66;20231:86;20219:99;;20348:18;20333:34;;20369:22;;;20330:62;20327:88;;;20395:18;;:::i;:::-;20431:2;20424:22;20118:334;;-1:-1:-1;20118:334:1:o;20457:183::-;20517:4;20550:18;20542:6;20539:30;20536:56;;;20572:18;;:::i;:::-;-1:-1:-1;20617:1:1;20613:14;20629:4;20609:25;;20457:183::o;20645:128::-;20685:3;20716:1;20712:6;20709:1;20706:13;20703:39;;;20722:18;;:::i;:::-;-1:-1:-1;20758:9:1;;20645:128::o;20778:120::-;20818:1;20844;20834:35;;20849:18;;:::i;:::-;-1:-1:-1;20883:9:1;;20778:120::o;20903:228::-;20943:7;21069:1;21001:66;20997:74;20994:1;20991:81;20986:1;20979:9;20972:17;20968:105;20965:131;;;21076:18;;:::i;:::-;-1:-1:-1;21116:9:1;;20903:228::o;21136:125::-;21176:4;21204:1;21201;21198:8;21195:34;;;21209:18;;:::i;:::-;-1:-1:-1;21246:9:1;;21136:125::o;21266:258::-;21338:1;21348:113;21362:6;21359:1;21356:13;21348:113;;;21438:11;;;21432:18;21419:11;;;21412:39;21384:2;21377:10;21348:113;;;21479:6;21476:1;21473:13;21470:48;;;-1:-1:-1;;21514:1:1;21496:16;;21489:27;21266:258::o;21529:437::-;21608:1;21604:12;;;;21651;;;21672:61;;21726:4;21718:6;21714:17;21704:27;;21672:61;21779:2;21771:6;21768:14;21748:18;21745:38;21742:218;;;21816:77;21813:1;21806:88;21917:4;21914:1;21907:15;21945:4;21942:1;21935:15;21742:218;;21529:437;;;:::o;21971:195::-;22010:3;22041:66;22034:5;22031:77;22028:103;;;22111:18;;:::i;:::-;-1:-1:-1;22158:1:1;22147:13;;21971:195::o;22171:112::-;22203:1;22229;22219:35;;22234:18;;:::i;:::-;-1:-1:-1;22268:9:1;;22171:112::o;22288:184::-;22340:77;22337:1;22330:88;22437:4;22434:1;22427:15;22461:4;22458:1;22451:15;22477:184;22529:77;22526:1;22519:88;22626:4;22623:1;22616:15;22650:4;22647:1;22640:15;22666:184;22718:77;22715:1;22708:88;22815:4;22812:1;22805:15;22839:4;22836:1;22829:15;22855:184;22907:77;22904:1;22897:88;23004:4;23001:1;22994:15;23028:4;23025:1;23018:15;23044:184;23096:77;23093:1;23086:88;23193:4;23190:1;23183:15;23217:4;23214:1;23207:15;23233:177;23318:66;23311:5;23307:78;23300:5;23297:89;23287:117;;23400:1;23397;23390:12
Swarm Source
ipfs://3e9ace4a55ffbb0adc5a00596d4b363bc6abb9c5e646300e185262e4e6de6b2d