Contract Overview
[ Download CSV Export ]
Contract Source Code Verified (Exact Match)
Contract Name:
MogokNFT
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721.sol"; import "./ERC721Burnable.sol"; import "./ERC721Enumerable.sol"; import "./AccessControl.sol"; // 0x625786cbf7c2b0b4d369536ca30bbf9955dfe781 interface URIProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); } // 0x9a686c68AfD68cd66431EAF89ACA196e6Df6a077 interface mogokDataProvider { function mogokExists(uint256 x, uint256 y, uint256 z) external view returns (bool); } contract MogokNFT is ERC721, ERC721Burnable, ERC721Enumerable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); mogokDataProvider public constant dataProvider = mogokDataProvider(address(0x9a686c68AfD68cd66431EAF89ACA196e6Df6a077)); URIProvider public uriProvider = URIProvider(address(0x625786CBf7C2b0B4D369536CA30Bbf9955Dfe781)); event updatedUriProvider(address indexed provider); constructor() ERC721("MogokNFT", "MOGOK") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); } function safeMint(address to, uint256 tokenId) public onlyRole(MINTER_ROLE) { require(mogokExists(tokenId)); _safeMint(to, tokenId); } function setUriProvider(address provider) external onlyRole(DEFAULT_ADMIN_ROLE) { uriProvider = URIProvider(provider); emit updatedUriProvider(provider); } function mogokExists(uint256 _tokenId) internal view returns (bool) { require(_tokenId < 0xffffff, "Mogok: invalid token id"); uint256 x = (_tokenId >> 16) & 0xff; uint256 y = (_tokenId >> 8) & 0xff; uint256 z = _tokenId & 0xff; return dataProvider.mogokExists(x, y, z); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(mogokExists(_tokenId)); return uriProvider.tokenURI(_tokenId); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId, batchSize); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) 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); _; } /** * @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 virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @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 virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " 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 virtual 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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ 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 revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ 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. * * May emit a {RoleGranted} event. * * [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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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 // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) 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: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; import "./ERC721.sol"; import "./Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) 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 See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; 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 // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) 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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) 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); /** * @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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) 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 // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"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":true,"internalType":"address","name":"provider","type":"address"}],"name":"updatedUriProvider","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dataProvider","outputs":[{"internalType":"contract mogokDataProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","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":"address","name":"provider","type":"address"}],"name":"setUriProvider","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":[],"name":"uriProvider","outputs":[{"internalType":"contract URIProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405273625786cbf7c2b0b4d369536ca30bbf9955dfe781600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600881526020017f4d6f676f6b4e46540000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4f474f4b0000000000000000000000000000000000000000000000000000008152508160009081620000e4919062000525565b508060019081620000f6919062000525565b5050506200010e6000801b336200014660201b60201c565b620001407f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200014660201b60201c565b6200060c565b6200015882826200023860201b60201c565b62000234576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001d9620002a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032d57607f821691505b602082108103620003435762000342620002e5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200036e565b620003b986836200036e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200040662000400620003fa84620003d1565b620003db565b620003d1565b9050919050565b6000819050919050565b6200042283620003e5565b6200043a62000431826200040d565b8484546200037b565b825550505050565b600090565b6200045162000442565b6200045e81848462000417565b505050565b5b8181101562000486576200047a60008262000447565b60018101905062000464565b5050565b601f821115620004d5576200049f8162000349565b620004aa846200035e565b81016020851015620004ba578190505b620004d2620004c9856200035e565b83018262000463565b50505b505050565b600082821c905092915050565b6000620004fa60001984600802620004da565b1980831691505092915050565b6000620005158383620004e7565b9150826002028217905092915050565b6200053082620002ab565b67ffffffffffffffff8111156200054c576200054b620002b6565b5b62000558825462000314565b620005658282856200048a565b600060209050601f8311600181146200059d576000841562000588578287015190505b62000594858262000507565b86555062000604565b601f198416620005ad8662000349565b60005b82811015620005d757848901518255600182019150602085019450602081019050620005b0565b86831015620005f75784890151620005f3601f891682620004e7565b8355505b6001600288020188555050505b505050505050565b613f4c806200061c6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80635cc852fd116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610515578063d539139314610545578063d547741f14610563578063e985e9c51461057f576101c4565b8063a22cb465146104bf578063b334ed86146104db578063b88d4fde146104f9576101c4565b806391d14854116100d357806391d148541461043757806395d89b4114610467578063a144819414610485578063a217fddf146104a1576101c4565b80635cc852fd146103b95780636352211e146103d757806370a0823114610407576101c4565b80632f2ff15d1161016657806342842e0e1161014057806342842e0e1461033557806342966c681461035157806342a8b7991461036d5780634f6ccce714610389576101c4565b80632f2ff15d146102cd5780632f745c59146102e957806336568abe14610319576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd14610281578063248a9ca31461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612a63565b6105af565b6040516101f09190612aab565b60405180910390f35b6102016105c1565b60405161020e9190612b56565b60405180910390f35b610231600480360381019061022c9190612bae565b610653565b60405161023e9190612c1c565b60405180910390f35b610261600480360381019061025c9190612c63565b610699565b005b61026b6107b0565b6040516102789190612cb2565b60405180910390f35b61029b60048036038101906102969190612ccd565b6107bd565b005b6102b760048036038101906102b29190612d56565b61081d565b6040516102c49190612d92565b60405180910390f35b6102e760048036038101906102e29190612dad565b61083d565b005b61030360048036038101906102fe9190612c63565b61085e565b6040516103109190612cb2565b60405180910390f35b610333600480360381019061032e9190612dad565b610903565b005b61034f600480360381019061034a9190612ccd565b610986565b005b61036b60048036038101906103669190612bae565b6109a6565b005b61038760048036038101906103829190612ded565b610a02565b005b6103a3600480360381019061039e9190612bae565b610a97565b6040516103b09190612cb2565b60405180910390f35b6103c1610b08565b6040516103ce9190612e79565b60405180910390f35b6103f160048036038101906103ec9190612bae565b610b2e565b6040516103fe9190612c1c565b60405180910390f35b610421600480360381019061041c9190612ded565b610bb4565b60405161042e9190612cb2565b60405180910390f35b610451600480360381019061044c9190612dad565b610c6b565b60405161045e9190612aab565b60405180910390f35b61046f610cd6565b60405161047c9190612b56565b60405180910390f35b61049f600480360381019061049a9190612c63565b610d68565b005b6104a9610db3565b6040516104b69190612d92565b60405180910390f35b6104d960048036038101906104d49190612ec0565b610dba565b005b6104e3610dd0565b6040516104f09190612f21565b60405180910390f35b610513600480360381019061050e9190613071565b610de8565b005b61052f600480360381019061052a9190612bae565b610e4a565b60405161053c9190612b56565b60405180910390f35b61054d610f06565b60405161055a9190612d92565b60405180910390f35b61057d60048036038101906105789190612dad565b610f2a565b005b610599600480360381019061059491906130f4565b610f4b565b6040516105a69190612aab565b60405180910390f35b60006105ba82610fdf565b9050919050565b6060600080546105d090613163565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc90613163565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b600061065e82611059565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a482610b2e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070b90613206565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107336110a4565b73ffffffffffffffffffffffffffffffffffffffff16148061076257506107618161075c6110a4565b610f4b565b5b6107a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079890613298565b60405180910390fd5b6107ab83836110ac565b505050565b6000600880549050905090565b6107ce6107c86110a4565b82611165565b61080d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108049061332a565b60405180910390fd5b6108188383836111fa565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6108468261081d565b61084f816114f3565b6108598383611507565b505050565b600061086983610bb4565b82106108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a1906133bc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61090b6110a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f9061344e565b60405180910390fd5b61098282826115e8565b5050565b6109a183838360405180602001604052806000815250610de8565b505050565b6109b76109b16110a4565b82611165565b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed9061332a565b60405180910390fd5b6109ff816116ca565b50565b6000801b610a0f816114f3565b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f3161b1832a9ffff370994df4cc98793a9d38ab04836fd5be2db69a8ca453102f60405160405180910390a25050565b6000610aa16107b0565b8210610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad9906134e0565b60405180910390fd5b60088281548110610af657610af5613500565b5b90600052602060002001549050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b3a83611818565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba29061357b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061360d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610ce590613163565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1190613163565b8015610d5e5780601f10610d3357610100808354040283529160200191610d5e565b820191906000526020600020905b815481529060010190602001808311610d4157829003601f168201915b5050505050905090565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d92816114f3565b610d9b82611855565b610da457600080fd5b610dae8383611958565b505050565b6000801b81565b610dcc610dc56110a4565b8383611976565b5050565b739a686c68afd68cd66431eaf89aca196e6df6a07781565b610df9610df36110a4565b83611165565b610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f9061332a565b60405180910390fd5b610e4484848484611ae2565b50505050565b6060610e5582611855565b610e5e57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401610eb99190612cb2565b600060405180830381865afa158015610ed6573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610eff91906136ce565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610f338261081d565b610f3c816114f3565b610f4683836115e8565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611052575061105182611b3e565b5b9050919050565b61106281611bb8565b6110a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110989061357b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661111f83610b2e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061117183610b2e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111b357506111b28185610f4b565b5b806111f157508373ffffffffffffffffffffffffffffffffffffffff166111d984610653565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661121a82610b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790613789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d69061381b565b60405180910390fd5b6112ec8383836001611bf9565b8273ffffffffffffffffffffffffffffffffffffffff1661130c82610b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990613789565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114ee8383836001611c0b565b505050565b611504816114ff6110a4565b611c11565b50565b6115118282610c6b565b6115e4576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115896110a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6115f28282610c6b565b156116c6576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061166b6110a4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006116d582610b2e565b90506116e5816000846001611bf9565b6116ee82610b2e565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611814816000846001611c0b565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600062ffffff821061189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613887565b60405180910390fd5b600060ff601084901c169050600060ff600885901c169050600060ff85169050739a686c68afd68cd66431eaf89aca196e6df6a07773ffffffffffffffffffffffffffffffffffffffff1663de6367c28484846040518463ffffffff1660e01b815260040161190d939291906138a7565b602060405180830381865afa15801561192a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194e91906138f3565b9350505050919050565b611972828260405180602001604052806000815250611c96565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db9061396c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad59190612aab565b60405180910390a3505050565b611aed8484846111fa565b611af984848484611cf1565b611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f906139fe565b60405180910390fd5b50505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bb15750611bb082611e78565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611bda83611818565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611c0584848484611f5a565b50505050565b50505050565b611c1b8282610c6b565b611c9257611c28816120b8565b611c368360001c60206120e5565b604051602001611c47929190613af2565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c899190612b56565b60405180910390fd5b5050565b611ca08383612321565b611cad6000848484611cf1565b611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906139fe565b60405180910390fd5b505050565b6000611d128473ffffffffffffffffffffffffffffffffffffffff1661253e565b15611e6b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d3b6110a4565b8786866040518563ffffffff1660e01b8152600401611d5d9493929190613b81565b6020604051808303816000875af1925050508015611d9957506040513d601f19601f82011682018060405250810190611d969190613be2565b60015b611e1b573d8060008114611dc9576040519150601f19603f3d011682016040523d82523d6000602084013e611dce565b606091505b506000815103611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a906139fe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e70565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f4357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f535750611f5282612561565b5b9050919050565b611f66848484846125cb565b6001811115611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613c81565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ff157611fec816126f1565b612030565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461202f5761202e858261273a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120725761206d816128a7565b6120b1565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146120b0576120af8482612978565b5b5b5050505050565b60606120de8273ffffffffffffffffffffffffffffffffffffffff16601460ff166120e5565b9050919050565b6060600060028360026120f89190613cd0565b6121029190613d12565b67ffffffffffffffff81111561211b5761211a612f46565b5b6040519080825280601f01601f19166020018201604052801561214d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061218557612184613500565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106121e9576121e8613500565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026122299190613cd0565b6122339190613d12565b90505b60018111156122d3577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061227557612274613500565b5b1a60f81b82828151811061228c5761228b613500565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806122cc90613d46565b9050612236565b5060008414612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613dbb565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790613e27565b60405180910390fd5b61239981611bb8565b156123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090613e93565b60405180910390fd5b6123e7600083836001611bf9565b6123f081611bb8565b15612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790613e93565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461253a600083836001611c0b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60018111156126eb57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461265f5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126579190613eb3565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126ea5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e29190613d12565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161274784610bb4565b6127519190613eb3565b9050600060076000848152602001908152602001600020549050818114612836576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128bb9190613eb3565b90506000600960008481526020019081526020016000205490506000600883815481106128eb576128ea613500565b5b90600052602060002001549050806008838154811061290d5761290c613500565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061295c5761295b613ee7565b5b6001900381819060005260206000200160009055905550505050565b600061298383610bb4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4081612a0b565b8114612a4b57600080fd5b50565b600081359050612a5d81612a37565b92915050565b600060208284031215612a7957612a78612a01565b5b6000612a8784828501612a4e565b91505092915050565b60008115159050919050565b612aa581612a90565b82525050565b6000602082019050612ac06000830184612a9c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b00578082015181840152602081019050612ae5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b2882612ac6565b612b328185612ad1565b9350612b42818560208601612ae2565b612b4b81612b0c565b840191505092915050565b60006020820190508181036000830152612b708184612b1d565b905092915050565b6000819050919050565b612b8b81612b78565b8114612b9657600080fd5b50565b600081359050612ba881612b82565b92915050565b600060208284031215612bc457612bc3612a01565b5b6000612bd284828501612b99565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c0682612bdb565b9050919050565b612c1681612bfb565b82525050565b6000602082019050612c316000830184612c0d565b92915050565b612c4081612bfb565b8114612c4b57600080fd5b50565b600081359050612c5d81612c37565b92915050565b60008060408385031215612c7a57612c79612a01565b5b6000612c8885828601612c4e565b9250506020612c9985828601612b99565b9150509250929050565b612cac81612b78565b82525050565b6000602082019050612cc76000830184612ca3565b92915050565b600080600060608486031215612ce657612ce5612a01565b5b6000612cf486828701612c4e565b9350506020612d0586828701612c4e565b9250506040612d1686828701612b99565b9150509250925092565b6000819050919050565b612d3381612d20565b8114612d3e57600080fd5b50565b600081359050612d5081612d2a565b92915050565b600060208284031215612d6c57612d6b612a01565b5b6000612d7a84828501612d41565b91505092915050565b612d8c81612d20565b82525050565b6000602082019050612da76000830184612d83565b92915050565b60008060408385031215612dc457612dc3612a01565b5b6000612dd285828601612d41565b9250506020612de385828601612c4e565b9150509250929050565b600060208284031215612e0357612e02612a01565b5b6000612e1184828501612c4e565b91505092915050565b6000819050919050565b6000612e3f612e3a612e3584612bdb565b612e1a565b612bdb565b9050919050565b6000612e5182612e24565b9050919050565b6000612e6382612e46565b9050919050565b612e7381612e58565b82525050565b6000602082019050612e8e6000830184612e6a565b92915050565b612e9d81612a90565b8114612ea857600080fd5b50565b600081359050612eba81612e94565b92915050565b60008060408385031215612ed757612ed6612a01565b5b6000612ee585828601612c4e565b9250506020612ef685828601612eab565b9150509250929050565b6000612f0b82612e46565b9050919050565b612f1b81612f00565b82525050565b6000602082019050612f366000830184612f12565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7e82612b0c565b810181811067ffffffffffffffff82111715612f9d57612f9c612f46565b5b80604052505050565b6000612fb06129f7565b9050612fbc8282612f75565b919050565b600067ffffffffffffffff821115612fdc57612fdb612f46565b5b612fe582612b0c565b9050602081019050919050565b82818337600083830152505050565b600061301461300f84612fc1565b612fa6565b9050828152602081018484840111156130305761302f612f41565b5b61303b848285612ff2565b509392505050565b600082601f83011261305857613057612f3c565b5b8135613068848260208601613001565b91505092915050565b6000806000806080858703121561308b5761308a612a01565b5b600061309987828801612c4e565b94505060206130aa87828801612c4e565b93505060406130bb87828801612b99565b925050606085013567ffffffffffffffff8111156130dc576130db612a06565b5b6130e887828801613043565b91505092959194509250565b6000806040838503121561310b5761310a612a01565b5b600061311985828601612c4e565b925050602061312a85828601612c4e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317b57607f821691505b60208210810361318e5761318d613134565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131f0602183612ad1565b91506131fb82613194565b604082019050919050565b6000602082019050818103600083015261321f816131e3565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613282603d83612ad1565b915061328d82613226565b604082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613314602d83612ad1565b915061331f826132b8565b604082019050919050565b6000602082019050818103600083015261334381613307565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006133a6602b83612ad1565b91506133b18261334a565b604082019050919050565b600060208201905081810360008301526133d581613399565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613438602f83612ad1565b9150613443826133dc565b604082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006134ca602c83612ad1565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613565601883612ad1565b91506135708261352f565b602082019050919050565b6000602082019050818103600083015261359481613558565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135f7602983612ad1565b91506136028261359b565b604082019050919050565b60006020820190508181036000830152613626816135ea565b9050919050565b600067ffffffffffffffff82111561364857613647612f46565b5b61365182612b0c565b9050602081019050919050565b600061367161366c8461362d565b612fa6565b90508281526020810184848401111561368d5761368c612f41565b5b613698848285612ae2565b509392505050565b600082601f8301126136b5576136b4612f3c565b5b81516136c584826020860161365e565b91505092915050565b6000602082840312156136e4576136e3612a01565b5b600082015167ffffffffffffffff81111561370257613701612a06565b5b61370e848285016136a0565b91505092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613773602583612ad1565b915061377e82613717565b604082019050919050565b600060208201905081810360008301526137a281613766565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613805602483612ad1565b9150613810826137a9565b604082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f4d6f676f6b3a20696e76616c696420746f6b656e206964000000000000000000600082015250565b6000613871601783612ad1565b915061387c8261383b565b602082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b60006060820190506138bc6000830186612ca3565b6138c96020830185612ca3565b6138d66040830184612ca3565b949350505050565b6000815190506138ed81612e94565b92915050565b60006020828403121561390957613908612a01565b5b6000613917848285016138de565b91505092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613956601983612ad1565b915061396182613920565b602082019050919050565b6000602082019050818103600083015261398581613949565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006139e8603283612ad1565b91506139f38261398c565b604082019050919050565b60006020820190508181036000830152613a17816139db565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613a5f601783613a1e565b9150613a6a82613a29565b601782019050919050565b6000613a8082612ac6565b613a8a8185613a1e565b9350613a9a818560208601612ae2565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613adc601183613a1e565b9150613ae782613aa6565b601182019050919050565b6000613afd82613a52565b9150613b098285613a75565b9150613b1482613acf565b9150613b208284613a75565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613b5382613b2c565b613b5d8185613b37565b9350613b6d818560208601612ae2565b613b7681612b0c565b840191505092915050565b6000608082019050613b966000830187612c0d565b613ba36020830186612c0d565b613bb06040830185612ca3565b8181036060830152613bc28184613b48565b905095945050505050565b600081519050613bdc81612a37565b92915050565b600060208284031215613bf857613bf7612a01565b5b6000613c0684828501613bcd565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613c6b603583612ad1565b9150613c7682613c0f565b604082019050919050565b60006020820190508181036000830152613c9a81613c5e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cdb82612b78565b9150613ce683612b78565b9250828202613cf481612b78565b91508282048414831517613d0b57613d0a613ca1565b5b5092915050565b6000613d1d82612b78565b9150613d2883612b78565b9250828201905080821115613d4057613d3f613ca1565b5b92915050565b6000613d5182612b78565b915060008203613d6457613d63613ca1565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613da5602083612ad1565b9150613db082613d6f565b602082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613e11602083612ad1565b9150613e1c82613ddb565b602082019050919050565b60006020820190508181036000830152613e4081613e04565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613e7d601c83612ad1565b9150613e8882613e47565b602082019050919050565b60006020820190508181036000830152613eac81613e70565b9050919050565b6000613ebe82612b78565b9150613ec983612b78565b9250828203905081811115613ee157613ee0613ca1565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122011d0ec265186aca39240991f3c0c33f1291c519fc3cacbaae1fcb1d15f85789864736f6c63430008110033
Deployed ByteCode Sourcemap
488:1771:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2073:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2406:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3870:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3403:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1629:111:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4547:326:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4343:129:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4768:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1305:253:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5877:214:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4939:179:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;517:238:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1186:160:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1812:230:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;755:97:14;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2125:219:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1864:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2860:145:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2568:102:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1044:139:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1992:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4104:153:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;633:119:14;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5184:314:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1636:161:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;568:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5193:147:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4323:162:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2073:184:14;2199:4;2217:36;2241:11;2217:23;:36::i;:::-;2210:43;;2073:184;;;:::o;2406:98:4:-;2460:13;2492:5;2485:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2406:98;:::o;3870:167::-;3946:7;3965:23;3980:7;3965:14;:23::i;:::-;4006:15;:24;4022:7;4006:24;;;;;;;;;;;;;;;;;;;;;3999:31;;3870:167;;;:::o;3403:406::-;3483:13;3499:23;3514:7;3499:14;:23::i;:::-;3483:39;;3546:5;3540:11;;:2;:11;;;3532:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3637:5;3621:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3646:37;3663:5;3670:12;:10;:12::i;:::-;3646:16;:37::i;:::-;3621:62;3600:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;3781:21;3790:2;3794:7;3781:8;:21::i;:::-;3473:336;3403:406;;:::o;1629:111:6:-;1690:7;1716:10;:17;;;;1709:24;;1629:111;:::o;4547:326:4:-;4736:41;4755:12;:10;:12::i;:::-;4769:7;4736:18;:41::i;:::-;4728:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;4838:28;4848:4;4854:2;4858:7;4838:9;:28::i;:::-;4547:326;;;:::o;4343:129:0:-;4417:7;4443:6;:12;4450:4;4443:12;;;;;;;;;;;:22;;;4436:29;;4343:129;;;:::o;4768:145::-;4851:18;4864:4;4851:12;:18::i;:::-;2470:16;2481:4;2470:10;:16::i;:::-;4881:25:::1;4892:4;4898:7;4881:10;:25::i;:::-;4768:145:::0;;;:::o;1305:253:6:-;1402:7;1437:23;1454:5;1437:16;:23::i;:::-;1429:5;:31;1421:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1525:12;:19;1538:5;1525:19;;;;;;;;;;;;;;;:26;1545:5;1525:26;;;;;;;;;;;;1518:33;;1305:253;;;;:::o;5877:214:0:-;5983:12;:10;:12::i;:::-;5972:23;;:7;:23;;;5964:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;6058:26;6070:4;6076:7;6058:11;:26::i;:::-;5877:214;;:::o;4939:179:4:-;5072:39;5089:4;5095:2;5099:7;5072:39;;;;;;;;;;;;:16;:39::i;:::-;4939:179;;;:::o;517:238:5:-;633:41;652:12;:10;:12::i;:::-;666:7;633:18;:41::i;:::-;625:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;734:14;740:7;734:5;:14::i;:::-;517:238;:::o;1186:160:14:-;2037:4:0;1246:18:14;;2470:16:0;2481:4;2470:10;:16::i;:::-;1296:8:14::1;1270:11;;:35;;;;;;;;;;;;;;;;;;1333:8;1314:28;;;;;;;;;;;;1186:160:::0;;:::o;1812:230:6:-;1887:7;1922:30;:28;:30::i;:::-;1914:5;:38;1906:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2018:10;2029:5;2018:17;;;;;;;;:::i;:::-;;;;;;;;;;2011:24;;1812:230;;;:::o;755:97:14:-;;;;;;;;;;;;;:::o;2125:219:4:-;2197:7;2216:13;2232:17;2241:7;2232:8;:17::i;:::-;2216:33;;2284:1;2267:19;;:5;:19;;;2259:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2332:5;2325:12;;;2125:219;;;:::o;1864:204::-;1936:7;1980:1;1963:19;;:5;:19;;;1955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2045:9;:16;2055:5;2045:16;;;;;;;;;;;;;;;;2038:23;;1864:204;;;:::o;2860:145:0:-;2946:4;2969:6;:12;2976:4;2969:12;;;;;;;;;;;:20;;:29;2990:7;2969:29;;;;;;;;;;;;;;;;;;;;;;;;;2962:36;;2860:145;;;;:::o;2568:102:4:-;2624:13;2656:7;2649:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2568:102;:::o;1044:139:14:-;606:24;2470:16:0;2481:4;2470:10;:16::i;:::-;1132:20:14::1;1144:7;1132:11;:20::i;:::-;1124:29;;;::::0;::::1;;1157:22;1167:2;1171:7;1157:9;:22::i;:::-;1044:139:::0;;;:::o;1992:49:0:-;2037:4;1992:49;;;:::o;4104:153:4:-;4198:52;4217:12;:10;:12::i;:::-;4231:8;4241;4198:18;:52::i;:::-;4104:153;;:::o;633:119:14:-;708:42;633:119;:::o;5184:314:4:-;5352:41;5371:12;:10;:12::i;:::-;5385:7;5352:18;:41::i;:::-;5344:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;5453:38;5467:4;5473:2;5477:7;5486:4;5453:13;:38::i;:::-;5184:314;;;;:::o;1636:161:14:-;1702:13;1729:21;1741:8;1729:11;:21::i;:::-;1721:30;;;;;;1763:11;;;;;;;;;;;:20;;;1784:8;1763:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1756:37;;1636:161;;;:::o;568:62::-;606:24;568:62;:::o;5193:147:0:-;5277:18;5290:4;5277:12;:18::i;:::-;2470:16;2481:4;2470:10;:16::i;:::-;5307:26:::1;5319:4;5325:7;5307:11;:26::i;:::-;5193:147:::0;;;:::o;4323:162:4:-;4420:4;4443:18;:25;4462:5;4443:25;;;;;;;;;;;;;;;:35;4469:8;4443:35;;;;;;;;;;;;;;;;;;;;;;;;;4436:42;;4323:162;;;;:::o;2571:202:0:-;2656:4;2694:32;2679:47;;;:11;:47;;;;:87;;;;2730:36;2754:11;2730:23;:36::i;:::-;2679:87;2672:94;;2571:202;;;:::o;13401:133:4:-;13482:16;13490:7;13482;:16::i;:::-;13474:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;13401:133;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;12703:171:4:-;12804:2;12777:15;:24;12793:7;12777:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12859:7;12855:2;12821:46;;12830:23;12845:7;12830:14;:23::i;:::-;12821:46;;;;;;;;;;;;12703:171;;:::o;7475:261::-;7568:4;7584:13;7600:23;7615:7;7600:14;:23::i;:::-;7584:39;;7652:5;7641:16;;:7;:16;;;:52;;;;7661:32;7678:5;7685:7;7661:16;:32::i;:::-;7641:52;:87;;;;7721:7;7697:31;;:20;7709:7;7697:11;:20::i;:::-;:31;;;7641:87;7633:96;;;7475:261;;;;:::o;11358:1233::-;11512:4;11485:31;;:23;11500:7;11485:14;:23::i;:::-;:31;;;11477:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11590:1;11576:16;;:2;:16;;;11568:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;11644:42;11665:4;11671:2;11675:7;11684:1;11644:20;:42::i;:::-;11813:4;11786:31;;:23;11801:7;11786:14;:23::i;:::-;:31;;;11778:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11928:15;:24;11944:7;11928:24;;;;;;;;;;;;11921:31;;;;;;;;;;;12415:1;12396:9;:15;12406:4;12396:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;12447:1;12430:9;:13;12440:2;12430:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;12487:2;12468:7;:16;12476:7;12468:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;12524:7;12520:2;12505:27;;12514:4;12505:27;;;;;;;;;;;;12543:41;12563:4;12569:2;12573:7;12582:1;12543:19;:41::i;:::-;11358:1233;;;:::o;3299:103:0:-;3365:30;3376:4;3382:12;:10;:12::i;:::-;3365:10;:30::i;:::-;3299:103;:::o;7426:233::-;7509:22;7517:4;7523:7;7509;:22::i;:::-;7504:149;;7579:4;7547:6;:12;7554:4;7547:12;;;;;;;;;;;:20;;:29;7568:7;7547:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7629:12;:10;:12::i;:::-;7602:40;;7620:7;7602:40;;7614:4;7602:40;;;;;;;;;;7504:149;7426:233;;:::o;7830:234::-;7913:22;7921:4;7927:7;7913;:22::i;:::-;7909:149;;;7983:5;7951:6;:12;7958:4;7951:12;;;;;;;;;;;:20;;:29;7972:7;7951:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;8034:12;:10;:12::i;:::-;8007:40;;8025:7;8007:40;;8019:4;8007:40;;;;;;;;;;7909:149;7830:234;;:::o;10272:762:4:-;10331:13;10347:23;10362:7;10347:14;:23::i;:::-;10331:39;;10381:51;10402:5;10417:1;10421:7;10430:1;10381:20;:51::i;:::-;10542:23;10557:7;10542:14;:23::i;:::-;10534:31;;10610:15;:24;10626:7;10610:24;;;;;;;;;;;;10603:31;;;;;;;;;;;10870:1;10850:9;:16;10860:5;10850:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;10898:7;:16;10906:7;10898:16;;;;;;;;;;;;10891:23;;;;;;;;;;;10958:7;10954:1;10930:36;;10939:5;10930:36;;;;;;;;;;;;10977:50;10997:5;11012:1;11016:7;11025:1;10977:19;:50::i;:::-;10321:713;10272:762;:::o;6773:115::-;6839:7;6865;:16;6873:7;6865:16;;;;;;;;;;;;;;;;;;;;;6858:23;;6773:115;;;:::o;1349:284:14:-;1411:4;1440:8;1429;:19;1421:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1480:9;1511:4;1505:2;1493:8;:14;;1492:23;1480:35;;1519:9;1549:4;1544:1;1532:8;:13;;1531:22;1519:34;;1557:9;1580:4;1569:8;:15;1557:27;;708:42;1596:24;;;1621:1;1624;1627;1596:33;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1589:40;;;;;1349:284;;;:::o;8066:108:4:-;8141:26;8151:2;8155:7;8141:26;;;;;;;;;;;;:9;:26::i;:::-;8066:108;;:::o;13010:307::-;13160:8;13151:17;;:5;:17;;;13143:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;13246:8;13208:18;:25;13227:5;13208:25;;;;;;;;;;;;;;;:35;13234:8;13208:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;13291:8;13269:41;;13284:5;13269:41;;;13301:8;13269:41;;;;;;:::i;:::-;;;;;;;;13010:307;;;:::o;6359:305::-;6509:28;6519:4;6525:2;6529:7;6509:9;:28::i;:::-;6555:47;6578:4;6584:2;6588:7;6597:4;6555:22;:47::i;:::-;6547:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6359:305;;;;:::o;1004:222:6:-;1106:4;1144:35;1129:50;;;:11;:50;;;;:90;;;;1183:36;1207:11;1183:23;:36::i;:::-;1129:90;1122:97;;1004:222;;;:::o;7191:126:4:-;7256:4;7308:1;7279:31;;:17;7288:7;7279:8;:17::i;:::-;:31;;;;7272:38;;7191:126;;;:::o;1865:205:14:-;2010:56;2037:4;2043:2;2047:7;2056:9;2010:26;:56::i;:::-;1865:205;;;;:::o;16735:153:4:-;;;;;:::o;3683:479:0:-;3771:22;3779:4;3785:7;3771;:22::i;:::-;3766:390;;3954:28;3974:7;3954:19;:28::i;:::-;4053:38;4081:4;4073:13;;4088:2;4053:19;:38::i;:::-;3861:252;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3809:336;;;;;;;;;;;:::i;:::-;;;;;;;;3766:390;3683:479;;:::o;8395:309:4:-;8519:18;8525:2;8529:7;8519:5;:18::i;:::-;8568:53;8599:1;8603:2;8607:7;8616:4;8568:22;:53::i;:::-;8547:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;8395:309;;;:::o;14086:831::-;14235:4;14255:15;:2;:13;;;:15::i;:::-;14251:660;;;14306:2;14290:36;;;14327:12;:10;:12::i;:::-;14341:4;14347:7;14356:4;14290:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14286:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14545:1;14528:6;:13;:18;14524:321;;14570:60;;;;;;;;;;:::i;:::-;;;;;;;;14524:321;14797:6;14791:13;14782:6;14778:2;14774:15;14767:38;14286:573;14421:41;;;14411:51;;;:6;:51;;;;14404:58;;;;;14251:660;14896:4;14889:11;;14086:831;;;;;;;:::o;1505:300::-;1607:4;1657:25;1642:40;;;:11;:40;;;;:104;;;;1713:33;1698:48;;;:11;:48;;;;1642:104;:156;;;;1762:36;1786:11;1762:23;:36::i;:::-;1642:156;1623:175;;1505:300;;;:::o;2111:890:6:-;2282:61;2309:4;2315:2;2319:12;2333:9;2282:26;:61::i;:::-;2370:1;2358:9;:13;2354:219;;;2499:63;;;;;;;;;;:::i;:::-;;;;;;;;2354:219;2583:15;2601:12;2583:30;;2644:1;2628:18;;:4;:18;;;2624:183;;2662:40;2694:7;2662:31;:40::i;:::-;2624:183;;;2731:2;2723:10;;:4;:10;;;2719:88;;2749:47;2782:4;2788:7;2749:32;:47::i;:::-;2719:88;2624:183;2834:1;2820:16;;:2;:16;;;2816:179;;2852:45;2889:7;2852:36;:45::i;:::-;2816:179;;;2924:4;2918:10;;:2;:10;;;2914:81;;2944:40;2972:2;2976:7;2944:27;:40::i;:::-;2914:81;2816:179;2272:729;2111:890;;;;:::o;2097:149:15:-;2155:13;2187:52;2215:4;2199:22;;306:2;2187:52;;:11;:52::i;:::-;2180:59;;2097:149;;;:::o;1508:437::-;1583:13;1608:19;1653:1;1644:6;1640:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1630:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1608:47;;1665:15;:6;1672:1;1665:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1690;:6;1697:1;1690:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1720:9;1745:1;1736:6;1732:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1720:26;;1715:128;1752:1;1748;:5;1715:128;;;1786:8;1803:3;1795:5;:11;1786:21;;;;;;;:::i;:::-;;;;;1774:6;1781:1;1774:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;1831:1;1821:11;;;;;1755:3;;;;:::i;:::-;;;1715:128;;;;1869:1;1860:5;:10;1852:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1931:6;1917:21;;;1508:437;;;;:::o;9026:920:4:-;9119:1;9105:16;;:2;:16;;;9097:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9177:16;9185:7;9177;:16::i;:::-;9176:17;9168:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9237:48;9266:1;9270:2;9274:7;9283:1;9237:20;:48::i;:::-;9381:16;9389:7;9381;:16::i;:::-;9380:17;9372:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9789:1;9772:9;:13;9782:2;9772:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;9830:2;9811:7;:16;9819:7;9811:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9873:7;9869:2;9848:33;;9865:1;9848:33;;;;;;;;;;;;9892:47;9920:1;9924:2;9928:7;9937:1;9892:19;:47::i;:::-;9026:920;;:::o;1175:320:1:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;829:155:3:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;15633:396:4:-;15817:1;15805:9;:13;15801:222;;;15854:1;15838:18;;:4;:18;;;15834:85;;15895:9;15876;:15;15886:4;15876:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15834:85;15950:1;15936:16;;:2;:16;;;15932:81;;15989:9;15972;:13;15982:2;15972:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;15932:81;15801:222;15633:396;;;;:::o;3707:161:6:-;3810:10;:17;;;;3783:15;:24;3799:7;3783:24;;;;;;;;;;;:44;;;;3837:10;3853:7;3837:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3707:161;:::o;4485:970::-;4747:22;4797:1;4772:22;4789:4;4772:16;:22::i;:::-;:26;;;;:::i;:::-;4747:51;;4808:18;4829:17;:26;4847:7;4829:26;;;;;;;;;;;;4808:47;;4973:14;4959:10;:28;4955:323;;5003:19;5025:12;:18;5038:4;5025:18;;;;;;;;;;;;;;;:34;5044:14;5025:34;;;;;;;;;;;;5003:56;;5107:11;5074:12;:18;5087:4;5074:18;;;;;;;;;;;;;;;:30;5093:10;5074:30;;;;;;;;;;;:44;;;;5223:10;5190:17;:30;5208:11;5190:30;;;;;;;;;;;:43;;;;4989:289;4955:323;5371:17;:26;5389:7;5371:26;;;;;;;;;;;5364:33;;;5414:12;:18;5427:4;5414:18;;;;;;;;;;;;;;;:34;5433:14;5414:34;;;;;;;;;;;5407:41;;;4566:889;;4485:970;;:::o;5743:1061::-;5992:22;6037:1;6017:10;:17;;;;:21;;;;:::i;:::-;5992:46;;6048:18;6069:15;:24;6085:7;6069:24;;;;;;;;;;;;6048:45;;6415:19;6437:10;6448:14;6437:26;;;;;;;;:::i;:::-;;;;;;;;;;6415:48;;6499:11;6474:10;6485;6474:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6609:10;6578:15;:28;6594:11;6578:28;;;;;;;;;;;:41;;;;6747:15;:24;6763:7;6747:24;;;;;;;;;;;6740:31;;;6781:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5814:990;;;5743:1061;:::o;3295:217::-;3379:14;3396:20;3413:2;3396:16;:20::i;:::-;3379:37;;3453:7;3426:12;:16;3439:2;3426:16;;;;;;;;;;;;;;;:24;3443:6;3426:24;;;;;;;;;;;:34;;;;3499:6;3470:17;:26;3488:7;3470:26;;;;;;;;;;;:35;;;;3369:143;3295:217;;:::o;7:75:16:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:77::-;5904:7;5933:5;5922:16;;5867:77;;;:::o;5950:122::-;6023:24;6041:5;6023:24;:::i;:::-;6016:5;6013:35;6003:63;;6062:1;6059;6052:12;6003:63;5950:122;:::o;6078:139::-;6124:5;6162:6;6149:20;6140:29;;6178:33;6205:5;6178:33;:::i;:::-;6078:139;;;;:::o;6223:329::-;6282:6;6331:2;6319:9;6310:7;6306:23;6302:32;6299:119;;;6337:79;;:::i;:::-;6299:119;6457:1;6482:53;6527:7;6518:6;6507:9;6503:22;6482:53;:::i;:::-;6472:63;;6428:117;6223:329;;;;:::o;6558:118::-;6645:24;6663:5;6645:24;:::i;:::-;6640:3;6633:37;6558:118;;:::o;6682:222::-;6775:4;6813:2;6802:9;6798:18;6790:26;;6826:71;6894:1;6883:9;6879:17;6870:6;6826:71;:::i;:::-;6682:222;;;;:::o;6910:474::-;6978:6;6986;7035:2;7023:9;7014:7;7010:23;7006:32;7003:119;;;7041:79;;:::i;:::-;7003:119;7161:1;7186:53;7231:7;7222:6;7211:9;7207:22;7186:53;:::i;:::-;7176:63;;7132:117;7288:2;7314:53;7359:7;7350:6;7339:9;7335:22;7314:53;:::i;:::-;7304:63;;7259:118;6910:474;;;;;:::o;7390:329::-;7449:6;7498:2;7486:9;7477:7;7473:23;7469:32;7466:119;;;7504:79;;:::i;:::-;7466:119;7624:1;7649:53;7694:7;7685:6;7674:9;7670:22;7649:53;:::i;:::-;7639:63;;7595:117;7390:329;;;;:::o;7725:60::-;7753:3;7774:5;7767:12;;7725:60;;;:::o;7791:142::-;7841:9;7874:53;7892:34;7901:24;7919:5;7901:24;:::i;:::-;7892:34;:::i;:::-;7874:53;:::i;:::-;7861:66;;7791:142;;;:::o;7939:126::-;7989:9;8022:37;8053:5;8022:37;:::i;:::-;8009:50;;7939:126;;;:::o;8071:146::-;8141:9;8174:37;8205:5;8174:37;:::i;:::-;8161:50;;8071:146;;;:::o;8223:171::-;8330:57;8381:5;8330:57;:::i;:::-;8325:3;8318:70;8223:171;;:::o;8400:262::-;8513:4;8551:2;8540:9;8536:18;8528:26;;8564:91;8652:1;8641:9;8637:17;8628:6;8564:91;:::i;:::-;8400:262;;;;:::o;8668:116::-;8738:21;8753:5;8738:21;:::i;:::-;8731:5;8728:32;8718:60;;8774:1;8771;8764:12;8718:60;8668:116;:::o;8790:133::-;8833:5;8871:6;8858:20;8849:29;;8887:30;8911:5;8887:30;:::i;:::-;8790:133;;;;:::o;8929:468::-;8994:6;9002;9051:2;9039:9;9030:7;9026:23;9022:32;9019:119;;;9057:79;;:::i;:::-;9019:119;9177:1;9202:53;9247:7;9238:6;9227:9;9223:22;9202:53;:::i;:::-;9192:63;;9148:117;9304:2;9330:50;9372:7;9363:6;9352:9;9348:22;9330:50;:::i;:::-;9320:60;;9275:115;8929:468;;;;;:::o;9403:152::-;9479:9;9512:37;9543:5;9512:37;:::i;:::-;9499:50;;9403:152;;;:::o;9561:183::-;9674:63;9731:5;9674:63;:::i;:::-;9669:3;9662:76;9561:183;;:::o;9750:274::-;9869:4;9907:2;9896:9;9892:18;9884:26;;9920:97;10014:1;10003:9;9999:17;9990:6;9920:97;:::i;:::-;9750:274;;;;:::o;10030:117::-;10139:1;10136;10129:12;10153:117;10262:1;10259;10252:12;10276:180;10324:77;10321:1;10314:88;10421:4;10418:1;10411:15;10445:4;10442:1;10435:15;10462:281;10545:27;10567:4;10545:27;:::i;:::-;10537:6;10533:40;10675:6;10663:10;10660:22;10639:18;10627:10;10624:34;10621:62;10618:88;;;10686:18;;:::i;:::-;10618:88;10726:10;10722:2;10715:22;10505:238;10462:281;;:::o;10749:129::-;10783:6;10810:20;;:::i;:::-;10800:30;;10839:33;10867:4;10859:6;10839:33;:::i;:::-;10749:129;;;:::o;10884:307::-;10945:4;11035:18;11027:6;11024:30;11021:56;;;11057:18;;:::i;:::-;11021:56;11095:29;11117:6;11095:29;:::i;:::-;11087:37;;11179:4;11173;11169:15;11161:23;;10884:307;;;:::o;11197:146::-;11294:6;11289:3;11284;11271:30;11335:1;11326:6;11321:3;11317:16;11310:27;11197:146;;;:::o;11349:423::-;11426:5;11451:65;11467:48;11508:6;11467:48;:::i;:::-;11451:65;:::i;:::-;11442:74;;11539:6;11532:5;11525:21;11577:4;11570:5;11566:16;11615:3;11606:6;11601:3;11597:16;11594:25;11591:112;;;11622:79;;:::i;:::-;11591:112;11712:54;11759:6;11754:3;11749;11712:54;:::i;:::-;11432:340;11349:423;;;;;:::o;11791:338::-;11846:5;11895:3;11888:4;11880:6;11876:17;11872:27;11862:122;;11903:79;;:::i;:::-;11862:122;12020:6;12007:20;12045:78;12119:3;12111:6;12104:4;12096:6;12092:17;12045:78;:::i;:::-;12036:87;;11852:277;11791:338;;;;:::o;12135:943::-;12230:6;12238;12246;12254;12303:3;12291:9;12282:7;12278:23;12274:33;12271:120;;;12310:79;;:::i;:::-;12271:120;12430:1;12455:53;12500:7;12491:6;12480:9;12476:22;12455:53;:::i;:::-;12445:63;;12401:117;12557:2;12583:53;12628:7;12619:6;12608:9;12604:22;12583:53;:::i;:::-;12573:63;;12528:118;12685:2;12711:53;12756:7;12747:6;12736:9;12732:22;12711:53;:::i;:::-;12701:63;;12656:118;12841:2;12830:9;12826:18;12813:32;12872:18;12864:6;12861:30;12858:117;;;12894:79;;:::i;:::-;12858:117;12999:62;13053:7;13044:6;13033:9;13029:22;12999:62;:::i;:::-;12989:72;;12784:287;12135:943;;;;;;;:::o;13084:474::-;13152:6;13160;13209:2;13197:9;13188:7;13184:23;13180:32;13177:119;;;13215:79;;:::i;:::-;13177:119;13335:1;13360:53;13405:7;13396:6;13385:9;13381:22;13360:53;:::i;:::-;13350:63;;13306:117;13462:2;13488:53;13533:7;13524:6;13513:9;13509:22;13488:53;:::i;:::-;13478:63;;13433:118;13084:474;;;;;:::o;13564:180::-;13612:77;13609:1;13602:88;13709:4;13706:1;13699:15;13733:4;13730:1;13723:15;13750:320;13794:6;13831:1;13825:4;13821:12;13811:22;;13878:1;13872:4;13868:12;13899:18;13889:81;;13955:4;13947:6;13943:17;13933:27;;13889:81;14017:2;14009:6;14006:14;13986:18;13983:38;13980:84;;14036:18;;:::i;:::-;13980:84;13801:269;13750:320;;;:::o;14076:220::-;14216:34;14212:1;14204:6;14200:14;14193:58;14285:3;14280:2;14272:6;14268:15;14261:28;14076:220;:::o;14302:366::-;14444:3;14465:67;14529:2;14524:3;14465:67;:::i;:::-;14458:74;;14541:93;14630:3;14541:93;:::i;:::-;14659:2;14654:3;14650:12;14643:19;;14302:366;;;:::o;14674:419::-;14840:4;14878:2;14867:9;14863:18;14855:26;;14927:9;14921:4;14917:20;14913:1;14902:9;14898:17;14891:47;14955:131;15081:4;14955:131;:::i;:::-;14947:139;;14674:419;;;:::o;15099:248::-;15239:34;15235:1;15227:6;15223:14;15216:58;15308:31;15303:2;15295:6;15291:15;15284:56;15099:248;:::o;15353:366::-;15495:3;15516:67;15580:2;15575:3;15516:67;:::i;:::-;15509:74;;15592:93;15681:3;15592:93;:::i;:::-;15710:2;15705:3;15701:12;15694:19;;15353:366;;;:::o;15725:419::-;15891:4;15929:2;15918:9;15914:18;15906:26;;15978:9;15972:4;15968:20;15964:1;15953:9;15949:17;15942:47;16006:131;16132:4;16006:131;:::i;:::-;15998:139;;15725:419;;;:::o;16150:232::-;16290:34;16286:1;16278:6;16274:14;16267:58;16359:15;16354:2;16346:6;16342:15;16335:40;16150:232;:::o;16388:366::-;16530:3;16551:67;16615:2;16610:3;16551:67;:::i;:::-;16544:74;;16627:93;16716:3;16627:93;:::i;:::-;16745:2;16740:3;16736:12;16729:19;;16388:366;;;:::o;16760:419::-;16926:4;16964:2;16953:9;16949:18;16941:26;;17013:9;17007:4;17003:20;16999:1;16988:9;16984:17;16977:47;17041:131;17167:4;17041:131;:::i;:::-;17033:139;;16760:419;;;:::o;17185:230::-;17325:34;17321:1;17313:6;17309:14;17302:58;17394:13;17389:2;17381:6;17377:15;17370:38;17185:230;:::o;17421:366::-;17563:3;17584:67;17648:2;17643:3;17584:67;:::i;:::-;17577:74;;17660:93;17749:3;17660:93;:::i;:::-;17778:2;17773:3;17769:12;17762:19;;17421:366;;;:::o;17793:419::-;17959:4;17997:2;17986:9;17982:18;17974:26;;18046:9;18040:4;18036:20;18032:1;18021:9;18017:17;18010:47;18074:131;18200:4;18074:131;:::i;:::-;18066:139;;17793:419;;;:::o;18218:234::-;18358:34;18354:1;18346:6;18342:14;18335:58;18427:17;18422:2;18414:6;18410:15;18403:42;18218:234;:::o;18458:366::-;18600:3;18621:67;18685:2;18680:3;18621:67;:::i;:::-;18614:74;;18697:93;18786:3;18697:93;:::i;:::-;18815:2;18810:3;18806:12;18799:19;;18458:366;;;:::o;18830:419::-;18996:4;19034:2;19023:9;19019:18;19011:26;;19083:9;19077:4;19073:20;19069:1;19058:9;19054:17;19047:47;19111:131;19237:4;19111:131;:::i;:::-;19103:139;;18830:419;;;:::o;19255:231::-;19395:34;19391:1;19383:6;19379:14;19372:58;19464:14;19459:2;19451:6;19447:15;19440:39;19255:231;:::o;19492:366::-;19634:3;19655:67;19719:2;19714:3;19655:67;:::i;:::-;19648:74;;19731:93;19820:3;19731:93;:::i;:::-;19849:2;19844:3;19840:12;19833:19;;19492:366;;;:::o;19864:419::-;20030:4;20068:2;20057:9;20053:18;20045:26;;20117:9;20111:4;20107:20;20103:1;20092:9;20088:17;20081:47;20145:131;20271:4;20145:131;:::i;:::-;20137:139;;19864:419;;;:::o;20289:180::-;20337:77;20334:1;20327:88;20434:4;20431:1;20424:15;20458:4;20455:1;20448:15;20475:174;20615:26;20611:1;20603:6;20599:14;20592:50;20475:174;:::o;20655:366::-;20797:3;20818:67;20882:2;20877:3;20818:67;:::i;:::-;20811:74;;20894:93;20983:3;20894:93;:::i;:::-;21012:2;21007:3;21003:12;20996:19;;20655:366;;;:::o;21027:419::-;21193:4;21231:2;21220:9;21216:18;21208:26;;21280:9;21274:4;21270:20;21266:1;21255:9;21251:17;21244:47;21308:131;21434:4;21308:131;:::i;:::-;21300:139;;21027:419;;;:::o;21452:228::-;21592:34;21588:1;21580:6;21576:14;21569:58;21661:11;21656:2;21648:6;21644:15;21637:36;21452:228;:::o;21686:366::-;21828:3;21849:67;21913:2;21908:3;21849:67;:::i;:::-;21842:74;;21925:93;22014:3;21925:93;:::i;:::-;22043:2;22038:3;22034:12;22027:19;;21686:366;;;:::o;22058:419::-;22224:4;22262:2;22251:9;22247:18;22239:26;;22311:9;22305:4;22301:20;22297:1;22286:9;22282:17;22275:47;22339:131;22465:4;22339:131;:::i;:::-;22331:139;;22058:419;;;:::o;22483:308::-;22545:4;22635:18;22627:6;22624:30;22621:56;;;22657:18;;:::i;:::-;22621:56;22695:29;22717:6;22695:29;:::i;:::-;22687:37;;22779:4;22773;22769:15;22761:23;;22483:308;;;:::o;22797:434::-;22886:5;22911:66;22927:49;22969:6;22927:49;:::i;:::-;22911:66;:::i;:::-;22902:75;;23000:6;22993:5;22986:21;23038:4;23031:5;23027:16;23076:3;23067:6;23062:3;23058:16;23055:25;23052:112;;;23083:79;;:::i;:::-;23052:112;23173:52;23218:6;23213:3;23208;23173:52;:::i;:::-;22892:339;22797:434;;;;;:::o;23251:355::-;23318:5;23367:3;23360:4;23352:6;23348:17;23344:27;23334:122;;23375:79;;:::i;:::-;23334:122;23485:6;23479:13;23510:90;23596:3;23588:6;23581:4;23573:6;23569:17;23510:90;:::i;:::-;23501:99;;23324:282;23251:355;;;;:::o;23612:524::-;23692:6;23741:2;23729:9;23720:7;23716:23;23712:32;23709:119;;;23747:79;;:::i;:::-;23709:119;23888:1;23877:9;23873:17;23867:24;23918:18;23910:6;23907:30;23904:117;;;23940:79;;:::i;:::-;23904:117;24045:74;24111:7;24102:6;24091:9;24087:22;24045:74;:::i;:::-;24035:84;;23838:291;23612:524;;;;:::o;24142:224::-;24282:34;24278:1;24270:6;24266:14;24259:58;24351:7;24346:2;24338:6;24334:15;24327:32;24142:224;:::o;24372:366::-;24514:3;24535:67;24599:2;24594:3;24535:67;:::i;:::-;24528:74;;24611:93;24700:3;24611:93;:::i;:::-;24729:2;24724:3;24720:12;24713:19;;24372:366;;;:::o;24744:419::-;24910:4;24948:2;24937:9;24933:18;24925:26;;24997:9;24991:4;24987:20;24983:1;24972:9;24968:17;24961:47;25025:131;25151:4;25025:131;:::i;:::-;25017:139;;24744:419;;;:::o;25169:223::-;25309:34;25305:1;25297:6;25293:14;25286:58;25378:6;25373:2;25365:6;25361:15;25354:31;25169:223;:::o;25398:366::-;25540:3;25561:67;25625:2;25620:3;25561:67;:::i;:::-;25554:74;;25637:93;25726:3;25637:93;:::i;:::-;25755:2;25750:3;25746:12;25739:19;;25398:366;;;:::o;25770:419::-;25936:4;25974:2;25963:9;25959:18;25951:26;;26023:9;26017:4;26013:20;26009:1;25998:9;25994:17;25987:47;26051:131;26177:4;26051:131;:::i;:::-;26043:139;;25770:419;;;:::o;26195:173::-;26335:25;26331:1;26323:6;26319:14;26312:49;26195:173;:::o;26374:366::-;26516:3;26537:67;26601:2;26596:3;26537:67;:::i;:::-;26530:74;;26613:93;26702:3;26613:93;:::i;:::-;26731:2;26726:3;26722:12;26715:19;;26374:366;;;:::o;26746:419::-;26912:4;26950:2;26939:9;26935:18;26927:26;;26999:9;26993:4;26989:20;26985:1;26974:9;26970:17;26963:47;27027:131;27153:4;27027:131;:::i;:::-;27019:139;;26746:419;;;:::o;27171:442::-;27320:4;27358:2;27347:9;27343:18;27335:26;;27371:71;27439:1;27428:9;27424:17;27415:6;27371:71;:::i;:::-;27452:72;27520:2;27509:9;27505:18;27496:6;27452:72;:::i;:::-;27534;27602:2;27591:9;27587:18;27578:6;27534:72;:::i;:::-;27171:442;;;;;;:::o;27619:137::-;27673:5;27704:6;27698:13;27689:22;;27720:30;27744:5;27720:30;:::i;:::-;27619:137;;;;:::o;27762:345::-;27829:6;27878:2;27866:9;27857:7;27853:23;27849:32;27846:119;;;27884:79;;:::i;:::-;27846:119;28004:1;28029:61;28082:7;28073:6;28062:9;28058:22;28029:61;:::i;:::-;28019:71;;27975:125;27762:345;;;;:::o;28113:175::-;28253:27;28249:1;28241:6;28237:14;28230:51;28113:175;:::o;28294:366::-;28436:3;28457:67;28521:2;28516:3;28457:67;:::i;:::-;28450:74;;28533:93;28622:3;28533:93;:::i;:::-;28651:2;28646:3;28642:12;28635:19;;28294:366;;;:::o;28666:419::-;28832:4;28870:2;28859:9;28855:18;28847:26;;28919:9;28913:4;28909:20;28905:1;28894:9;28890:17;28883:47;28947:131;29073:4;28947:131;:::i;:::-;28939:139;;28666:419;;;:::o;29091:237::-;29231:34;29227:1;29219:6;29215:14;29208:58;29300:20;29295:2;29287:6;29283:15;29276:45;29091:237;:::o;29334:366::-;29476:3;29497:67;29561:2;29556:3;29497:67;:::i;:::-;29490:74;;29573:93;29662:3;29573:93;:::i;:::-;29691:2;29686:3;29682:12;29675:19;;29334:366;;;:::o;29706:419::-;29872:4;29910:2;29899:9;29895:18;29887:26;;29959:9;29953:4;29949:20;29945:1;29934:9;29930:17;29923:47;29987:131;30113:4;29987:131;:::i;:::-;29979:139;;29706:419;;;:::o;30131:148::-;30233:11;30270:3;30255:18;;30131:148;;;;:::o;30285:173::-;30425:25;30421:1;30413:6;30409:14;30402:49;30285:173;:::o;30464:402::-;30624:3;30645:85;30727:2;30722:3;30645:85;:::i;:::-;30638:92;;30739:93;30828:3;30739:93;:::i;:::-;30857:2;30852:3;30848:12;30841:19;;30464:402;;;:::o;30872:390::-;30978:3;31006:39;31039:5;31006:39;:::i;:::-;31061:89;31143:6;31138:3;31061:89;:::i;:::-;31054:96;;31159:65;31217:6;31212:3;31205:4;31198:5;31194:16;31159:65;:::i;:::-;31249:6;31244:3;31240:16;31233:23;;30982:280;30872:390;;;;:::o;31268:167::-;31408:19;31404:1;31396:6;31392:14;31385:43;31268:167;:::o;31441:402::-;31601:3;31622:85;31704:2;31699:3;31622:85;:::i;:::-;31615:92;;31716:93;31805:3;31716:93;:::i;:::-;31834:2;31829:3;31825:12;31818:19;;31441:402;;;:::o;31849:967::-;32231:3;32253:148;32397:3;32253:148;:::i;:::-;32246:155;;32418:95;32509:3;32500:6;32418:95;:::i;:::-;32411:102;;32530:148;32674:3;32530:148;:::i;:::-;32523:155;;32695:95;32786:3;32777:6;32695:95;:::i;:::-;32688:102;;32807:3;32800:10;;31849:967;;;;;:::o;32822:98::-;32873:6;32907:5;32901:12;32891:22;;32822:98;;;:::o;32926:168::-;33009:11;33043:6;33038:3;33031:19;33083:4;33078:3;33074:14;33059:29;;32926:168;;;;:::o;33100:373::-;33186:3;33214:38;33246:5;33214:38;:::i;:::-;33268:70;33331:6;33326:3;33268:70;:::i;:::-;33261:77;;33347:65;33405:6;33400:3;33393:4;33386:5;33382:16;33347:65;:::i;:::-;33437:29;33459:6;33437:29;:::i;:::-;33432:3;33428:39;33421:46;;33190:283;33100:373;;;;:::o;33479:640::-;33674:4;33712:3;33701:9;33697:19;33689:27;;33726:71;33794:1;33783:9;33779:17;33770:6;33726:71;:::i;:::-;33807:72;33875:2;33864:9;33860:18;33851:6;33807:72;:::i;:::-;33889;33957:2;33946:9;33942:18;33933:6;33889:72;:::i;:::-;34008:9;34002:4;33998:20;33993:2;33982:9;33978:18;33971:48;34036:76;34107:4;34098:6;34036:76;:::i;:::-;34028:84;;33479:640;;;;;;;:::o;34125:141::-;34181:5;34212:6;34206:13;34197:22;;34228:32;34254:5;34228:32;:::i;:::-;34125:141;;;;:::o;34272:349::-;34341:6;34390:2;34378:9;34369:7;34365:23;34361:32;34358:119;;;34396:79;;:::i;:::-;34358:119;34516:1;34541:63;34596:7;34587:6;34576:9;34572:22;34541:63;:::i;:::-;34531:73;;34487:127;34272:349;;;;:::o;34627:240::-;34767:34;34763:1;34755:6;34751:14;34744:58;34836:23;34831:2;34823:6;34819:15;34812:48;34627:240;:::o;34873:366::-;35015:3;35036:67;35100:2;35095:3;35036:67;:::i;:::-;35029:74;;35112:93;35201:3;35112:93;:::i;:::-;35230:2;35225:3;35221:12;35214:19;;34873:366;;;:::o;35245:419::-;35411:4;35449:2;35438:9;35434:18;35426:26;;35498:9;35492:4;35488:20;35484:1;35473:9;35469:17;35462:47;35526:131;35652:4;35526:131;:::i;:::-;35518:139;;35245:419;;;:::o;35670:180::-;35718:77;35715:1;35708:88;35815:4;35812:1;35805:15;35839:4;35836:1;35829:15;35856:410;35896:7;35919:20;35937:1;35919:20;:::i;:::-;35914:25;;35953:20;35971:1;35953:20;:::i;:::-;35948:25;;36008:1;36005;36001:9;36030:30;36048:11;36030:30;:::i;:::-;36019:41;;36209:1;36200:7;36196:15;36193:1;36190:22;36170:1;36163:9;36143:83;36120:139;;36239:18;;:::i;:::-;36120:139;35904:362;35856:410;;;;:::o;36272:191::-;36312:3;36331:20;36349:1;36331:20;:::i;:::-;36326:25;;36365:20;36383:1;36365:20;:::i;:::-;36360:25;;36408:1;36405;36401:9;36394:16;;36429:3;36426:1;36423:10;36420:36;;;36436:18;;:::i;:::-;36420:36;36272:191;;;;:::o;36469:171::-;36508:3;36531:24;36549:5;36531:24;:::i;:::-;36522:33;;36577:4;36570:5;36567:15;36564:41;;36585:18;;:::i;:::-;36564:41;36632:1;36625:5;36621:13;36614:20;;36469:171;;;:::o;36646:182::-;36786:34;36782:1;36774:6;36770:14;36763:58;36646:182;:::o;36834:366::-;36976:3;36997:67;37061:2;37056:3;36997:67;:::i;:::-;36990:74;;37073:93;37162:3;37073:93;:::i;:::-;37191:2;37186:3;37182:12;37175:19;;36834:366;;;:::o;37206:419::-;37372:4;37410:2;37399:9;37395:18;37387:26;;37459:9;37453:4;37449:20;37445:1;37434:9;37430:17;37423:47;37487:131;37613:4;37487:131;:::i;:::-;37479:139;;37206:419;;;:::o;37631:182::-;37771:34;37767:1;37759:6;37755:14;37748:58;37631:182;:::o;37819:366::-;37961:3;37982:67;38046:2;38041:3;37982:67;:::i;:::-;37975:74;;38058:93;38147:3;38058:93;:::i;:::-;38176:2;38171:3;38167:12;38160:19;;37819:366;;;:::o;38191:419::-;38357:4;38395:2;38384:9;38380:18;38372:26;;38444:9;38438:4;38434:20;38430:1;38419:9;38415:17;38408:47;38472:131;38598:4;38472:131;:::i;:::-;38464:139;;38191:419;;;:::o;38616:178::-;38756:30;38752:1;38744:6;38740:14;38733:54;38616:178;:::o;38800:366::-;38942:3;38963:67;39027:2;39022:3;38963:67;:::i;:::-;38956:74;;39039:93;39128:3;39039:93;:::i;:::-;39157:2;39152:3;39148:12;39141:19;;38800:366;;;:::o;39172:419::-;39338:4;39376:2;39365:9;39361:18;39353:26;;39425:9;39419:4;39415:20;39411:1;39400:9;39396:17;39389:47;39453:131;39579:4;39453:131;:::i;:::-;39445:139;;39172:419;;;:::o;39597:194::-;39637:4;39657:20;39675:1;39657:20;:::i;:::-;39652:25;;39691:20;39709:1;39691:20;:::i;:::-;39686:25;;39735:1;39732;39728:9;39720:17;;39759:1;39753:4;39750:11;39747:37;;;39764:18;;:::i;:::-;39747:37;39597:194;;;;:::o;39797:180::-;39845:77;39842:1;39835:88;39942:4;39939:1;39932:15;39966:4;39963:1;39956:15
Swarm Source
ipfs://11d0ec265186aca39240991f3c0c33f1291c519fc3cacbaae1fcb1d15f857898
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.