Contract Overview
[ Download CSV Export ]
Contract Name:
ZertifierNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./ERC721Pausable.sol"; import "./Ownable.sol"; import "./AccessControlEnumerable.sol"; import "./Context.sol"; /** * @dev {ERC721} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * - token ID and URI autogeneration * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ZertifierNFT is Context, Ownable, AccessControlEnumerable, ERC721, ERC721Enumerable, ERC721Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); string private _baseTokenURI; string private _baseContractURI; mapping(uint256 => mapping(string => string)) private _externalIds; mapping(uint256 => mapping(string => string)) private _metadata; mapping(uint256 => mapping(string => address)) private _identities; /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * Token URIs will be autogenerated based on `baseURI` and their token IDs. * See {ERC721-tokenURI}. */ constructor( string memory name, string memory symbol, string memory baseTokenURI, string memory baseContractURI ) ERC721(name, symbol) { _baseTokenURI = baseTokenURI; _baseContractURI = baseContractURI; _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /** * @dev Creates a new token for `to`. Its token ID will be automatically * assigned (and available on the emitted {IERC721-Transfer} event), and the token * URI autogenerated based on the base URI passed at construction. * * See {ERC721-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, uint256 tokenId) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint"); // We cannot just use balanceOf to create the new tokenId because tokens // can be burned (destroyed), so we need a separate counter. _mint(to, tokenId); } /** * @dev Pauses all token transfers. * * See {ERC721Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC721Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function mintWithExternalId(address to, uint256 tokenId,string memory externalIdName, string memory externalIdValue) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint"); // We cannot just use balanceOf to create the new tokenId because tokens // can be burned (destroyed), so we need a separate counter. _mint(to, tokenId); setExternalId(tokenId,externalIdName, externalIdValue); } function setIdentity(uint256 tokenId, string memory identityType, address identityAddress) public virtual { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ERC721PresetAdmin: must have admin role"); require(tokenId > 0 && bytes(_externalIds[tokenId][identityType]).length == 0 && bytes(identityType).length > 0 , "Metadata is already set up"); _identities[tokenId][identityType] = identityAddress; emit SetIdentity(tokenId, identityType, identityAddress); } function getIdentity(uint256 tokenId, string memory identityType) public view returns (address){ return _identities[tokenId][identityType]; } event SetIdentity(uint256 indexed tokenId, string indexed identityType, address indexed identityAddress); function setMetadata(uint256 tokenId, string memory metadataName, string memory metadataValue) public virtual { require(tokenId > 0 && bytes(_externalIds[tokenId][metadataName]).length == 0 && bytes(metadataName).length > 0 , "Metadata is already set up"); require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ERC721PresetAdmin: must have admin role"); _metadata[tokenId][metadataName] = metadataValue; emit SetMetadata(tokenId, metadataName, metadataValue); } function getMetadata(uint256 tokenId, string memory metadataName) public view returns (string memory){ return _metadata[tokenId][metadataName]; } event SetMetadata(uint256 indexed tokenId, string indexed sensorName, string indexed metadataValue); function setExternalId(uint256 tokenId, string memory externalIdName, string memory externalIdValue) public virtual { require(tokenId > 0 && bytes(_externalIds[tokenId][externalIdName]).length == 0 && bytes(externalIdName).length > 0 , "Sensor is already set up"); require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ERC721PresetAdmin: must have admin role"); _externalIds[tokenId][externalIdName] = externalIdValue; emit SetExternalId(tokenId, externalIdName, externalIdValue); } function getExternalId(uint256 tokenId, string memory externalIdName) public view returns (string memory){ return _externalIds[tokenId][externalIdName]; } event SetExternalId(uint256 indexed tokenId, string indexed sensorName, string indexed externalIdValue); function setNFC(uint256 tokenId, string memory externalIdValue) public virtual { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ERC721PresetAdmin: must have admin role"); setExternalId(tokenId, "NFC", externalIdValue); } function getNFC(uint256 tokenId) public view returns (string memory){ return _externalIds[tokenId]["NFC"]; } function getBrandAddress(uint256 tokenId) public view returns (address){ return getIdentity(tokenId, "BRAND"); } function contractURI() public view returns (string memory) { return _baseContractURI; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "./EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @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(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./Pausable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
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":"baseContractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"string","name":"sensorName","type":"string"},{"indexed":true,"internalType":"string","name":"externalIdValue","type":"string"}],"name":"SetExternalId","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"string","name":"identityType","type":"string"},{"indexed":true,"internalType":"address","name":"identityAddress","type":"address"}],"name":"SetIdentity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"string","name":"sensorName","type":"string"},{"indexed":true,"internalType":"string","name":"metadataValue","type":"string"}],"name":"SetMetadata","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBrandAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"externalIdName","type":"string"}],"name":"getExternalId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"identityType","type":"string"}],"name":"getIdentity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"metadataName","type":"string"}],"name":"getMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getNFC","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"externalIdName","type":"string"},{"internalType":"string","name":"externalIdValue","type":"string"}],"name":"mintWithExternalId","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"externalIdName","type":"string"},{"internalType":"string","name":"externalIdValue","type":"string"}],"name":"setExternalId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"identityType","type":"string"},{"internalType":"address","name":"identityAddress","type":"address"}],"name":"setIdentity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"metadataName","type":"string"},{"internalType":"string","name":"metadataValue","type":"string"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"externalIdValue","type":"string"}],"name":"setNFC","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620062ad380380620062ad833981810160405281019062000037919062000613565b8383620000596200004d6200018a60201b60201c565b6200019260201b60201c565b816003908051906020019062000071929190620004e5565b5080600490805190602001906200008a929190620004e5565b5050506000600d60006101000a81548160ff02191690831515021790555081600e9080519060200190620000c0929190620004e5565b5080600f9080519060200190620000d9929190620004e5565b50620000fe6000801b620000f26200018a60201b60201c565b6200025660201b60201c565b6200013f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001336200018a60201b60201c565b6200025660201b60201c565b620001807f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001746200018a60201b60201c565b6200025660201b60201c565b5050505062000885565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200026d82826200029e60201b62001fda1760201c565b620002998160026000858152602001908152602001600020620002b460201b62001fe81790919060201c565b505050565b620002b08282620002ec60201b60201c565b5050565b6000620002e4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620003dd60201b60201c565b905092915050565b620002fe82826200045760201b60201c565b620003d957600180600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200037e6200018a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620003f18383620004c260201b60201c565b6200044c57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000451565b600090505b92915050565b60006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620004f39062000796565b90600052602060002090601f01602090048101928262000517576000855562000563565b82601f106200053257805160ff191683800117855562000563565b8280016001018555821562000563579182015b828111156200056257825182559160200191906001019062000545565b5b50905062000572919062000576565b5090565b5b808211156200059157600081600090555060010162000577565b5090565b6000620005ac620005a6846200072a565b62000701565b905082815260208101848484011115620005cb57620005ca62000865565b5b620005d884828562000760565b509392505050565b600082601f830112620005f857620005f762000860565b5b81516200060a84826020860162000595565b91505092915050565b6000806000806080858703121562000630576200062f6200086f565b5b600085015167ffffffffffffffff8111156200065157620006506200086a565b5b6200065f87828801620005e0565b945050602085015167ffffffffffffffff8111156200068357620006826200086a565b5b6200069187828801620005e0565b935050604085015167ffffffffffffffff811115620006b557620006b46200086a565b5b620006c387828801620005e0565b925050606085015167ffffffffffffffff811115620006e757620006e66200086a565b5b620006f587828801620005e0565b91505092959194509250565b60006200070d62000720565b90506200071b8282620007cc565b919050565b6000604051905090565b600067ffffffffffffffff82111562000748576200074762000831565b5b620007538262000874565b9050602081019050919050565b60005b838110156200078057808201518184015260208101905062000763565b8381111562000790576000848401525b50505050565b60006002820490506001821680620007af57607f821691505b60208210811415620007c657620007c562000802565b5b50919050565b620007d78262000874565b810181811067ffffffffffffffff82111715620007f957620007f862000831565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b615a1880620008956000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c80638456cb5911610151578063ca15c873116100c3578063e63ab1e911610087578063e63ab1e9146107b9578063e8a3d485146107d7578063e985e9c5146107f5578063f2fde38b14610825578063f877bfc214610841578063fc1901ba1461085d57610274565b8063ca15c873146106ef578063cb4799f21461071f578063d53913931461074f578063d547741f1461076d578063dcf7a9c81461078957610274565b806395d89b411161011557806395d89b411461062f578063a217fddf1461064d578063a22cb4651461066b578063b705bc2d14610687578063b88d4fde146106a3578063c87b56dd146106bf57610274565b80638456cb5914610577578063872bec85146105815780638da5cb5b146105b15780639010d07c146105cf57806391d14854146105ff57610274565b80633f4ba83a116101ea57806359f9f50f116101ae57806359f9f50f146104b75780635c975abb146104d35780636352211e146104f15780636768f0b61461052157806370a082311461053d578063715018a61461056d57610274565b80633f4ba83a1461041557806340c10f191461041f57806342842e0e1461043b5780634907c36a146104575780634f6ccce71461048757610274565b806323b872dd1161023c57806323b872dd14610331578063248a9ca31461034d5780632f2ff15d1461037d5780632f745c591461039957806336532aad146103c957806336568abe146103f957610274565b806301ffc9a71461027957806306fdde03146102a9578063081812fc146102c7578063095ea7b3146102f757806318160ddd14610313575b600080fd5b610293600480360381019061028e9190614052565b610879565b6040516102a0919061485f565b60405180910390f35b6102b161088b565b6040516102be9190614895565b60405180910390f35b6102e160048036038101906102dc91906140ac565b61091d565b6040516102ee91906147f8565b60405180910390f35b610311600480360381019061030c9190613ec6565b6109a2565b005b61031b610aba565b6040516103289190614c57565b60405180910390f35b61034b60048036038101906103469190613db0565b610ac7565b005b61036760048036038101906103629190613fa5565b610b27565b604051610374919061487a565b60405180910390f35b61039760048036038101906103929190613fd2565b610b47565b005b6103b360048036038101906103ae9190613ec6565b610b7b565b6040516103c09190614c57565b60405180910390f35b6103e360048036038101906103de91906140d9565b610c20565b6040516103f09190614895565b60405180910390f35b610413600480360381019061040e9190613fd2565b610ce2565b005b61041d610d16565b005b61043960048036038101906104349190613ec6565b610d90565b005b61045560048036038101906104509190613db0565b610e0e565b005b610471600480360381019061046c91906140ac565b610e2e565b60405161047e91906147f8565b60405180910390f35b6104a1600480360381019061049c91906140ac565b610e76565b6040516104ae9190614c57565b60405180910390f35b6104d160048036038101906104cc91906141a4565b610ee7565b005b6104db611073565b6040516104e8919061485f565b60405180910390f35b61050b600480360381019061050691906140ac565b61108a565b60405161051891906147f8565b60405180910390f35b61053b60048036038101906105369190613f06565b61113c565b005b61055760048036038101906105529190613d43565b6111c7565b6040516105649190614c57565b60405180910390f35b61057561127f565b005b61057f611307565b005b61059b600480360381019061059691906140d9565b611381565b6040516105a891906147f8565b60405180910390f35b6105b96113db565b6040516105c691906147f8565b60405180910390f35b6105e960048036038101906105e49190614012565b611404565b6040516105f691906147f8565b60405180910390f35b61061960048036038101906106149190613fd2565b611433565b604051610626919061485f565b60405180910390f35b61063761149e565b6040516106449190614895565b60405180910390f35b610655611530565b604051610662919061487a565b60405180910390f35b61068560048036038101906106809190613e86565b611537565b005b6106a1600480360381019061069c91906141a4565b6116b8565b005b6106bd60048036038101906106b89190613e03565b611844565b005b6106d960048036038101906106d491906140ac565b6118a6565b6040516106e69190614895565b60405180910390f35b61070960048036038101906107049190613fa5565b61194d565b6040516107169190614c57565b60405180910390f35b610739600480360381019061073491906140d9565b611971565b6040516107469190614895565b60405180910390f35b610757611a33565b604051610764919061487a565b60405180910390f35b61078760048036038101906107829190613fd2565b611a57565b005b6107a3600480360381019061079e91906140ac565b611a8b565b6040516107b09190614895565b60405180910390f35b6107c1611b4a565b6040516107ce919061487a565b60405180910390f35b6107df611b6e565b6040516107ec9190614895565b60405180910390f35b61080f600480360381019061080a9190613d70565b611c00565b60405161081c919061485f565b60405180910390f35b61083f600480360381019061083a9190613d43565b611c94565b005b61085b60048036038101906108569190614135565b611d8c565b005b610877600480360381019061087291906140d9565b611f43565b005b600061088482612018565b9050919050565b60606003805461089a90614f3b565b80601f01602080910402602001604051908101604052809291908181526020018280546108c690614f3b565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b600061092882612092565b610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90614b17565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ad8261108a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590614b97565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3d6120fe565b73ffffffffffffffffffffffffffffffffffffffff161480610a6c5750610a6b81610a666120fe565b611c00565b5b610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290614a77565b60405180910390fd5b610ab58383612106565b505050565b6000600b80549050905090565b610ad8610ad26120fe565b826121bf565b610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90614bb7565b60405180910390fd5b610b2283838361229d565b505050565b600060016000838152602001908152602001600020600101549050919050565b610b5182826124f9565b610b768160026000858152602001908152602001600020611fe890919063ffffffff16565b505050565b6000610b86836111c7565b8210610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90614937565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60606010600084815260200190815260200160002082604051610c43919061476e565b90815260200160405180910390208054610c5c90614f3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8890614f3b565b8015610cd55780601f10610caa57610100808354040283529160200191610cd5565b820191906000526020600020905b815481529060010190602001808311610cb857829003601f168201915b5050505050905092915050565b610cec8282612522565b610d1181600260008581526020019081526020016000206125a590919063ffffffff16565b505050565b610d477f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d426120fe565b611433565b610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90614c17565b60405180910390fd5b610d8e6125d5565b565b610dc17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610dbc6120fe565b611433565b610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790614bf7565b60405180910390fd5b610e0a8282612677565b5050565b610e2983838360405180602001604052806000815250611844565b505050565b6000610e6f826040518060400160405280600581526020017f4252414e44000000000000000000000000000000000000000000000000000000815250611381565b9050919050565b6000610e80610aba565b8210610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890614bd7565b60405180910390fd5b600b8281548110610ed557610ed46150d4565b5b90600052602060002001549050919050565b600083118015610f32575060006010600085815260200190815260200160002083604051610f15919061476e565b90815260200160405180910390208054610f2e90614f3b565b9050145b8015610f3f575060008251115b610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f75906148d7565b60405180910390fd5b610f926000801b610f8d6120fe565b611433565b610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890614ad7565b60405180910390fd5b806011600085815260200190815260200160002083604051610ff3919061476e565b90815260200160405180910390209080519060200190611014929190613b42565b5080604051611023919061476e565b604051809103902082604051611039919061476e565b6040518091039020847fade921dd51e6a4eab3cf4d99d430fb0760e5b953386b6196ff7fd65f6d31b06560405160405180910390a4505050565b6000600d60009054906101000a900460ff16905090565b6000806005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90614ab7565b60405180910390fd5b80915050919050565b61116d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66111686120fe565b611433565b6111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390614bf7565b60405180910390fd5b6111b68484612677565b6111c18383836116b8565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90614a97565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112876120fe565b73ffffffffffffffffffffffffffffffffffffffff166112a56113db565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614b37565b60405180910390fd5b6113056000612845565b565b6113387f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6113336120fe565b611433565b611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906149d7565b60405180910390fd5b61137f612909565b565b600060126000848152602001908152602001600020826040516113a4919061476e565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061142b82600260008681526020019081526020016000206129ac90919063ffffffff16565b905092915050565b60006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546114ad90614f3b565b80601f01602080910402602001604051908101604052809291908181526020018280546114d990614f3b565b80156115265780601f106114fb57610100808354040283529160200191611526565b820191906000526020600020905b81548152906001019060200180831161150957829003601f168201915b5050505050905090565b6000801b81565b61153f6120fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a490614a17565b60405180910390fd5b80600860006115ba6120fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116676120fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ac919061485f565b60405180910390a35050565b6000831180156117035750600060106000858152602001908152602001600020836040516116e6919061476e565b908152602001604051809103902080546116ff90614f3b565b9050145b8015611710575060008251115b61174f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611746906149b7565b60405180910390fd5b6117636000801b61175e6120fe565b611433565b6117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990614ad7565b60405180910390fd5b8060106000858152602001908152602001600020836040516117c4919061476e565b908152602001604051809103902090805190602001906117e5929190613b42565b50806040516117f4919061476e565b60405180910390208260405161180a919061476e565b6040518091039020847f81e87b824090f08a616c9bfb3dc374ad3de0f2cae5f6e747ac3e1c81bd144e1960405160405180910390a4505050565b61185561184f6120fe565b836121bf565b611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614bb7565b60405180910390fd5b6118a0848484846129c6565b50505050565b60606118b182612092565b6118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614b77565b60405180910390fd5b60006118fa612a22565b9050600081511161191a5760405180602001604052806000815250611945565b8061192484612ab4565b604051602001611935929190614785565b6040516020818303038152906040525b915050919050565b600061196a60026000848152602001908152602001600020612c15565b9050919050565b60606011600084815260200190815260200160002082604051611994919061476e565b908152602001604051809103902080546119ad90614f3b565b80601f01602080910402602001604051908101604052809291908181526020018280546119d990614f3b565b8015611a265780601f106119fb57610100808354040283529160200191611a26565b820191906000526020600020905b815481529060010190602001808311611a0957829003601f168201915b5050505050905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611a618282612c2a565b611a8681600260008581526020019081526020016000206125a590919063ffffffff16565b505050565b606060106000838152602001908152602001600020604051611aac906147a9565b90815260200160405180910390208054611ac590614f3b565b80601f0160208091040260200160405190810160405280929190818152602001828054611af190614f3b565b8015611b3e5780601f10611b1357610100808354040283529160200191611b3e565b820191906000526020600020905b815481529060010190602001808311611b2157829003601f168201915b50505050509050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6060600f8054611b7d90614f3b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba990614f3b565b8015611bf65780601f10611bcb57610100808354040283529160200191611bf6565b820191906000526020600020905b815481529060010190602001808311611bd957829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c9c6120fe565b73ffffffffffffffffffffffffffffffffffffffff16611cba6113db565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614b37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614977565b60405180910390fd5b611d8981612845565b50565b611da06000801b611d9b6120fe565b611433565b611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd690614ad7565b60405180910390fd5b600083118015611e2a575060006010600085815260200190815260200160002083604051611e0d919061476e565b90815260200160405180910390208054611e2690614f3b565b9050145b8015611e37575060008251115b611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d906148d7565b60405180910390fd5b806012600085815260200190815260200160002083604051611e98919061476e565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1682604051611f09919061476e565b6040518091039020847f101af85bc2aa733303b03194eff295d0c63de9e562d0dce3303f24bc9dfbefeb60405160405180910390a4505050565b611f576000801b611f526120fe565b611433565b611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d90614ad7565b60405180910390fd5b611fd6826040518060400160405280600381526020017f4e46430000000000000000000000000000000000000000000000000000000000815250836116b8565b5050565b611fe48282612c53565b5050565b6000612010836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d33565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208b575061208a82612da3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121798361108a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121ca82612092565b612209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220090614a37565b60405180910390fd5b60006122148361108a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228357508373ffffffffffffffffffffffffffffffffffffffff1661226b8461091d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229457506122938185611c00565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122bd8261108a565b73ffffffffffffffffffffffffffffffffffffffff1614612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90614b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237a906149f7565b60405180910390fd5b61238e838383612e85565b612399600082612106565b6001600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e99190614e1d565b925050819055506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124409190614d3c565b92505081905550816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61250282610b27565b6125138161250e6120fe565b612e95565b61251d8383612c53565b505050565b61252a6120fe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e90614c37565b60405180910390fd5b6125a18282612f32565b5050565b60006125cd836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613014565b905092915050565b6125dd611073565b61261c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261390614917565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126606120fe565b60405161266d91906147f8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126de90614af7565b60405180910390fd5b6126f081612092565b15612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614997565b60405180910390fd5b61273c60008383612e85565b6001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278c9190614d3c565b92505081905550816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612911611073565b15612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890614a57565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129956120fe565b6040516129a291906147f8565b60405180910390a1565b60006129bb8360000183613128565b60001c905092915050565b6129d184848461229d565b6129dd84848484613153565b612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1390614957565b60405180910390fd5b50505050565b6060600e8054612a3190614f3b565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5d90614f3b565b8015612aaa5780601f10612a7f57610100808354040283529160200191612aaa565b820191906000526020600020905b815481529060010190602001808311612a8d57829003601f168201915b5050505050905090565b60606000821415612afc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c10565b600082905060005b60008214612b2e578080612b1790614f9e565b915050600a82612b279190614d92565b9150612b04565b60008167ffffffffffffffff811115612b4a57612b49615103565b5b6040519080825280601f01601f191660200182016040528015612b7c5781602001600182028036833780820191505090505b5090505b60008514612c0957600182612b959190614e1d565b9150600a85612ba49190614fe7565b6030612bb09190614d3c565b60f81b818381518110612bc657612bc56150d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c029190614d92565b9450612b80565b8093505050505b919050565b6000612c23826000016132ea565b9050919050565b612c3382610b27565b612c4481612c3f6120fe565b612e95565b612c4e8383612f32565b505050565b612c5d8282611433565b612d2f57600180600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612cd46120fe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612d3f83836132fb565b612d98578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612d9d565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e6e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e7e5750612e7d8261331e565b5b9050919050565b612e90838383613398565b505050565b612e9f8282611433565b612f2e57612ec48173ffffffffffffffffffffffffffffffffffffffff1660146133f0565b612ed28360001c60206133f0565b604051602001612ee39291906147be565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f259190614895565b60405180910390fd5b5050565b612f3c8282611433565b156130105760006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612fb56120fe565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000808360010160008481526020019081526020016000205490506000811461311c5760006001826130469190614e1d565b905060006001866000018054905061305e9190614e1d565b90508181146130cd57600086600001828154811061307f5761307e6150d4565b5b90600052602060002001549050808760000184815481106130a3576130a26150d4565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806130e1576130e06150a5565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613122565b60009150505b92915050565b60008260000182815481106131405761313f6150d4565b5b9060005260206000200154905092915050565b60006131748473ffffffffffffffffffffffffffffffffffffffff1661362c565b156132dd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261319d6120fe565b8786866040518563ffffffff1660e01b81526004016131bf9493929190614813565b602060405180830381600087803b1580156131d957600080fd5b505af192505050801561320a57506040513d601f19601f82011682018060405250810190613207919061407f565b60015b61328d573d806000811461323a576040519150601f19603f3d011682016040523d82523d6000602084013e61323f565b606091505b50600081511415613285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327c90614957565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132e2565b600190505b949350505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061339157506133908261363f565b5b9050919050565b6133a38383836136b9565b6133ab611073565b156133eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e2906148f7565b60405180910390fd5b505050565b6060600060028360026134039190614dc3565b61340d9190614d3c565b67ffffffffffffffff81111561342657613425615103565b5b6040519080825280601f01601f1916602001820160405280156134585781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134905761348f6150d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106134f4576134f36150d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135349190614dc3565b61353e9190614d3c565b90505b60018111156135de577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106135805761357f6150d4565b5b1a60f81b828281518110613597576135966150d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806135d790614f11565b9050613541565b5060008414613622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613619906148b7565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136b257506136b1826137cd565b5b9050919050565b6136c4838383613837565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613707576137028161383c565b613746565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613745576137448382613885565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561378957613784816139f2565b6137c8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137c7576137c68282613ac3565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600b80549050600c600083815260200190815260200160002081905550600b81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613892846111c7565b61389c9190614e1d565b90506000600a6000848152602001908152602001600020549050818114613981576000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000208190555081600a600083815260200190815260200160002081905550505b600a600084815260200190815260200160002060009055600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600b80549050613a069190614e1d565b90506000600c60008481526020019081526020016000205490506000600b8381548110613a3657613a356150d4565b5b9060005260206000200154905080600b8381548110613a5857613a576150d4565b5b906000526020600020018190555081600c600083815260200190815260200160002081905550600c600085815260200190815260200160002060009055600b805480613aa757613aa66150a5565b5b6001900381819060005260206000200160009055905550505050565b6000613ace836111c7565b905081600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000208190555080600a600084815260200190815260200160002081905550505050565b828054613b4e90614f3b565b90600052602060002090601f016020900481019282613b705760008555613bb7565b82601f10613b8957805160ff1916838001178555613bb7565b82800160010185558215613bb7579182015b82811115613bb6578251825591602001919060010190613b9b565b5b509050613bc49190613bc8565b5090565b5b80821115613be1576000816000905550600101613bc9565b5090565b6000613bf8613bf384614c97565b614c72565b905082815260208101848484011115613c1457613c13615137565b5b613c1f848285614ecf565b509392505050565b6000613c3a613c3584614cc8565b614c72565b905082815260208101848484011115613c5657613c55615137565b5b613c61848285614ecf565b509392505050565b600081359050613c788161596f565b92915050565b600081359050613c8d81615986565b92915050565b600081359050613ca28161599d565b92915050565b600081359050613cb7816159b4565b92915050565b600081519050613ccc816159b4565b92915050565b600082601f830112613ce757613ce6615132565b5b8135613cf7848260208601613be5565b91505092915050565b600082601f830112613d1557613d14615132565b5b8135613d25848260208601613c27565b91505092915050565b600081359050613d3d816159cb565b92915050565b600060208284031215613d5957613d58615141565b5b6000613d6784828501613c69565b91505092915050565b60008060408385031215613d8757613d86615141565b5b6000613d9585828601613c69565b9250506020613da685828601613c69565b9150509250929050565b600080600060608486031215613dc957613dc8615141565b5b6000613dd786828701613c69565b9350506020613de886828701613c69565b9250506040613df986828701613d2e565b9150509250925092565b60008060008060808587031215613e1d57613e1c615141565b5b6000613e2b87828801613c69565b9450506020613e3c87828801613c69565b9350506040613e4d87828801613d2e565b925050606085013567ffffffffffffffff811115613e6e57613e6d61513c565b5b613e7a87828801613cd2565b91505092959194509250565b60008060408385031215613e9d57613e9c615141565b5b6000613eab85828601613c69565b9250506020613ebc85828601613c7e565b9150509250929050565b60008060408385031215613edd57613edc615141565b5b6000613eeb85828601613c69565b9250506020613efc85828601613d2e565b9150509250929050565b60008060008060808587031215613f2057613f1f615141565b5b6000613f2e87828801613c69565b9450506020613f3f87828801613d2e565b935050604085013567ffffffffffffffff811115613f6057613f5f61513c565b5b613f6c87828801613d00565b925050606085013567ffffffffffffffff811115613f8d57613f8c61513c565b5b613f9987828801613d00565b91505092959194509250565b600060208284031215613fbb57613fba615141565b5b6000613fc984828501613c93565b91505092915050565b60008060408385031215613fe957613fe8615141565b5b6000613ff785828601613c93565b925050602061400885828601613c69565b9150509250929050565b6000806040838503121561402957614028615141565b5b600061403785828601613c93565b925050602061404885828601613d2e565b9150509250929050565b60006020828403121561406857614067615141565b5b600061407684828501613ca8565b91505092915050565b60006020828403121561409557614094615141565b5b60006140a384828501613cbd565b91505092915050565b6000602082840312156140c2576140c1615141565b5b60006140d084828501613d2e565b91505092915050565b600080604083850312156140f0576140ef615141565b5b60006140fe85828601613d2e565b925050602083013567ffffffffffffffff81111561411f5761411e61513c565b5b61412b85828601613d00565b9150509250929050565b60008060006060848603121561414e5761414d615141565b5b600061415c86828701613d2e565b935050602084013567ffffffffffffffff81111561417d5761417c61513c565b5b61418986828701613d00565b925050604061419a86828701613c69565b9150509250925092565b6000806000606084860312156141bd576141bc615141565b5b60006141cb86828701613d2e565b935050602084013567ffffffffffffffff8111156141ec576141eb61513c565b5b6141f886828701613d00565b925050604084013567ffffffffffffffff8111156142195761421861513c565b5b61422586828701613d00565b9150509250925092565b61423881614e51565b82525050565b61424781614e63565b82525050565b61425681614e6f565b82525050565b600061426782614cf9565b6142718185614d0f565b9350614281818560208601614ede565b61428a81615146565b840191505092915050565b60006142a082614d04565b6142aa8185614d20565b93506142ba818560208601614ede565b6142c381615146565b840191505092915050565b60006142d982614d04565b6142e38185614d31565b93506142f3818560208601614ede565b80840191505092915050565b600061430c602083614d20565b915061431782615157565b602082019050919050565b600061432f601a83614d20565b915061433a82615180565b602082019050919050565b6000614352602b83614d20565b915061435d826151a9565b604082019050919050565b6000614375601483614d20565b9150614380826151f8565b602082019050919050565b6000614398602b83614d20565b91506143a382615221565b604082019050919050565b60006143bb603283614d20565b91506143c682615270565b604082019050919050565b60006143de602683614d20565b91506143e9826152bf565b604082019050919050565b6000614401601c83614d20565b915061440c8261530e565b602082019050919050565b6000614424601883614d20565b915061442f82615337565b602082019050919050565b6000614447603e83614d20565b915061445282615360565b604082019050919050565b600061446a602483614d20565b9150614475826153af565b604082019050919050565b600061448d601983614d20565b9150614498826153fe565b602082019050919050565b60006144b0602c83614d20565b91506144bb82615427565b604082019050919050565b60006144d3601083614d20565b91506144de82615476565b602082019050919050565b60006144f6603883614d20565b91506145018261549f565b604082019050919050565b6000614519602a83614d20565b9150614524826154ee565b604082019050919050565b600061453c602983614d20565b91506145478261553d565b604082019050919050565b600061455f602783614d20565b915061456a8261558c565b604082019050919050565b6000614582602083614d20565b915061458d826155db565b602082019050919050565b60006145a5602c83614d20565b91506145b082615604565b604082019050919050565b60006145c8602083614d20565b91506145d382615653565b602082019050919050565b60006145eb602983614d20565b91506145f68261567c565b604082019050919050565b600061460e602f83614d20565b9150614619826156cb565b604082019050919050565b6000614631600383614d31565b915061463c8261571a565b600382019050919050565b6000614654602183614d20565b915061465f82615743565b604082019050919050565b6000614677603183614d20565b915061468282615792565b604082019050919050565b600061469a602c83614d20565b91506146a5826157e1565b604082019050919050565b60006146bd601783614d31565b91506146c882615830565b601782019050919050565b60006146e0603d83614d20565b91506146eb82615859565b604082019050919050565b6000614703604083614d20565b915061470e826158a8565b604082019050919050565b6000614726601183614d31565b9150614731826158f7565b601182019050919050565b6000614749602f83614d20565b915061475482615920565b604082019050919050565b61476881614ec5565b82525050565b600061477a82846142ce565b915081905092915050565b600061479182856142ce565b915061479d82846142ce565b91508190509392505050565b60006147b482614624565b9150819050919050565b60006147c9826146b0565b91506147d582856142ce565b91506147e082614719565b91506147ec82846142ce565b91508190509392505050565b600060208201905061480d600083018461422f565b92915050565b6000608082019050614828600083018761422f565b614835602083018661422f565b614842604083018561475f565b8181036060830152614854818461425c565b905095945050505050565b6000602082019050614874600083018461423e565b92915050565b600060208201905061488f600083018461424d565b92915050565b600060208201905081810360008301526148af8184614295565b905092915050565b600060208201905081810360008301526148d0816142ff565b9050919050565b600060208201905081810360008301526148f081614322565b9050919050565b6000602082019050818103600083015261491081614345565b9050919050565b6000602082019050818103600083015261493081614368565b9050919050565b600060208201905081810360008301526149508161438b565b9050919050565b60006020820190508181036000830152614970816143ae565b9050919050565b60006020820190508181036000830152614990816143d1565b9050919050565b600060208201905081810360008301526149b0816143f4565b9050919050565b600060208201905081810360008301526149d081614417565b9050919050565b600060208201905081810360008301526149f08161443a565b9050919050565b60006020820190508181036000830152614a108161445d565b9050919050565b60006020820190508181036000830152614a3081614480565b9050919050565b60006020820190508181036000830152614a50816144a3565b9050919050565b60006020820190508181036000830152614a70816144c6565b9050919050565b60006020820190508181036000830152614a90816144e9565b9050919050565b60006020820190508181036000830152614ab08161450c565b9050919050565b60006020820190508181036000830152614ad08161452f565b9050919050565b60006020820190508181036000830152614af081614552565b9050919050565b60006020820190508181036000830152614b1081614575565b9050919050565b60006020820190508181036000830152614b3081614598565b9050919050565b60006020820190508181036000830152614b50816145bb565b9050919050565b60006020820190508181036000830152614b70816145de565b9050919050565b60006020820190508181036000830152614b9081614601565b9050919050565b60006020820190508181036000830152614bb081614647565b9050919050565b60006020820190508181036000830152614bd08161466a565b9050919050565b60006020820190508181036000830152614bf08161468d565b9050919050565b60006020820190508181036000830152614c10816146d3565b9050919050565b60006020820190508181036000830152614c30816146f6565b9050919050565b60006020820190508181036000830152614c508161473c565b9050919050565b6000602082019050614c6c600083018461475f565b92915050565b6000614c7c614c8d565b9050614c888282614f6d565b919050565b6000604051905090565b600067ffffffffffffffff821115614cb257614cb1615103565b5b614cbb82615146565b9050602081019050919050565b600067ffffffffffffffff821115614ce357614ce2615103565b5b614cec82615146565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d4782614ec5565b9150614d5283614ec5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d8757614d86615018565b5b828201905092915050565b6000614d9d82614ec5565b9150614da883614ec5565b925082614db857614db7615047565b5b828204905092915050565b6000614dce82614ec5565b9150614dd983614ec5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e1257614e11615018565b5b828202905092915050565b6000614e2882614ec5565b9150614e3383614ec5565b925082821015614e4657614e45615018565b5b828203905092915050565b6000614e5c82614ea5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614efc578082015181840152602081019050614ee1565b83811115614f0b576000848401525b50505050565b6000614f1c82614ec5565b91506000821415614f3057614f2f615018565b5b600182039050919050565b60006002820490506001821680614f5357607f821691505b60208210811415614f6757614f66615076565b5b50919050565b614f7682615146565b810181811067ffffffffffffffff82111715614f9557614f94615103565b5b80604052505050565b6000614fa982614ec5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fdc57614fdb615018565b5b600182019050919050565b6000614ff282614ec5565b9150614ffd83614ec5565b92508261500d5761500c615047565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4d6574616461746120697320616c726561647920736574207570000000000000600082015250565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53656e736f7220697320616c7265616479207365742075700000000000000000600082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323150726573657441646d696e3a206d75737420686176652061646d60008201527f696e20726f6c6500000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e46430000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000602082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61597881614e51565b811461598357600080fd5b50565b61598f81614e63565b811461599a57600080fd5b50565b6159a681614e6f565b81146159b157600080fd5b50565b6159bd81614e79565b81146159c857600080fd5b50565b6159d481614ec5565b81146159df57600080fd5b5056fea26469706673582212209e9bd0325f5e37088b5ac770a0318d471749569f7e4d710f2fb1b9bdbaebbf2a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c5a65727469666965724e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a45520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f756e6971756569642e7a65727469666965722e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f756e6971756569642e7a65727469666965722e636f6d2f6d657461646174612f636f6e747261637400000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c5a65727469666965724e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a45520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f756e6971756569642e7a65727469666965722e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f756e6971756569642e7a65727469666965722e636f6d2f6d657461646174612f636f6e747261637400000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): ZertifierNFT
Arg [1] : symbol (string): ZER
Arg [2] : baseTokenURI (string): https://uniqueid.zertifier.com/metadata/
Arg [3] : baseContractURI (string): https://uniqueid.zertifier.com/metadata/contract
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 5a65727469666965724e46540000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5a45520000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [9] : 68747470733a2f2f756e6971756569642e7a65727469666965722e636f6d2f6d
Arg [10] : 657461646174612f000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [12] : 68747470733a2f2f756e6971756569642e7a65727469666965722e636f6d2f6d
Arg [13] : 657461646174612f636f6e747261637400000000000000000000000000000000
Deployed ByteCode Sourcemap
843:7030:19:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4015:246;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1534:111:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3882:121:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1861:193:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1210:253:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6949:166:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2430:202:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3527:182:19;;;:::i;:::-;;2576:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5120:179:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7634:124:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1717:230:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5605:513:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1034:84:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4271:521:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1790:205:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:16;;;:::i;:::-;;3143:176:19;;;:::i;:::-;;5327:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;966:85:16;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1331:143:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2799:137:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2511:102:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1917:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6405:534:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2679:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1642:132:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6128:157:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;991:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:198:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7504:120:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1059:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7769:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:16;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4811:506:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7239:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4015:246;4191:4;4218:36;4242:11;4218:23;:36::i;:::-;4211:43;;4015:246;;;:::o;2349:98:5:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;1534:111:6:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::o;4724:330:5:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;3882:121:0:-;3948:7;3974:6;:12;3981:4;3974:12;;;;;;;;;;;:22;;;3967:29;;3882:121;;;:::o;1861:193:1:-;1976:30;1992:4;1998:7;1976:15;:30::i;:::-;2016:31;2039:7;2016:12;:18;2029:4;2016:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;1861:193;;:::o;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;6949:166:19:-;7040:13;7071:12;:21;7084:7;7071:21;;;;;;;;;;;7093:14;7071:37;;;;;;:::i;:::-;;;;;;;;;;;;;7064:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6949:166;;;;:::o;2430:202:1:-;2548:33;2567:4;2573:7;2548:18;:33::i;:::-;2591:34;2617:7;2591:12;:18;2604:4;2591:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2430:202;;:::o;3527:182:19:-;3579:34;1097:24;3600:12;:10;:12::i;:::-;3579:7;:34::i;:::-;3571:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;3692:10;:8;:10::i;:::-;3527:182::o;2576:363::-;2652:34;1029:24;2673:12;:10;:12::i;:::-;2652:7;:34::i;:::-;2644:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;2914:18;2920:2;2924:7;2914:5;:18::i;:::-;2576:363;;:::o;5120:179:5:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;7634:124:19:-;7697:7;7722:29;7734:7;7722:29;;;;;;;;;;;;;;;;;:11;:29::i;:::-;7715:36;;7634:124;;;:::o;1717:230:6:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;;1916:24;;1717:230;;;:::o;5605:513:19:-;5743:1;5733:7;:11;:69;;;;;5801:1;5754:12;:21;5767:7;5754:21;;;;;;;;;;;5776:12;5754:35;;;;;;:::i;:::-;;;;;;;;;;;;;5748:49;;;;;:::i;:::-;;;:54;5733:69;:103;;;;;5835:1;5812:12;5806:26;:30;5733:103;5725:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;5886:41;1962:4:0;5894:18:19;;5914:12;:10;:12::i;:::-;5886:7;:41::i;:::-;5878:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;6025:13;5990:9;:18;6000:7;5990:18;;;;;;;;;;;6009:12;5990:32;;;;;;:::i;:::-;;;;;;;;;;;;;:48;;;;;;;;;;;;:::i;:::-;;6097:13;6062:49;;;;;;:::i;:::-;;;;;;;;6083:12;6062:49;;;;;;:::i;:::-;;;;;;;;6074:7;6062:49;;;;;;;;;;5605:513;;;:::o;1034:84:17:-;1081:4;1104:7;;;;;;;;;;;1097:14;;1034:84;:::o;2052:235:5:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;4271:521:19:-;4422:34;1029:24;4443:12;:10;:12::i;:::-;4422:7;:34::i;:::-;4414:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;4692:18;4698:2;4702:7;4692:5;:18::i;:::-;4731:54;4745:7;4753:14;4769:15;4731:13;:54::i;:::-;4271:521;;;;:::o;1790:205:5:-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:16:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;3143:176:19:-;3193:34;1097:24;3214:12;:10;:12::i;:::-;3193:7;:34::i;:::-;3185:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;3304:8;:6;:8::i;:::-;3143:176::o;5327:153::-;5414:7;5439:11;:20;5451:7;5439:20;;;;;;;;;;;5460:12;5439:34;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5432:41;;5327:153;;;;:::o;966:85:16:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;1331:143:1:-;1413:7;1439:28;1461:5;1439:12;:18;1452:4;1439:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1432:35;;1331:143;;;;:::o;2799:137:0:-;2877:4;2900:6;:12;2907:4;2900:12;;;;;;;;;;;:20;;:29;2921:7;2900:29;;;;;;;;;;;;;;;;;;;;;;;;;2893:36;;2799:137;;;;:::o;2511:102:5:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;1917:49:0:-;1962:4;1917:49;;;:::o;4144:290:5:-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;6405:534:19:-;6549:1;6539:7;:11;:71;;;;;6609:1;6560:12;:21;6573:7;6560:21;;;;;;;;;;;6582:14;6560:37;;;;;;:::i;:::-;;;;;;;;;;;;;6554:51;;;;;:::i;:::-;;;:56;6539:71;:107;;;;;6645:1;6620:14;6614:28;:32;6539:107;6531:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;6694:41;1962:4:0;6702:18:19;;6722:12;:10;:12::i;:::-;6694:7;:41::i;:::-;6686:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;6838:15;6798:12;:21;6811:7;6798:21;;;;;;;;;;;6820:14;6798:37;;;;;;:::i;:::-;;;;;;;;;;;;;:55;;;;;;;;;;;;:::i;:::-;;6916:15;6877:55;;;;;;:::i;:::-;;;;;;;;6900:14;6877:55;;;;;;:::i;:::-;;;;;;;;6891:7;6877:55;;;;;;;;;;6405:534;;;:::o;5365:320:5:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2679:329::-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;1642:132:1:-;1714:7;1740:27;:12;:18;1753:4;1740:18;;;;;;;;;;;:25;:27::i;:::-;1733:34;;1642:132;;;:::o;6128:157:19:-;6215:13;6246:9;:18;6256:7;6246:18;;;;;;;;;;;6265:12;6246:32;;;;;;:::i;:::-;;;;;;;;;;;;;6239:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6128:157;;;;:::o;991:62::-;1029:24;991:62;:::o;2142:198:1:-;2258:31;2275:4;2281:7;2258:16;:31::i;:::-;2299:34;2325:7;2299:12;:18;2312:4;2299:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2142:198;;:::o;7504:120:19:-;7558:13;7589:12;:21;7602:7;7589:21;;;;;;;;;;;:28;;;;;:::i;:::-;;;;;;;;;;;;;7582:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7504:120;;;:::o;1059:62::-;1097:24;1059:62;:::o;7769:99::-;7813:13;7845:16;7838:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7769:99;:::o;4500:162:5:-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;1839:189:16:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;4811:506:19:-;4935:41;1962:4:0;4943:18:19;;4963:12;:10;:12::i;:::-;4935:7;:41::i;:::-;4927:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;5048:1;5038:7;:11;:69;;;;;5106:1;5059:12;:21;5072:7;5059:21;;;;;;;;;;;5081:12;5059:35;;;;;;:::i;:::-;;;;;;;;;;;;;5053:49;;;;;:::i;:::-;;;:54;5038:69;:103;;;;;5140:1;5117:12;5111:26;:30;5038:103;5030:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;5220:15;5183:11;:20;5195:7;5183:20;;;;;;;;;;;5204:12;5183:34;;;;;;:::i;:::-;;;;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;;5294:15;5259:51;;5280:12;5259:51;;;;;;:::i;:::-;;;;;;;;5271:7;5259:51;;;;;;;;;;4811:506;;;:::o;7239:255::-;7336:41;1962:4:0;7344:18:19;;7364:12;:10;:12::i;:::-;7336:7;:41::i;:::-;7328:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;7440:46;7454:7;7440:46;;;;;;;;;;;;;;;;;7470:15;7440:13;:46::i;:::-;7239:255;;:::o;6049:110:0:-;6127:25;6138:4;6144:7;6127:10;:25::i;:::-;6049:110;;:::o;7545:150:8:-;7615:4;7638:50;7643:3;:10;;7679:5;7663:23;;7655:32;;7638:4;:50::i;:::-;7631:57;;7545:150;;;;:::o;909:222:6:-;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::o;7157:125:5:-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;587:96:3:-;640:7;666:10;659:17;;587:96;:::o;11008:171:5:-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;4253:145:0:-;4336:18;4349:4;4336:12;:18::i;:::-;2395:30;2406:4;2412:12;:10;:12::i;:::-;2395:10;:30::i;:::-;4366:25:::1;4377:4;4383:7;4366:10;:25::i;:::-;4253:145:::0;;;:::o;5270:214::-;5376:12;:10;:12::i;:::-;5365:23;;:7;:23;;;5357:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;5451:26;5463:4;5469:7;5451:11;:26::i;:::-;5270:214;;:::o;7863:156:8:-;7936:4;7959:53;7967:3;:10;;8003:5;7987:23;;7979:32;;7959:7;:53::i;:::-;7952:60;;7863:156;;;;:::o;2046:117:17:-;1613:8;:6;:8::i;:::-;1605:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2114:5:::1;2104:7;;:15;;;;;;;;;;;;;;;;;;2134:22;2143:12;:10;:12::i;:::-;2134:22;;;;;;:::i;:::-;;;;;;;;2046:117::o:0;9076:372:5:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;2034:169:16:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2079:124;2034:169;:::o;1799:115:17:-;1348:8;:6;:8::i;:::-;1347:9;1339:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1868:4:::1;1858:7;;:14;;;;;;;;;;;;;;;;;;1887:20;1894:12;:10;:12::i;:::-;1887:20;;;;;;:::i;:::-;;;;;;;;1799:115::o:0;8803:156:8:-;8877:7;8927:22;8931:3;:10;;8943:5;8927:3;:22::i;:::-;8919:31;;8896:56;;8803:156;;;;:::o;6547:307:5:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;2089:112:19:-;2149:13;2181;2174:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2089:112;:::o;275:703:18:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;8346:115:8:-;8409:7;8435:19;8443:3;:10;;8435:7;:19::i;:::-;8428:26;;8346:115;;;:::o;4632:147:0:-;4716:18;4729:4;4716:12;:18::i;:::-;2395:30;2406:4;2412:12;:10;:12::i;:::-;2395:10;:30::i;:::-;4746:26:::1;4758:4;4764:7;4746:11;:26::i;:::-;4632:147:::0;;;:::o;6537:224::-;6611:22;6619:4;6625:7;6611;:22::i;:::-;6606:149;;6681:4;6649:6;:12;6656:4;6649:12;;;;;;;;;;;:20;;:29;6670:7;6649:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;6731:12;:10;:12::i;:::-;6704:40;;6722:7;6704:40;;6716:4;6704:40;;;;;;;;;;6606:149;6537:224;;:::o;1630:404:8:-;1693:4;1714:21;1724:3;1729:5;1714:9;:21::i;:::-;1709:319;;1751:3;:11;;1768:5;1751:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1931:3;:11;;:18;;;;1909:3;:12;;:19;1922:5;1909:19;;;;;;;;;;;:40;;;;1970:4;1963:11;;;;1709:319;2012:5;2005:12;;1630:404;;;;;:::o;1431:300:5:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;3715:233:19:-;3896:45;3923:4;3929:2;3933:7;3896:26;:45::i;:::-;3715:233;;;:::o;3217:484:0:-;3297:22;3305:4;3311:7;3297;:22::i;:::-;3292:403;;3480:41;3508:7;3480:41;;3518:2;3480:19;:41::i;:::-;3592:38;3620:4;3612:13;;3627:2;3592:19;:38::i;:::-;3387:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3335:349;;;;;;;;;;;:::i;:::-;;;;;;;;3292:403;3217:484;;:::o;6767:225::-;6841:22;6849:4;6855:7;6841;:22::i;:::-;6837:149;;;6911:5;6879:6;:12;6886:4;6879:12;;;;;;;;;;;:20;;:29;6900:7;6879:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;6962:12;:10;:12::i;:::-;6935:40;;6953:7;6935:40;;6947:4;6935:40;;;;;;;;;;6837:149;6767:225;;:::o;2202:1388:8:-;2268:4;2384:18;2405:3;:12;;:19;2418:5;2405:19;;;;;;;;;;;;2384:40;;2453:1;2439:10;:15;2435:1149;;2808:21;2845:1;2832:10;:14;;;;:::i;:::-;2808:38;;2860:17;2901:1;2880:3;:11;;:18;;;;:22;;;;:::i;:::-;2860:42;;2934:13;2921:9;:26;2917:398;;2967:17;2987:3;:11;;2999:9;2987:22;;;;;;;;:::i;:::-;;;;;;;;;;2967:42;;3138:9;3109:3;:11;;3121:13;3109:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;3247:10;3221:3;:12;;:23;3234:9;3221:23;;;;;;;;;;;:36;;;;2949:366;2917:398;3393:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3485:3;:12;;:19;3498:5;3485:19;;;;;;;;;;;3478:26;;;3526:4;3519:11;;;;;;;2435:1149;3568:5;3561:12;;;2202:1388;;;;;:::o;4328:118::-;4395:7;4421:3;:11;;4433:5;4421:18;;;;;;;;:::i;:::-;;;;;;;;;;4414:25;;4328:118;;;;:::o;11732:778:5:-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:606;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12193:1;12176:6;:13;:18;12172:266;;;12218:60;;;;;;;;;;:::i;:::-;;;;;;;;12172:266;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;12069:41;;;12059:51;;;:6;:51;;;;12052:58;;;;;11898:606;12489:4;12482:11;;11732:778;;;;;;;:::o;3879:107:8:-;3935:7;3961:3;:11;;:18;;;;3954:25;;3879:107;;;:::o;3671:127::-;3744:4;3790:1;3767:3;:12;;:19;3780:5;3767:19;;;;;;;;;;;;:24;;3760:31;;3671:127;;;;:::o;534:212:1:-;619:4;657:42;642:57;;;:11;:57;;;;:97;;;;703:36;727:11;703:23;:36::i;:::-;642:97;635:104;;534:212;;;:::o;577:267:7:-;716:45;743:4;749:2;753:7;716:26;:45::i;:::-;781:8;:6;:8::i;:::-;780:9;772:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;577:267;;;:::o;1535:441:18:-;1610:13;1635:19;1680:1;1671:6;1667:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1657:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635:47;;1692:15;:6;1699:1;1692:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1717;:6;1724:1;1717:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1747:9;1772:1;1763:6;1759:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1747:26;;1742:132;1779:1;1775;:5;1742:132;;;1813:12;1834:3;1826:5;:11;1813:25;;;;;;;:::i;:::-;;;;;1801:6;1808:1;1801:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;1862:1;1852:11;;;;;1782:3;;;;:::i;:::-;;;1742:132;;;;1900:1;1891:5;:10;1883:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1962:6;1948:21;;;1535:441;;;;:::o;718:377:2:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;2510:202:0:-;2595:4;2633:32;2618:47;;;:11;:47;;;;:87;;;;2669:36;2693:11;2669:23;:36::i;:::-;2618:87;2611:94;;2510:202;;;:::o;2543:572:6:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;763:155:4:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;13066:122:5:-;;;;:::o;3821:161:6:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5103:289;5069:323;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4680:889;;4599:970;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;:::i;:::-;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3483:143;3409:217;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:20:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1125:139;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1270:137;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1413:141;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:122;;1685:79;;:::i;:::-;1644:122;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;1573:338;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:122;;2044:79;;:::i;:::-;2003:122;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;1931:340;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:119;;;2536:79;;:::i;:::-;2498:119;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2422:329;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:119;;;2888:79;;:::i;:::-;2850:119;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2757:474;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3237:619;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:120;;;4037:79;;:::i;:::-;3998:120;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:117;;;4621:79;;:::i;:::-;4585:117;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3862:943;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:119;;;4939:79;;:::i;:::-;4901:119;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4811:468;;;;;:::o;5285:474::-;5353:6;5361;5410:2;5398:9;5389:7;5385:23;5381:32;5378:119;;;5416:79;;:::i;:::-;5378:119;5536:1;5561:53;5606:7;5597:6;5586:9;5582:22;5561:53;:::i;:::-;5551:63;;5507:117;5663:2;5689:53;5734:7;5725:6;5714:9;5710:22;5689:53;:::i;:::-;5679:63;;5634:118;5285:474;;;;;:::o;5765:1125::-;5871:6;5879;5887;5895;5944:3;5932:9;5923:7;5919:23;5915:33;5912:120;;;5951:79;;:::i;:::-;5912:120;6071:1;6096:53;6141:7;6132:6;6121:9;6117:22;6096:53;:::i;:::-;6086:63;;6042:117;6198:2;6224:53;6269:7;6260:6;6249:9;6245:22;6224:53;:::i;:::-;6214:63;;6169:118;6354:2;6343:9;6339:18;6326:32;6385:18;6377:6;6374:30;6371:117;;;6407:79;;:::i;:::-;6371:117;6512:63;6567:7;6558:6;6547:9;6543:22;6512:63;:::i;:::-;6502:73;;6297:288;6652:2;6641:9;6637:18;6624:32;6683:18;6675:6;6672:30;6669:117;;;6705:79;;:::i;:::-;6669:117;6810:63;6865:7;6856:6;6845:9;6841:22;6810:63;:::i;:::-;6800:73;;6595:288;5765:1125;;;;;;;:::o;6896:329::-;6955:6;7004:2;6992:9;6983:7;6979:23;6975:32;6972:119;;;7010:79;;:::i;:::-;6972:119;7130:1;7155:53;7200:7;7191:6;7180:9;7176:22;7155:53;:::i;:::-;7145:63;;7101:117;6896:329;;;;:::o;7231:474::-;7299:6;7307;7356:2;7344:9;7335:7;7331:23;7327:32;7324:119;;;7362:79;;:::i;:::-;7324:119;7482:1;7507:53;7552:7;7543:6;7532:9;7528:22;7507:53;:::i;:::-;7497:63;;7453:117;7609:2;7635:53;7680:7;7671:6;7660:9;7656:22;7635:53;:::i;:::-;7625:63;;7580:118;7231:474;;;;;:::o;7711:::-;7779:6;7787;7836:2;7824:9;7815:7;7811:23;7807:32;7804:119;;;7842:79;;:::i;:::-;7804:119;7962:1;7987:53;8032:7;8023:6;8012:9;8008:22;7987:53;:::i;:::-;7977:63;;7933:117;8089:2;8115:53;8160:7;8151:6;8140:9;8136:22;8115:53;:::i;:::-;8105:63;;8060:118;7711:474;;;;;:::o;8191:327::-;8249:6;8298:2;8286:9;8277:7;8273:23;8269:32;8266:119;;;8304:79;;:::i;:::-;8266:119;8424:1;8449:52;8493:7;8484:6;8473:9;8469:22;8449:52;:::i;:::-;8439:62;;8395:116;8191:327;;;;:::o;8524:349::-;8593:6;8642:2;8630:9;8621:7;8617:23;8613:32;8610:119;;;8648:79;;:::i;:::-;8610:119;8768:1;8793:63;8848:7;8839:6;8828:9;8824:22;8793:63;:::i;:::-;8783:73;;8739:127;8524:349;;;;:::o;8879:329::-;8938:6;8987:2;8975:9;8966:7;8962:23;8958:32;8955:119;;;8993:79;;:::i;:::-;8955:119;9113:1;9138:53;9183:7;9174:6;9163:9;9159:22;9138:53;:::i;:::-;9128:63;;9084:117;8879:329;;;;:::o;9214:654::-;9292:6;9300;9349:2;9337:9;9328:7;9324:23;9320:32;9317:119;;;9355:79;;:::i;:::-;9317:119;9475:1;9500:53;9545:7;9536:6;9525:9;9521:22;9500:53;:::i;:::-;9490:63;;9446:117;9630:2;9619:9;9615:18;9602:32;9661:18;9653:6;9650:30;9647:117;;;9683:79;;:::i;:::-;9647:117;9788:63;9843:7;9834:6;9823:9;9819:22;9788:63;:::i;:::-;9778:73;;9573:288;9214:654;;;;;:::o;9874:799::-;9961:6;9969;9977;10026:2;10014:9;10005:7;10001:23;9997:32;9994:119;;;10032:79;;:::i;:::-;9994:119;10152:1;10177:53;10222:7;10213:6;10202:9;10198:22;10177:53;:::i;:::-;10167:63;;10123:117;10307:2;10296:9;10292:18;10279:32;10338:18;10330:6;10327:30;10324:117;;;10360:79;;:::i;:::-;10324:117;10465:63;10520:7;10511:6;10500:9;10496:22;10465:63;:::i;:::-;10455:73;;10250:288;10577:2;10603:53;10648:7;10639:6;10628:9;10624:22;10603:53;:::i;:::-;10593:63;;10548:118;9874:799;;;;;:::o;10679:979::-;10776:6;10784;10792;10841:2;10829:9;10820:7;10816:23;10812:32;10809:119;;;10847:79;;:::i;:::-;10809:119;10967:1;10992:53;11037:7;11028:6;11017:9;11013:22;10992:53;:::i;:::-;10982:63;;10938:117;11122:2;11111:9;11107:18;11094:32;11153:18;11145:6;11142:30;11139:117;;;11175:79;;:::i;:::-;11139:117;11280:63;11335:7;11326:6;11315:9;11311:22;11280:63;:::i;:::-;11270:73;;11065:288;11420:2;11409:9;11405:18;11392:32;11451:18;11443:6;11440:30;11437:117;;;11473:79;;:::i;:::-;11437:117;11578:63;11633:7;11624:6;11613:9;11609:22;11578:63;:::i;:::-;11568:73;;11363:288;10679:979;;;;;:::o;11664:118::-;11751:24;11769:5;11751:24;:::i;:::-;11746:3;11739:37;11664:118;;:::o;11788:109::-;11869:21;11884:5;11869:21;:::i;:::-;11864:3;11857:34;11788:109;;:::o;11903:118::-;11990:24;12008:5;11990:24;:::i;:::-;11985:3;11978:37;11903:118;;:::o;12027:360::-;12113:3;12141:38;12173:5;12141:38;:::i;:::-;12195:70;12258:6;12253:3;12195:70;:::i;:::-;12188:77;;12274:52;12319:6;12314:3;12307:4;12300:5;12296:16;12274:52;:::i;:::-;12351:29;12373:6;12351:29;:::i;:::-;12346:3;12342:39;12335:46;;12117:270;12027:360;;;;:::o;12393:364::-;12481:3;12509:39;12542:5;12509:39;:::i;:::-;12564:71;12628:6;12623:3;12564:71;:::i;:::-;12557:78;;12644:52;12689:6;12684:3;12677:4;12670:5;12666:16;12644:52;:::i;:::-;12721:29;12743:6;12721:29;:::i;:::-;12716:3;12712:39;12705:46;;12485:272;12393:364;;;;:::o;12763:377::-;12869:3;12897:39;12930:5;12897:39;:::i;:::-;12952:89;13034:6;13029:3;12952:89;:::i;:::-;12945:96;;13050:52;13095:6;13090:3;13083:4;13076:5;13072:16;13050:52;:::i;:::-;13127:6;13122:3;13118:16;13111:23;;12873:267;12763:377;;;;:::o;13146:366::-;13288:3;13309:67;13373:2;13368:3;13309:67;:::i;:::-;13302:74;;13385:93;13474:3;13385:93;:::i;:::-;13503:2;13498:3;13494:12;13487:19;;13146:366;;;:::o;13518:::-;13660:3;13681:67;13745:2;13740:3;13681:67;:::i;:::-;13674:74;;13757:93;13846:3;13757:93;:::i;:::-;13875:2;13870:3;13866:12;13859:19;;13518:366;;;:::o;13890:::-;14032:3;14053:67;14117:2;14112:3;14053:67;:::i;:::-;14046:74;;14129:93;14218:3;14129:93;:::i;:::-;14247:2;14242:3;14238:12;14231:19;;13890:366;;;:::o;14262:::-;14404:3;14425:67;14489:2;14484:3;14425:67;:::i;:::-;14418:74;;14501:93;14590:3;14501:93;:::i;:::-;14619:2;14614:3;14610:12;14603:19;;14262:366;;;:::o;14634:::-;14776:3;14797:67;14861:2;14856:3;14797:67;:::i;:::-;14790:74;;14873:93;14962:3;14873:93;:::i;:::-;14991:2;14986:3;14982:12;14975:19;;14634:366;;;:::o;15006:::-;15148:3;15169:67;15233:2;15228:3;15169:67;:::i;:::-;15162:74;;15245:93;15334:3;15245:93;:::i;:::-;15363:2;15358:3;15354:12;15347:19;;15006:366;;;:::o;15378:::-;15520:3;15541:67;15605:2;15600:3;15541:67;:::i;:::-;15534:74;;15617:93;15706:3;15617:93;:::i;:::-;15735:2;15730:3;15726:12;15719:19;;15378:366;;;:::o;15750:::-;15892:3;15913:67;15977:2;15972:3;15913:67;:::i;:::-;15906:74;;15989:93;16078:3;15989:93;:::i;:::-;16107:2;16102:3;16098:12;16091:19;;15750:366;;;:::o;16122:::-;16264:3;16285:67;16349:2;16344:3;16285:67;:::i;:::-;16278:74;;16361:93;16450:3;16361:93;:::i;:::-;16479:2;16474:3;16470:12;16463:19;;16122:366;;;:::o;16494:::-;16636:3;16657:67;16721:2;16716:3;16657:67;:::i;:::-;16650:74;;16733:93;16822:3;16733:93;:::i;:::-;16851:2;16846:3;16842:12;16835:19;;16494:366;;;:::o;16866:::-;17008:3;17029:67;17093:2;17088:3;17029:67;:::i;:::-;17022:74;;17105:93;17194:3;17105:93;:::i;:::-;17223:2;17218:3;17214:12;17207:19;;16866:366;;;:::o;17238:::-;17380:3;17401:67;17465:2;17460:3;17401:67;:::i;:::-;17394:74;;17477:93;17566:3;17477:93;:::i;:::-;17595:2;17590:3;17586:12;17579:19;;17238:366;;;:::o;17610:::-;17752:3;17773:67;17837:2;17832:3;17773:67;:::i;:::-;17766:74;;17849:93;17938:3;17849:93;:::i;:::-;17967:2;17962:3;17958:12;17951:19;;17610:366;;;:::o;17982:::-;18124:3;18145:67;18209:2;18204:3;18145:67;:::i;:::-;18138:74;;18221:93;18310:3;18221:93;:::i;:::-;18339:2;18334:3;18330:12;18323:19;;17982:366;;;:::o;18354:::-;18496:3;18517:67;18581:2;18576:3;18517:67;:::i;:::-;18510:74;;18593:93;18682:3;18593:93;:::i;:::-;18711:2;18706:3;18702:12;18695:19;;18354:366;;;:::o;18726:::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18726:366;;;:::o;19098:::-;19240:3;19261:67;19325:2;19320:3;19261:67;:::i;:::-;19254:74;;19337:93;19426:3;19337:93;:::i;:::-;19455:2;19450:3;19446:12;19439:19;;19098:366;;;:::o;19470:::-;19612:3;19633:67;19697:2;19692:3;19633:67;:::i;:::-;19626:74;;19709:93;19798:3;19709:93;:::i;:::-;19827:2;19822:3;19818:12;19811:19;;19470:366;;;:::o;19842:::-;19984:3;20005:67;20069:2;20064:3;20005:67;:::i;:::-;19998:74;;20081:93;20170:3;20081:93;:::i;:::-;20199:2;20194:3;20190:12;20183:19;;19842:366;;;:::o;20214:::-;20356:3;20377:67;20441:2;20436:3;20377:67;:::i;:::-;20370:74;;20453:93;20542:3;20453:93;:::i;:::-;20571:2;20566:3;20562:12;20555:19;;20214:366;;;:::o;20586:::-;20728:3;20749:67;20813:2;20808:3;20749:67;:::i;:::-;20742:74;;20825:93;20914:3;20825:93;:::i;:::-;20943:2;20938:3;20934:12;20927:19;;20586:366;;;:::o;20958:::-;21100:3;21121:67;21185:2;21180:3;21121:67;:::i;:::-;21114:74;;21197:93;21286:3;21197:93;:::i;:::-;21315:2;21310:3;21306:12;21299:19;;20958:366;;;:::o;21330:::-;21472:3;21493:67;21557:2;21552:3;21493:67;:::i;:::-;21486:74;;21569:93;21658:3;21569:93;:::i;:::-;21687:2;21682:3;21678:12;21671:19;;21330:366;;;:::o;21702:400::-;21862:3;21883:84;21965:1;21960:3;21883:84;:::i;:::-;21876:91;;21976:93;22065:3;21976:93;:::i;:::-;22094:1;22089:3;22085:11;22078:18;;21702:400;;;:::o;22108:366::-;22250:3;22271:67;22335:2;22330:3;22271:67;:::i;:::-;22264:74;;22347:93;22436:3;22347:93;:::i;:::-;22465:2;22460:3;22456:12;22449:19;;22108:366;;;:::o;22480:::-;22622:3;22643:67;22707:2;22702:3;22643:67;:::i;:::-;22636:74;;22719:93;22808:3;22719:93;:::i;:::-;22837:2;22832:3;22828:12;22821:19;;22480:366;;;:::o;22852:::-;22994:3;23015:67;23079:2;23074:3;23015:67;:::i;:::-;23008:74;;23091:93;23180:3;23091:93;:::i;:::-;23209:2;23204:3;23200:12;23193:19;;22852:366;;;:::o;23224:402::-;23384:3;23405:85;23487:2;23482:3;23405:85;:::i;:::-;23398:92;;23499:93;23588:3;23499:93;:::i;:::-;23617:2;23612:3;23608:12;23601:19;;23224:402;;;:::o;23632:366::-;23774:3;23795:67;23859:2;23854:3;23795:67;:::i;:::-;23788:74;;23871:93;23960:3;23871:93;:::i;:::-;23989:2;23984:3;23980:12;23973:19;;23632:366;;;:::o;24004:::-;24146:3;24167:67;24231:2;24226:3;24167:67;:::i;:::-;24160:74;;24243:93;24332:3;24243:93;:::i;:::-;24361:2;24356:3;24352:12;24345:19;;24004:366;;;:::o;24376:402::-;24536:3;24557:85;24639:2;24634:3;24557:85;:::i;:::-;24550:92;;24651:93;24740:3;24651:93;:::i;:::-;24769:2;24764:3;24760:12;24753:19;;24376:402;;;:::o;24784:366::-;24926:3;24947:67;25011:2;25006:3;24947:67;:::i;:::-;24940:74;;25023:93;25112:3;25023:93;:::i;:::-;25141:2;25136:3;25132:12;25125:19;;24784:366;;;:::o;25156:118::-;25243:24;25261:5;25243:24;:::i;:::-;25238:3;25231:37;25156:118;;:::o;25280:275::-;25412:3;25434:95;25525:3;25516:6;25434:95;:::i;:::-;25427:102;;25546:3;25539:10;;25280:275;;;;:::o;25561:435::-;25741:3;25763:95;25854:3;25845:6;25763:95;:::i;:::-;25756:102;;25875:95;25966:3;25957:6;25875:95;:::i;:::-;25868:102;;25987:3;25980:10;;25561:435;;;;;:::o;26002:381::-;26187:3;26209:148;26353:3;26209:148;:::i;:::-;26202:155;;26374:3;26367:10;;26002:381;;;:::o;26389:967::-;26771:3;26793:148;26937:3;26793:148;:::i;:::-;26786:155;;26958:95;27049:3;27040:6;26958:95;:::i;:::-;26951:102;;27070:148;27214:3;27070:148;:::i;:::-;27063:155;;27235:95;27326:3;27317:6;27235:95;:::i;:::-;27228:102;;27347:3;27340:10;;26389:967;;;;;:::o;27362:222::-;27455:4;27493:2;27482:9;27478:18;27470:26;;27506:71;27574:1;27563:9;27559:17;27550:6;27506:71;:::i;:::-;27362:222;;;;:::o;27590:640::-;27785:4;27823:3;27812:9;27808:19;27800:27;;27837:71;27905:1;27894:9;27890:17;27881:6;27837:71;:::i;:::-;27918:72;27986:2;27975:9;27971:18;27962:6;27918:72;:::i;:::-;28000;28068:2;28057:9;28053:18;28044:6;28000:72;:::i;:::-;28119:9;28113:4;28109:20;28104:2;28093:9;28089:18;28082:48;28147:76;28218:4;28209:6;28147:76;:::i;:::-;28139:84;;27590:640;;;;;;;:::o;28236:210::-;28323:4;28361:2;28350:9;28346:18;28338:26;;28374:65;28436:1;28425:9;28421:17;28412:6;28374:65;:::i;:::-;28236:210;;;;:::o;28452:222::-;28545:4;28583:2;28572:9;28568:18;28560:26;;28596:71;28664:1;28653:9;28649:17;28640:6;28596:71;:::i;:::-;28452:222;;;;:::o;28680:313::-;28793:4;28831:2;28820:9;28816:18;28808:26;;28880:9;28874:4;28870:20;28866:1;28855:9;28851:17;28844:47;28908:78;28981:4;28972:6;28908:78;:::i;:::-;28900:86;;28680:313;;;;:::o;28999:419::-;29165:4;29203:2;29192:9;29188:18;29180:26;;29252:9;29246:4;29242:20;29238:1;29227:9;29223:17;29216:47;29280:131;29406:4;29280:131;:::i;:::-;29272:139;;28999:419;;;:::o;29424:::-;29590:4;29628:2;29617:9;29613:18;29605:26;;29677:9;29671:4;29667:20;29663:1;29652:9;29648:17;29641:47;29705:131;29831:4;29705:131;:::i;:::-;29697:139;;29424:419;;;:::o;29849:::-;30015:4;30053:2;30042:9;30038:18;30030:26;;30102:9;30096:4;30092:20;30088:1;30077:9;30073:17;30066:47;30130:131;30256:4;30130:131;:::i;:::-;30122:139;;29849:419;;;:::o;30274:::-;30440:4;30478:2;30467:9;30463:18;30455:26;;30527:9;30521:4;30517:20;30513:1;30502:9;30498:17;30491:47;30555:131;30681:4;30555:131;:::i;:::-;30547:139;;30274:419;;;:::o;30699:::-;30865:4;30903:2;30892:9;30888:18;30880:26;;30952:9;30946:4;30942:20;30938:1;30927:9;30923:17;30916:47;30980:131;31106:4;30980:131;:::i;:::-;30972:139;;30699:419;;;:::o;31124:::-;31290:4;31328:2;31317:9;31313:18;31305:26;;31377:9;31371:4;31367:20;31363:1;31352:9;31348:17;31341:47;31405:131;31531:4;31405:131;:::i;:::-;31397:139;;31124:419;;;:::o;31549:::-;31715:4;31753:2;31742:9;31738:18;31730:26;;31802:9;31796:4;31792:20;31788:1;31777:9;31773:17;31766:47;31830:131;31956:4;31830:131;:::i;:::-;31822:139;;31549:419;;;:::o;31974:::-;32140:4;32178:2;32167:9;32163:18;32155:26;;32227:9;32221:4;32217:20;32213:1;32202:9;32198:17;32191:47;32255:131;32381:4;32255:131;:::i;:::-;32247:139;;31974:419;;;:::o;32399:::-;32565:4;32603:2;32592:9;32588:18;32580:26;;32652:9;32646:4;32642:20;32638:1;32627:9;32623:17;32616:47;32680:131;32806:4;32680:131;:::i;:::-;32672:139;;32399:419;;;:::o;32824:::-;32990:4;33028:2;33017:9;33013:18;33005:26;;33077:9;33071:4;33067:20;33063:1;33052:9;33048:17;33041:47;33105:131;33231:4;33105:131;:::i;:::-;33097:139;;32824:419;;;:::o;33249:::-;33415:4;33453:2;33442:9;33438:18;33430:26;;33502:9;33496:4;33492:20;33488:1;33477:9;33473:17;33466:47;33530:131;33656:4;33530:131;:::i;:::-;33522:139;;33249:419;;;:::o;33674:::-;33840:4;33878:2;33867:9;33863:18;33855:26;;33927:9;33921:4;33917:20;33913:1;33902:9;33898:17;33891:47;33955:131;34081:4;33955:131;:::i;:::-;33947:139;;33674:419;;;:::o;34099:::-;34265:4;34303:2;34292:9;34288:18;34280:26;;34352:9;34346:4;34342:20;34338:1;34327:9;34323:17;34316:47;34380:131;34506:4;34380:131;:::i;:::-;34372:139;;34099:419;;;:::o;34524:::-;34690:4;34728:2;34717:9;34713:18;34705:26;;34777:9;34771:4;34767:20;34763:1;34752:9;34748:17;34741:47;34805:131;34931:4;34805:131;:::i;:::-;34797:139;;34524:419;;;:::o;34949:::-;35115:4;35153:2;35142:9;35138:18;35130:26;;35202:9;35196:4;35192:20;35188:1;35177:9;35173:17;35166:47;35230:131;35356:4;35230:131;:::i;:::-;35222:139;;34949:419;;;:::o;35374:::-;35540:4;35578:2;35567:9;35563:18;35555:26;;35627:9;35621:4;35617:20;35613:1;35602:9;35598:17;35591:47;35655:131;35781:4;35655:131;:::i;:::-;35647:139;;35374:419;;;:::o;35799:::-;35965:4;36003:2;35992:9;35988:18;35980:26;;36052:9;36046:4;36042:20;36038:1;36027:9;36023:17;36016:47;36080:131;36206:4;36080:131;:::i;:::-;36072:139;;35799:419;;;:::o;36224:::-;36390:4;36428:2;36417:9;36413:18;36405:26;;36477:9;36471:4;36467:20;36463:1;36452:9;36448:17;36441:47;36505:131;36631:4;36505:131;:::i;:::-;36497:139;;36224:419;;;:::o;36649:::-;36815:4;36853:2;36842:9;36838:18;36830:26;;36902:9;36896:4;36892:20;36888:1;36877:9;36873:17;36866:47;36930:131;37056:4;36930:131;:::i;:::-;36922:139;;36649:419;;;:::o;37074:::-;37240:4;37278:2;37267:9;37263:18;37255:26;;37327:9;37321:4;37317:20;37313:1;37302:9;37298:17;37291:47;37355:131;37481:4;37355:131;:::i;:::-;37347:139;;37074:419;;;:::o;37499:::-;37665:4;37703:2;37692:9;37688:18;37680:26;;37752:9;37746:4;37742:20;37738:1;37727:9;37723:17;37716:47;37780:131;37906:4;37780:131;:::i;:::-;37772:139;;37499:419;;;:::o;37924:::-;38090:4;38128:2;38117:9;38113:18;38105:26;;38177:9;38171:4;38167:20;38163:1;38152:9;38148:17;38141:47;38205:131;38331:4;38205:131;:::i;:::-;38197:139;;37924:419;;;:::o;38349:::-;38515:4;38553:2;38542:9;38538:18;38530:26;;38602:9;38596:4;38592:20;38588:1;38577:9;38573:17;38566:47;38630:131;38756:4;38630:131;:::i;:::-;38622:139;;38349:419;;;:::o;38774:::-;38940:4;38978:2;38967:9;38963:18;38955:26;;39027:9;39021:4;39017:20;39013:1;39002:9;38998:17;38991:47;39055:131;39181:4;39055:131;:::i;:::-;39047:139;;38774:419;;;:::o;39199:::-;39365:4;39403:2;39392:9;39388:18;39380:26;;39452:9;39446:4;39442:20;39438:1;39427:9;39423:17;39416:47;39480:131;39606:4;39480:131;:::i;:::-;39472:139;;39199:419;;;:::o;39624:::-;39790:4;39828:2;39817:9;39813:18;39805:26;;39877:9;39871:4;39867:20;39863:1;39852:9;39848:17;39841:47;39905:131;40031:4;39905:131;:::i;:::-;39897:139;;39624:419;;;:::o;40049:::-;40215:4;40253:2;40242:9;40238:18;40230:26;;40302:9;40296:4;40292:20;40288:1;40277:9;40273:17;40266:47;40330:131;40456:4;40330:131;:::i;:::-;40322:139;;40049:419;;;:::o;40474:::-;40640:4;40678:2;40667:9;40663:18;40655:26;;40727:9;40721:4;40717:20;40713:1;40702:9;40698:17;40691:47;40755:131;40881:4;40755:131;:::i;:::-;40747:139;;40474:419;;;:::o;40899:::-;41065:4;41103:2;41092:9;41088:18;41080:26;;41152:9;41146:4;41142:20;41138:1;41127:9;41123:17;41116:47;41180:131;41306:4;41180:131;:::i;:::-;41172:139;;40899:419;;;:::o;41324:222::-;41417:4;41455:2;41444:9;41440:18;41432:26;;41468:71;41536:1;41525:9;41521:17;41512:6;41468:71;:::i;:::-;41324:222;;;;:::o;41552:129::-;41586:6;41613:20;;:::i;:::-;41603:30;;41642:33;41670:4;41662:6;41642:33;:::i;:::-;41552:129;;;:::o;41687:75::-;41720:6;41753:2;41747:9;41737:19;;41687:75;:::o;41768:307::-;41829:4;41919:18;41911:6;41908:30;41905:56;;;41941:18;;:::i;:::-;41905:56;41979:29;42001:6;41979:29;:::i;:::-;41971:37;;42063:4;42057;42053:15;42045:23;;41768:307;;;:::o;42081:308::-;42143:4;42233:18;42225:6;42222:30;42219:56;;;42255:18;;:::i;:::-;42219:56;42293:29;42315:6;42293:29;:::i;:::-;42285:37;;42377:4;42371;42367:15;42359:23;;42081:308;;;:::o;42395:98::-;42446:6;42480:5;42474:12;42464:22;;42395:98;;;:::o;42499:99::-;42551:6;42585:5;42579:12;42569:22;;42499:99;;;:::o;42604:168::-;42687:11;42721:6;42716:3;42709:19;42761:4;42756:3;42752:14;42737:29;;42604:168;;;;:::o;42778:169::-;42862:11;42896:6;42891:3;42884:19;42936:4;42931:3;42927:14;42912:29;;42778:169;;;;:::o;42953:148::-;43055:11;43092:3;43077:18;;42953:148;;;;:::o;43107:305::-;43147:3;43166:20;43184:1;43166:20;:::i;:::-;43161:25;;43200:20;43218:1;43200:20;:::i;:::-;43195:25;;43354:1;43286:66;43282:74;43279:1;43276:81;43273:107;;;43360:18;;:::i;:::-;43273:107;43404:1;43401;43397:9;43390:16;;43107:305;;;;:::o;43418:185::-;43458:1;43475:20;43493:1;43475:20;:::i;:::-;43470:25;;43509:20;43527:1;43509:20;:::i;:::-;43504:25;;43548:1;43538:35;;43553:18;;:::i;:::-;43538:35;43595:1;43592;43588:9;43583:14;;43418:185;;;;:::o;43609:348::-;43649:7;43672:20;43690:1;43672:20;:::i;:::-;43667:25;;43706:20;43724:1;43706:20;:::i;:::-;43701:25;;43894:1;43826:66;43822:74;43819:1;43816:81;43811:1;43804:9;43797:17;43793:105;43790:131;;;43901:18;;:::i;:::-;43790:131;43949:1;43946;43942:9;43931:20;;43609:348;;;;:::o;43963:191::-;44003:4;44023:20;44041:1;44023:20;:::i;:::-;44018:25;;44057:20;44075:1;44057:20;:::i;:::-;44052:25;;44096:1;44093;44090:8;44087:34;;;44101:18;;:::i;:::-;44087:34;44146:1;44143;44139:9;44131:17;;43963:191;;;;:::o;44160:96::-;44197:7;44226:24;44244:5;44226:24;:::i;:::-;44215:35;;44160:96;;;:::o;44262:90::-;44296:7;44339:5;44332:13;44325:21;44314:32;;44262:90;;;:::o;44358:77::-;44395:7;44424:5;44413:16;;44358:77;;;:::o;44441:149::-;44477:7;44517:66;44510:5;44506:78;44495:89;;44441:149;;;:::o;44596:126::-;44633:7;44673:42;44666:5;44662:54;44651:65;;44596:126;;;:::o;44728:77::-;44765:7;44794:5;44783:16;;44728:77;;;:::o;44811:154::-;44895:6;44890:3;44885;44872:30;44957:1;44948:6;44943:3;44939:16;44932:27;44811:154;;;:::o;44971:307::-;45039:1;45049:113;45063:6;45060:1;45057:13;45049:113;;;45148:1;45143:3;45139:11;45133:18;45129:1;45124:3;45120:11;45113:39;45085:2;45082:1;45078:10;45073:15;;45049:113;;;45180:6;45177:1;45174:13;45171:101;;;45260:1;45251:6;45246:3;45242:16;45235:27;45171:101;45020:258;44971:307;;;:::o;45284:171::-;45323:3;45346:24;45364:5;45346:24;:::i;:::-;45337:33;;45392:4;45385:5;45382:15;45379:41;;;45400:18;;:::i;:::-;45379:41;45447:1;45440:5;45436:13;45429:20;;45284:171;;;:::o;45461:320::-;45505:6;45542:1;45536:4;45532:12;45522:22;;45589:1;45583:4;45579:12;45610:18;45600:81;;45666:4;45658:6;45654:17;45644:27;;45600:81;45728:2;45720:6;45717:14;45697:18;45694:38;45691:84;;;45747:18;;:::i;:::-;45691:84;45512:269;45461:320;;;:::o;45787:281::-;45870:27;45892:4;45870:27;:::i;:::-;45862:6;45858:40;46000:6;45988:10;45985:22;45964:18;45952:10;45949:34;45946:62;45943:88;;;46011:18;;:::i;:::-;45943:88;46051:10;46047:2;46040:22;45830:238;45787:281;;:::o;46074:233::-;46113:3;46136:24;46154:5;46136:24;:::i;:::-;46127:33;;46182:66;46175:5;46172:77;46169:103;;;46252:18;;:::i;:::-;46169:103;46299:1;46292:5;46288:13;46281:20;;46074:233;;;:::o;46313:176::-;46345:1;46362:20;46380:1;46362:20;:::i;:::-;46357:25;;46396:20;46414:1;46396:20;:::i;:::-;46391:25;;46435:1;46425:35;;46440:18;;:::i;:::-;46425:35;46481:1;46478;46474:9;46469:14;;46313:176;;;;:::o;46495:180::-;46543:77;46540:1;46533:88;46640:4;46637:1;46630:15;46664:4;46661:1;46654:15;46681:180;46729:77;46726:1;46719:88;46826:4;46823:1;46816:15;46850:4;46847:1;46840:15;46867:180;46915:77;46912:1;46905:88;47012:4;47009:1;47002:15;47036:4;47033:1;47026:15;47053:180;47101:77;47098:1;47091:88;47198:4;47195:1;47188:15;47222:4;47219:1;47212:15;47239:180;47287:77;47284:1;47277:88;47384:4;47381:1;47374:15;47408:4;47405:1;47398:15;47425:180;47473:77;47470:1;47463:88;47570:4;47567:1;47560:15;47594:4;47591:1;47584:15;47611:117;47720:1;47717;47710:12;47734:117;47843:1;47840;47833:12;47857:117;47966:1;47963;47956:12;47980:117;48089:1;48086;48079:12;48103:102;48144:6;48195:2;48191:7;48186:2;48179:5;48175:14;48171:28;48161:38;;48103:102;;;:::o;48211:182::-;48351:34;48347:1;48339:6;48335:14;48328:58;48211:182;:::o;48399:176::-;48539:28;48535:1;48527:6;48523:14;48516:52;48399:176;:::o;48581:230::-;48721:34;48717:1;48709:6;48705:14;48698:58;48790:13;48785:2;48777:6;48773:15;48766:38;48581:230;:::o;48817:170::-;48957:22;48953:1;48945:6;48941:14;48934:46;48817:170;:::o;48993:230::-;49133:34;49129:1;49121:6;49117:14;49110:58;49202:13;49197:2;49189:6;49185:15;49178:38;48993:230;:::o;49229:237::-;49369:34;49365:1;49357:6;49353:14;49346:58;49438:20;49433:2;49425:6;49421:15;49414:45;49229:237;:::o;49472:225::-;49612:34;49608:1;49600:6;49596:14;49589:58;49681:8;49676:2;49668:6;49664:15;49657:33;49472:225;:::o;49703:178::-;49843:30;49839:1;49831:6;49827:14;49820:54;49703:178;:::o;49887:174::-;50027:26;50023:1;50015:6;50011:14;50004:50;49887:174;:::o;50067:249::-;50207:34;50203:1;50195:6;50191:14;50184:58;50276:32;50271:2;50263:6;50259:15;50252:57;50067:249;:::o;50322:223::-;50462:34;50458:1;50450:6;50446:14;50439:58;50531:6;50526:2;50518:6;50514:15;50507:31;50322:223;:::o;50551:175::-;50691:27;50687:1;50679:6;50675:14;50668:51;50551:175;:::o;50732:231::-;50872:34;50868:1;50860:6;50856:14;50849:58;50941:14;50936:2;50928:6;50924:15;50917:39;50732:231;:::o;50969:166::-;51109:18;51105:1;51097:6;51093:14;51086:42;50969:166;:::o;51141:243::-;51281:34;51277:1;51269:6;51265:14;51258:58;51350:26;51345:2;51337:6;51333:15;51326:51;51141:243;:::o;51390:229::-;51530:34;51526:1;51518:6;51514:14;51507:58;51599:12;51594:2;51586:6;51582:15;51575:37;51390:229;:::o;51625:228::-;51765:34;51761:1;51753:6;51749:14;51742:58;51834:11;51829:2;51821:6;51817:15;51810:36;51625:228;:::o;51859:226::-;51999:34;51995:1;51987:6;51983:14;51976:58;52068:9;52063:2;52055:6;52051:15;52044:34;51859:226;:::o;52091:182::-;52231:34;52227:1;52219:6;52215:14;52208:58;52091:182;:::o;52279:231::-;52419:34;52415:1;52407:6;52403:14;52396:58;52488:14;52483:2;52475:6;52471:15;52464:39;52279:231;:::o;52516:182::-;52656:34;52652:1;52644:6;52640:14;52633:58;52516:182;:::o;52704:228::-;52844:34;52840:1;52832:6;52828:14;52821:58;52913:11;52908:2;52900:6;52896:15;52889:36;52704:228;:::o;52938:234::-;53078:34;53074:1;53066:6;53062:14;53055:58;53147:17;53142:2;53134:6;53130:15;53123:42;52938:234;:::o;53178:153::-;53318:5;53314:1;53306:6;53302:14;53295:29;53178:153;:::o;53337:220::-;53477:34;53473:1;53465:6;53461:14;53454:58;53546:3;53541:2;53533:6;53529:15;53522:28;53337:220;:::o;53563:236::-;53703:34;53699:1;53691:6;53687:14;53680:58;53772:19;53767:2;53759:6;53755:15;53748:44;53563:236;:::o;53805:231::-;53945:34;53941:1;53933:6;53929:14;53922:58;54014:14;54009:2;54001:6;53997:15;53990:39;53805:231;:::o;54042:173::-;54182:25;54178:1;54170:6;54166:14;54159:49;54042:173;:::o;54221:248::-;54361:34;54357:1;54349:6;54345:14;54338:58;54430:31;54425:2;54417:6;54413:15;54406:56;54221:248;:::o;54475:251::-;54615:34;54611:1;54603:6;54599:14;54592:58;54684:34;54679:2;54671:6;54667:15;54660:59;54475:251;:::o;54732:167::-;54872:19;54868:1;54860:6;54856:14;54849:43;54732:167;:::o;54905:234::-;55045:34;55041:1;55033:6;55029:14;55022:58;55114:17;55109:2;55101:6;55097:15;55090:42;54905:234;:::o;55145:122::-;55218:24;55236:5;55218:24;:::i;:::-;55211:5;55208:35;55198:63;;55257:1;55254;55247:12;55198:63;55145:122;:::o;55273:116::-;55343:21;55358:5;55343:21;:::i;:::-;55336:5;55333:32;55323:60;;55379:1;55376;55369:12;55323:60;55273:116;:::o;55395:122::-;55468:24;55486:5;55468:24;:::i;:::-;55461:5;55458:35;55448:63;;55507:1;55504;55497:12;55448:63;55395:122;:::o;55523:120::-;55595:23;55612:5;55595:23;:::i;:::-;55588:5;55585:34;55575:62;;55633:1;55630;55623:12;55575:62;55523:120;:::o;55649:122::-;55722:24;55740:5;55722:24;:::i;:::-;55715:5;55712:35;55702:63;;55761:1;55758;55751:12;55702:63;55649:122;:::o
Swarm Source
ipfs://9e9bd0325f5e37088b5ac770a0318d471749569f7e4d710f2fb1b9bdbaebbf2a
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.