Overview
Max Total Supply
235 MURALL
Holders
140
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 MURALLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MurAllNFT
Compiler Version
v0.6.11+commit.5ef660b1
Optimization Enabled:
Yes with 21000 runs
Other Settings:
constantinople EvmVersion, Unlicense license
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-22 */ // SPDX-License-Identifier: UNLICENSED // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.6.2; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transfered from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol pragma solidity ^0.6.2; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity ^0.6.2; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.6.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/utils/EnumerableMap.sol pragma solidity ^0.6.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { return _get(map, key, "EnumerableMap: nonexistent key"); } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint256(value))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key)))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key), errorMessage))); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.6.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.6.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // If there is no base URI, return the token URI. if (bytes(_baseURI).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(_baseURI, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(_baseURI, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mecanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `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); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @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()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/access/AccessControl.sol pragma solidity ^0.6.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * 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 { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @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 {_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) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @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 returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } // File: contracts/storage/NftImageDataStorage.sol pragma solidity ^0.6.0; contract NftImageDataStorage is Ownable { using SafeMath for uint256; uint256 constant FILL_DATA_GAS_RESERVE = 46000; struct ArtWorkImageData { uint256[] colorIndex; uint256[] individualPixels; uint256[] pixelGroups; uint256[] pixelGroupIndexes; uint256[] transparentPixelGroups; uint256[] transparentPixelGroupIndexes; } mapping(bytes32 => ArtWorkImageData) private artworkImageDatas; /** @dev Checks if artwork is filled * @param dataHash The hash to check if filled with artwork data */ modifier onlyFilledArtwork(bytes32 dataHash) { require(isArtworkFilled(dataHash), "Artwork is not filled"); _; } event Filled( bytes32 dataHash, uint256 colorIndexLength, uint256 individualPixelsLength, uint256 pixelGroupsLength, uint256 pixelGroupIndexesLength, uint256 transparentPixelGroupsLength, uint256 transparentPixelGroupIndexesLength ); function fillData( uint256[] memory colorIndex, uint256[] memory individualPixels, uint256[] memory pixelGroups, uint256[] memory pixelGroupIndexes, uint256[] memory transparentPixelGroups, uint256[] memory transparentPixelGroupIndexes ) public onlyOwner returns (bool) { bytes32 dataHash = keccak256( abi.encodePacked( colorIndex, individualPixels, pixelGroups, pixelGroupIndexes, transparentPixelGroups, transparentPixelGroupIndexes ) ); require(!isArtworkFilled(dataHash), "Artwork is already filled"); ArtWorkImageData storage _artworkImageData = artworkImageDatas[dataHash]; uint256 len; uint256 index; // fill colour index if (gasleft() > FILL_DATA_GAS_RESERVE && colorIndex.length > 0) { index = _artworkImageData.colorIndex.length == 0 ? 0 : _artworkImageData.colorIndex.length + 1; len = colorIndex.length; while ((gasleft() > FILL_DATA_GAS_RESERVE) && index < len) { _artworkImageData.colorIndex.push(colorIndex[index]); index++; } } // fill individualPixels index if (gasleft() > FILL_DATA_GAS_RESERVE && individualPixels.length > 0) { index = _artworkImageData.individualPixels.length == 0 ? 0 : _artworkImageData.individualPixels.length + 1; len = individualPixels.length; while ((gasleft() > FILL_DATA_GAS_RESERVE) && index < len) { _artworkImageData.individualPixels.push(individualPixels[index]); index++; } } // fill pixelGroups index if (gasleft() > FILL_DATA_GAS_RESERVE && pixelGroups.length > 0) { index = _artworkImageData.pixelGroups.length == 0 ? 0 : _artworkImageData.pixelGroups.length + 1; len = pixelGroups.length; while ((gasleft() > FILL_DATA_GAS_RESERVE) && index < len) { _artworkImageData.pixelGroups.push(pixelGroups[index]); index++; } } // fill pixelGroupIndexes index if (gasleft() > FILL_DATA_GAS_RESERVE && pixelGroupIndexes.length > 0) { index = _artworkImageData.pixelGroupIndexes.length == 0 ? 0 : _artworkImageData.pixelGroupIndexes.length + 1; len = pixelGroupIndexes.length; while ((gasleft() > FILL_DATA_GAS_RESERVE) && index < len) { _artworkImageData.pixelGroupIndexes.push(pixelGroupIndexes[index]); index++; } } // fill transparentPixelGroups index if (gasleft() > FILL_DATA_GAS_RESERVE && transparentPixelGroups.length > 0) { index = _artworkImageData.transparentPixelGroups.length == 0 ? 0 : _artworkImageData.transparentPixelGroups.length + 1; len = transparentPixelGroups.length; while ((gasleft() > FILL_DATA_GAS_RESERVE) && index < len) { _artworkImageData.transparentPixelGroups.push(transparentPixelGroups[index]); index++; } } // fill transparentPixelGroupIndexes index if (gasleft() > FILL_DATA_GAS_RESERVE && transparentPixelGroupIndexes.length > 0) { index = _artworkImageData.transparentPixelGroupIndexes.length == 0 ? 0 : _artworkImageData.transparentPixelGroupIndexes.length + 1; len = transparentPixelGroupIndexes.length; while ((gasleft() > FILL_DATA_GAS_RESERVE) && index < len) { _artworkImageData.transparentPixelGroupIndexes.push(transparentPixelGroupIndexes[index]); index++; } } emit Filled( dataHash, _artworkImageData.colorIndex.length, _artworkImageData.individualPixels.length, _artworkImageData.pixelGroups.length, _artworkImageData.pixelGroupIndexes.length, _artworkImageData.transparentPixelGroups.length, _artworkImageData.transparentPixelGroupIndexes.length ); return (colorIndex.length == _artworkImageData.colorIndex.length) && (individualPixels.length == _artworkImageData.individualPixels.length) && (pixelGroups.length == _artworkImageData.pixelGroups.length) && (pixelGroupIndexes.length == _artworkImageData.pixelGroupIndexes.length) && (transparentPixelGroups.length == _artworkImageData.transparentPixelGroups.length) && (transparentPixelGroupIndexes.length == _artworkImageData.transparentPixelGroupIndexes.length); } function isArtworkFilled(bytes32 dataHash) public view returns (bool) { ArtWorkImageData memory _artworkImageData = artworkImageDatas[dataHash]; return dataHash == keccak256( abi.encodePacked( _artworkImageData.colorIndex, _artworkImageData.individualPixels, _artworkImageData.pixelGroups, _artworkImageData.pixelGroupIndexes, _artworkImageData.transparentPixelGroups, _artworkImageData.transparentPixelGroupIndexes ) ); } function getArtworkFillCompletionStatus(bytes32 dataHash) public view returns ( uint256 colorIndexLength, uint256 individualPixelsLength, uint256 pixelGroupsLength, uint256 pixelGroupIndexesLength, uint256 transparentPixelGroupsLength, uint256 transparentPixelGroupIndexesLength ) { ArtWorkImageData memory _artworkImageData = artworkImageDatas[dataHash]; return ( _artworkImageData.colorIndex.length, _artworkImageData.individualPixels.length, _artworkImageData.pixelGroups.length, _artworkImageData.pixelGroupIndexes.length, _artworkImageData.transparentPixelGroups.length, _artworkImageData.transparentPixelGroupIndexes.length ); } function getArtworkForDataHash(bytes32 dataHash) public view onlyFilledArtwork(dataHash) returns ( uint256[] memory colorIndex, uint256[] memory individualPixels, uint256[] memory pixelGroups, uint256[] memory pixelGroupIndexes, uint256[] memory transparentPixelGroups, uint256[] memory transparentPixelGroupIndexes ) { ArtWorkImageData memory _artworkImageData = artworkImageDatas[dataHash]; return ( _artworkImageData.colorIndex, _artworkImageData.individualPixels, _artworkImageData.pixelGroups, _artworkImageData.pixelGroupIndexes, _artworkImageData.transparentPixelGroups, _artworkImageData.transparentPixelGroupIndexes ); } function getColorIndexForDataHash(bytes32 dataHash) public view onlyFilledArtwork(dataHash) returns (uint256[] memory colorIndex) { return artworkImageDatas[dataHash].colorIndex; } } // File: contracts/MurAllNFT.sol pragma solidity ^0.6.0; contract MurAllNFT is ERC721, Ownable, AccessControl { bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); using Strings for uint256; string public constant INVALID_TOKEN_ID = "Invalid Token ID"; // 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 uint256 constant FIRST_3_BYTES_MASK = 115792082335569848633007197573932045576244532214531591869071028845388905840640; // 0x000000000000000000000000000000000000000000000000000000000000000F uint256 constant METADATA_HAS_ALPHA_CHANNEL_BYTES_MASK = 15; uint256 constant CONVERSION_SHIFT_BYTES = 232; uint256 constant CONVERSION_SHIFT_BYTES_RGB565 = 240; struct ArtWork { bytes32 dataHash; address artist; uint256 name; uint256 metadata; } NftImageDataStorage nftImageDataStorage; ArtWork[] artworks; /** * @dev @notice Base URI for MURALL NFT's off-chain images */ string private mediaUriBase; /** * @dev @notice Base URI to view MURALL NFT's on the MurAll website */ string private viewUriBase; /** @dev Checks if token exists * @param _tokenId The token id to check if exists */ modifier onlyExistingTokens(uint256 _tokenId) { require(_tokenId < totalSupply(), INVALID_TOKEN_ID); _; } /** @dev Checks if token is filled with artwork data * @param _tokenId The token id to check if filled with artwork data */ modifier onlyFilledTokens(uint256 _tokenId) { require(isArtworkFilled(_tokenId), "Artwork is not filled"); _; } /** @dev Checks if sender address has admin role */ modifier onlyAdmin() { require(hasRole(ADMIN_ROLE, msg.sender), "Does not have admin role"); _; } event ArtworkFilled(uint256 indexed id, bool finished); /* TODO Name TBC: I was thinking something to signify its a small piece, like a snippet of art */ constructor(address[] memory admins, NftImageDataStorage _nftImageDataStorageAddr) public ERC721("MurAll", "MURALL") { for (uint256 i = 0; i < admins.length; ++i) { _setupRole(ADMIN_ROLE, admins[i]); } nftImageDataStorage = _nftImageDataStorageAddr; } function mint( address origin, uint256[] memory colorIndex, uint256[] memory individualPixels, uint256[] memory pixelGroups, uint256[] memory pixelGroupIndexes, uint256[] memory transparentPixelGroups, uint256[] memory transparentPixelGroupIndexes, uint256[2] memory metadata ) public onlyOwner returns (uint256) { // calculate data hashes bytes32 dataHash = keccak256( abi.encodePacked( colorIndex, individualPixels, pixelGroups, pixelGroupIndexes, transparentPixelGroups, transparentPixelGroupIndexes ) ); // create the artwork object ArtWork memory _artwork = ArtWork(dataHash, origin, metadata[0], metadata[1]); // push the artwork to the array artworks.push(_artwork); uint256 _id = artworks.length - 1; _mint(origin, _id); return _id; } function fillData( uint256 id, uint256[] memory colorIndex, uint256[] memory individualPixels, uint256[] memory pixelGroups, uint256[] memory pixelGroupIndexes, uint256[] memory transparentPixelGroups, uint256[] memory transparentPixelGroupIndexes ) public onlyExistingTokens(id) { require(_isApprovedOrOwner(msg.sender, id), "Not approved or not owner of token"); bytes32 dataHash = keccak256( abi.encodePacked( colorIndex, individualPixels, pixelGroups, pixelGroupIndexes, transparentPixelGroups, transparentPixelGroupIndexes ) ); require(artworks[id].dataHash == dataHash, "Incorrect data"); bool filled = nftImageDataStorage.fillData( colorIndex, individualPixels, pixelGroups, pixelGroupIndexes, transparentPixelGroups, transparentPixelGroupIndexes ); emit ArtworkFilled(id, filled); } function getFullDataForId(uint256 id) public view onlyExistingTokens(id) onlyFilledTokens(id) returns ( address artist, uint256[] memory colorIndex, uint256[] memory individualPixels, uint256[] memory pixelGroups, uint256[] memory pixelGroupIndexes, uint256[] memory transparentPixelGroups, uint256[] memory transparentPixelGroupIndexes, uint256[2] memory metadata ) { ArtWork memory _artwork = artworks[id]; ( colorIndex, individualPixels, pixelGroups, pixelGroupIndexes, transparentPixelGroups, transparentPixelGroupIndexes ) = getArtworkForId(id); artist = _artwork.artist; metadata = [_artwork.name, _artwork.metadata]; } function getArtworkForId(uint256 id) public view onlyExistingTokens(id) onlyFilledTokens(id) returns ( uint256[] memory colorIndex, uint256[] memory individualPixels, uint256[] memory pixelGroups, uint256[] memory pixelGroupIndexes, uint256[] memory transparentPixelGroups, uint256[] memory transparentPixelGroupIndexes ) { return nftImageDataStorage.getArtworkForDataHash(artworks[id].dataHash); } function getArtworkDataHashForId(uint256 id) public view onlyExistingTokens(id) returns (bytes32) { return artworks[id].dataHash; } function getName(uint256 id) public view onlyExistingTokens(id) returns (string memory) { return bytes32ToString(bytes32(artworks[id].name)); } function getNumber(uint256 id) public view onlyExistingTokens(id) returns (uint256) { return (FIRST_3_BYTES_MASK & artworks[id].metadata) >> CONVERSION_SHIFT_BYTES; } function getSeriesId(uint256 id) public view onlyExistingTokens(id) returns (uint256) { return (FIRST_3_BYTES_MASK & (artworks[id].metadata << 24)) >> CONVERSION_SHIFT_BYTES; } function hasAlphaChannel(uint256 id) public view onlyExistingTokens(id) returns (bool) { return (METADATA_HAS_ALPHA_CHANNEL_BYTES_MASK & artworks[id].metadata) != 0; } function getAlphaChannel(uint256 id) public view onlyExistingTokens(id) onlyFilledTokens(id) returns (uint256) { require(hasAlphaChannel(id), "Artwork has no alpha"); // alpha is the first color in the color index return nftImageDataStorage.getColorIndexForDataHash(artworks[id].dataHash)[0] >> CONVERSION_SHIFT_BYTES_RGB565; } function getArtworkFillCompletionStatus(uint256 id) public view onlyExistingTokens(id) returns ( uint256 colorIndexLength, uint256 individualPixelsLength, uint256 pixelGroupsLength, uint256 pixelGroupIndexesLength, uint256 transparentPixelGroupsLength, uint256 transparentPixelGroupIndexesLength ) { return nftImageDataStorage.getArtworkFillCompletionStatus(artworks[id].dataHash); } function isArtworkFilled(uint256 id) public view onlyExistingTokens(id) returns (bool) { return nftImageDataStorage.isArtworkFilled(artworks[id].dataHash); } function getArtist(uint256 id) public view onlyExistingTokens(id) returns (address) { return artworks[id].artist; } /** * @notice Set the base URI for creating `tokenURI` for each MURALL NFT. * Only invokable by admin role. * @param _tokenUriBase base for the ERC721 tokenURI */ function setTokenUriBase(string calldata _tokenUriBase) external onlyAdmin { // Set the base for metadata tokenURI _setBaseURI(_tokenUriBase); } /** * @notice Set the base URI for the image of each MURALL NFT. * Only invokable by admin role. * @param _mediaUriBase base for the mediaURI shown in metadata for each MURALL NFT */ function setMediaUriBase(string calldata _mediaUriBase) external onlyAdmin { // Set the base for metadata tokenURI mediaUriBase = _mediaUriBase; } /** * @notice Set the base URI for the viewing the MURALL NFT on the MurAll website. * Only invokable by admin role. * @param _viewUriBase base URI for viewing an MURALL NFT on the MurAll website */ function setViewUriBase(string calldata _viewUriBase) external onlyAdmin { // Set the base for metadata tokenURI viewUriBase = _viewUriBase; } /** * @notice Get view URI for a given MURALL NFT's Token ID. * @param _tokenId the Token ID of a previously minted MURALL NFT * @return uri the off-chain URI to view the Avastar on the MurAll website */ function viewURI(uint256 _tokenId) public view returns (string memory uri) { require(_tokenId < totalSupply(), INVALID_TOKEN_ID); uri = string(abi.encodePacked(viewUriBase, _tokenId.toString())); } /** * @notice Get media URI for a given MURALL NFT's Token ID. * @param _tokenId the Token ID of a previously minted MURALL NFT's * @return uri the off-chain URI to the MURALL NFT's image */ function mediaURI(uint256 _tokenId) public view returns (string memory uri) { require(_tokenId < totalSupply(), INVALID_TOKEN_ID); uri = string(abi.encodePacked(mediaUriBase, _tokenId.toString())); } function bytes32ToString(bytes32 x) internal pure returns (string memory) { bytes memory bytesString = new bytes(32); uint256 charCount = 0; uint256 j; for (j = 0; j < 32; j++) { bytes1 char = bytes1(bytes32(uint256(x) * 2**(8 * j))); if (char != 0) { bytesString[charCount] = char; charCount++; } } bytes memory bytesStringTrimmed = new bytes(charCount); for (j = 0; j < charCount; j++) { bytesStringTrimmed[j] = bytesString[j]; } return string(bytesStringTrimmed); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"admins","type":"address[]"},{"internalType":"contract NftImageDataStorage","name":"_nftImageDataStorageAddr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"bool","name":"finished","type":"bool"}],"name":"ArtworkFilled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INVALID_TOKEN_ID","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256[]","name":"colorIndex","type":"uint256[]"},{"internalType":"uint256[]","name":"individualPixels","type":"uint256[]"},{"internalType":"uint256[]","name":"pixelGroups","type":"uint256[]"},{"internalType":"uint256[]","name":"pixelGroupIndexes","type":"uint256[]"},{"internalType":"uint256[]","name":"transparentPixelGroups","type":"uint256[]"},{"internalType":"uint256[]","name":"transparentPixelGroupIndexes","type":"uint256[]"}],"name":"fillData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getAlphaChannel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getArtist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getArtworkDataHashForId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getArtworkFillCompletionStatus","outputs":[{"internalType":"uint256","name":"colorIndexLength","type":"uint256"},{"internalType":"uint256","name":"individualPixelsLength","type":"uint256"},{"internalType":"uint256","name":"pixelGroupsLength","type":"uint256"},{"internalType":"uint256","name":"pixelGroupIndexesLength","type":"uint256"},{"internalType":"uint256","name":"transparentPixelGroupsLength","type":"uint256"},{"internalType":"uint256","name":"transparentPixelGroupIndexesLength","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getArtworkForId","outputs":[{"internalType":"uint256[]","name":"colorIndex","type":"uint256[]"},{"internalType":"uint256[]","name":"individualPixels","type":"uint256[]"},{"internalType":"uint256[]","name":"pixelGroups","type":"uint256[]"},{"internalType":"uint256[]","name":"pixelGroupIndexes","type":"uint256[]"},{"internalType":"uint256[]","name":"transparentPixelGroups","type":"uint256[]"},{"internalType":"uint256[]","name":"transparentPixelGroupIndexes","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getFullDataForId","outputs":[{"internalType":"address","name":"artist","type":"address"},{"internalType":"uint256[]","name":"colorIndex","type":"uint256[]"},{"internalType":"uint256[]","name":"individualPixels","type":"uint256[]"},{"internalType":"uint256[]","name":"pixelGroups","type":"uint256[]"},{"internalType":"uint256[]","name":"pixelGroupIndexes","type":"uint256[]"},{"internalType":"uint256[]","name":"transparentPixelGroups","type":"uint256[]"},{"internalType":"uint256[]","name":"transparentPixelGroupIndexes","type":"uint256[]"},{"internalType":"uint256[2]","name":"metadata","type":"uint256[2]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getSeriesId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"hasAlphaChannel","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isArtworkFilled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mediaURI","outputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"origin","type":"address"},{"internalType":"uint256[]","name":"colorIndex","type":"uint256[]"},{"internalType":"uint256[]","name":"individualPixels","type":"uint256[]"},{"internalType":"uint256[]","name":"pixelGroups","type":"uint256[]"},{"internalType":"uint256[]","name":"pixelGroupIndexes","type":"uint256[]"},{"internalType":"uint256[]","name":"transparentPixelGroups","type":"uint256[]"},{"internalType":"uint256[]","name":"transparentPixelGroupIndexes","type":"uint256[]"},{"internalType":"uint256[2]","name":"metadata","type":"uint256[2]"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_mediaUriBase","type":"string"}],"name":"setMediaUriBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenUriBase","type":"string"}],"name":"setTokenUriBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_viewUriBase","type":"string"}],"name":"setViewUriBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewURI","outputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162005ddb38038062005ddb833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82518660208202830111640100000000821117156200008c57600080fd5b82525081516020918201928201910280838360005b83811015620000bb578181015183820152602001620000a1565b50505050919091016040818152602093840151818301825260068084527f4d7572416c6c000000000000000000000000000000000000000000000000000086850152825180840190935282527f4d5552414c4c00000000000000000000000000000000000000000000000000009482019490945292945092506200016a90507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b036200033116565b81516200017f9060069060208501906200053b565b508051620001959060079060208401906200053b565b50620001ca7f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b036200033116565b620001fe7f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b036200033116565b620002327f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b036200033116565b50600090506200024a6001600160e01b036200040016565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060005b825181101562000309576200030060405180807f41444d494e5f524f4c4500000000000000000000000000000000000000000000815250600a0190506040518091039020848381518110620002ec57fe5b60200260200101516200040560201b60201c565b6001016200029b565b50600c80546001600160a01b0319166001600160a01b039290921691909117905550620005dd565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620003c357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b335b90565b6200041a82826001600160e01b036200041e16565b5050565b6000828152600b602090815260409091206200044591839062004246620004a2821b17901c565b156200041a576200045e6001600160e01b036200040016565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620004c2836001600160a01b0384166001600160e01b03620004cb16565b90505b92915050565b6000620004e283836001600160e01b036200052316565b6200051a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620004c5565b506000620004c5565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200057e57805160ff1916838001178555620005ae565b82800160010185558215620005ae579182015b82811115620005ae57825182559160200191906001019062000591565b50620005bc929150620005c0565b5090565b6200040291905b80821115620005bc5760008155600101620005c7565b6157ee80620005ed6000396000f3fe608060405234801561001057600080fd5b50600436106103205760003560e01c806370a08231116101a7578063b49aa3b5116100ee578063e83fd26011610097578063eeb9bf0511610071578063eeb9bf05146115d2578063f2fde38b146115ef578063fc5636581461162257610320565b8063e83fd260146111a4578063e8770ca8146113cd578063e985e9c51461159757610320565b8063ca15c873116100c8578063ca15c87314611131578063d547741f1461114e578063dc97f5741461118757610320565b8063b49aa3b514611039578063b88d4fde14611041578063c87b56dd1461111457610320565b80639010d07c11610150578063a217fddf1161012a578063a217fddf14610fa6578063a22cb46514610fae578063a993edba14610fe957610320565b80639010d07c14610f4257806391d1485414610f6557806395d89b4114610f9e57610320565b806375b238fc1161018157806375b238fc14610f15578063811dd0e214610f1d5780638da5cb5b14610f3a57610320565b806370a0823114610b9c578063715018a614610bcf5780637301254a14610bd757610320565b806342842e0e1161026b578063607e7ec1116102145780636533a6fc116101ee5780636533a6fc14610b075780636b8ff57414610b775780636c0360eb14610b9457610320565b8063607e7ec114610ab05780636352211e14610acd578063641a1f0514610aea57610320565b806351c63db11161024557806351c63db1146106a55780635bea607f14610a235780635feaab2314610a9357610320565b806342842e0e146105d55780634ea17ef2146106185780634f6ccce71461068857610320565b806323b872dd116102cd5780632f745c59116102a75780632f745c59146105465780632ffb54971461057f57806336568abe1461059c57610320565b806323b872dd146104ad578063248a9ca3146104f05780632f2ff15d1461050d57610320565b8063081812fc116102fe578063081812fc14610412578063095ea7b31461045857806318160ddd1461049357610320565b806301ffc9a71461032557806305e847b51461037857806306fdde0314610395575b600080fd5b6103646004803603602081101561033b57600080fd5b50357fffffffff000000000000000000000000000000000000000000000000000000001661163f565b604080519115158252519081900360200190f35b6103646004803603602081101561038e57600080fd5b503561167a565b61039d6117f1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103d75781810151838201526020016103bf565b50505050905090810190601f1680156104045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61042f6004803603602081101561042857600080fd5b50356118a6565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6104916004803603604081101561046e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611915565b005b61049b611a24565b60408051918252519081900360200190f35b610491600480360360608110156104c357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611a35565b61049b6004803603602081101561050657600080fd5b5035611a8c565b6104916004803603604081101561052357600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16611aa1565b61049b6004803603604081101561055c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b0d565b6103646004803603602081101561059557600080fd5b5035611b4b565b610491600480360360408110156105b257600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16611c09565b610491600480360360608110156105eb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611c84565b6104916004803603602081101561062e57600080fd5b81019060208101813564010000000081111561064957600080fd5b82018360208201111561065b57600080fd5b8035906020019184600183028401116401000000008311171561067d57600080fd5b509092509050611c9f565b61049b6004803603602081101561069e57600080fd5b5035611d38565b61049b60048036036101208110156106bc57600080fd5b73ffffffffffffffffffffffffffffffffffffffff82351691908101906040810160208201356401000000008111156106f457600080fd5b82018360208201111561070657600080fd5b8035906020019184602083028401116401000000008311171561072857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561077857600080fd5b82018360208201111561078a57600080fd5b803590602001918460208302840111640100000000831117156107ac57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156107fc57600080fd5b82018360208201111561080e57600080fd5b8035906020019184602083028401116401000000008311171561083057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561088057600080fd5b82018360208201111561089257600080fd5b803590602001918460208302840111640100000000831117156108b457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561090457600080fd5b82018360208201111561091657600080fd5b8035906020019184602083028401116401000000008311171561093857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561098857600080fd5b82018360208201111561099a57600080fd5b803590602001918460208302840111640100000000831117156109bc57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805180820182529396959481810194935091506002908390839080828437600092019190915250919450611d549350505050565b61049160048036036020811015610a3957600080fd5b810190602081018135640100000000811115610a5457600080fd5b820183602082011115610a6657600080fd5b80359060200191846001830284011164010000000083111715610a8857600080fd5b50909250905061207d565b61049b60048036036020811015610aa957600080fd5b5035612116565b61049b60048036036020811015610ac657600080fd5b50356121f7565b61042f60048036036020811015610ae357600080fd5b50356124b9565b61049b60048036036020811015610b0057600080fd5b50356124e7565b61049160048036036020811015610b1d57600080fd5b810190602081018135640100000000811115610b3857600080fd5b820183602082011115610b4a57600080fd5b80359060200191846001830284011164010000000083111715610b6c57600080fd5b50909250905061259e565b61039d60048036036020811015610b8d57600080fd5b503561266a565b61039d61272b565b61049b60048036036020811015610bb257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166127aa565b61049161282c565b610491600480360360e0811015610bed57600080fd5b81359190810190604081016020820135640100000000811115610c0f57600080fd5b820183602082011115610c2157600080fd5b80359060200191846020830284011164010000000083111715610c4357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610c9357600080fd5b820183602082011115610ca557600080fd5b80359060200191846020830284011164010000000083111715610cc757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610d1757600080fd5b820183602082011115610d2957600080fd5b80359060200191846020830284011164010000000083111715610d4b57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610d9b57600080fd5b820183602082011115610dad57600080fd5b80359060200191846020830284011164010000000083111715610dcf57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610e1f57600080fd5b820183602082011115610e3157600080fd5b80359060200191846020830284011164010000000083111715610e5357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610ea357600080fd5b820183602082011115610eb557600080fd5b80359060200191846020830284011164010000000083111715610ed757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612912945050505050565b61049b612e2b565b61042f60048036036020811015610f3357600080fd5b5035612e60565b61042f612f2e565b61042f60048036036040811015610f5857600080fd5b5080359060200135612f4a565b61036460048036036040811015610f7b57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16612f68565b61039d612f86565b61049b613005565b61049160048036036040811015610fc457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135151561300a565b61100660048036036020811015610fff57600080fd5b5035613161565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b61039d6132cb565b6104916004803603608081101561105757600080fd5b73ffffffffffffffffffffffffffffffffffffffff82358116926020810135909116916040820135919081019060808101606082013564010000000081111561109f57600080fd5b8201836020820111156110b157600080fd5b803590602001918460018302840111640100000000831117156110d357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613304945050505050565b61039d6004803603602081101561112a57600080fd5b5035613362565b61049b6004803603602081101561114757600080fd5b5035613681565b6104916004803603604081101561116457600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16613698565b61039d6004803603602081101561119d57600080fd5b50356136f1565b6111c1600480360360208110156111ba57600080fd5b503561386f565b604051808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001806020018060200180602001806020018060200188600260200280838360005b8381101561123357818101518382015260200161121b565b5050505090500187810387528e818151815260200191508051906020019060200280838360005b8381101561127257818101518382015260200161125a565b5050505090500187810386528d818151815260200191508051906020019060200280838360005b838110156112b1578181015183820152602001611299565b5050505090500187810385528c818151815260200191508051906020019060200280838360005b838110156112f05781810151838201526020016112d8565b5050505090500187810384528b818151815260200191508051906020019060200280838360005b8381101561132f578181015183820152602001611317565b5050505090500187810383528a818151815260200191508051906020019060200280838360005b8381101561136e578181015183820152602001611356565b50505050905001878103825289818151815260200191508051906020019060200280838360005b838110156113ad578181015183820152602001611395565b505050509050019e50505050505050505050505050505060405180910390f35b6113ea600480360360208110156113e357600080fd5b5035613a2e565b6040518080602001806020018060200180602001806020018060200187810387528d818151815260200191508051906020019060200280838360005b8381101561143e578181015183820152602001611426565b5050505090500187810386528c818151815260200191508051906020019060200280838360005b8381101561147d578181015183820152602001611465565b5050505090500187810385528b818151815260200191508051906020019060200280838360005b838110156114bc5781810151838201526020016114a4565b5050505090500187810384528a818151815260200191508051906020019060200280838360005b838110156114fb5781810151838201526020016114e3565b50505050905001878103835289818151815260200191508051906020019060200280838360005b8381101561153a578181015183820152602001611522565b50505050905001878103825288818151815260200191508051906020019060200280838360005b83811015611579578181015183820152602001611561565b505050509050019c5050505050505050505050505060405180910390f35b610364600480360360408110156115ad57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516613f3d565b61039d600480360360208110156115e857600080fd5b5035613f78565b6104916004803603602081101561160557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16614012565b61049b6004803603602081101561163857600080fd5b5035614169565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526020819052604090205460ff165b919050565b600081611685611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906117465760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561170b5781810151838201526020016116f3565b50505050905090810190601f1680156117385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600c54600d805473ffffffffffffffffffffffffffffffffffffffff9092169163e150a7cd91908690811061177857fe5b9060005260206000209060040201600001546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156117be57600080fd5b505afa1580156117d2573d6000803e3d6000fd5b505050506040513d60208110156117e857600080fd5b50519392505050565b60068054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561189b5780601f106118705761010080835404028352916020019161189b565b820191906000526020600020905b81548152906001019060200180831161187e57829003601f168201915b505050505090505b90565b60006118b182614268565b6118ec5760405162461bcd60e51b815260040180806020018281038252602c8152602001806156b4602c913960400191505060405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000611920826124b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561198d5760405162461bcd60e51b81526004018080602001828103825260218152602001806157386021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166119ac61427b565b73ffffffffffffffffffffffffffffffffffffffff1614806119da57506119da816119d561427b565b613f3d565b611a155760405162461bcd60e51b81526004018080602001828103825260388152602001806156076038913960400191505060405180910390fd5b611a1f838361427f565b505050565b6000611a30600261431f565b905090565b611a46611a4061427b565b8261432a565b611a815760405162461bcd60e51b81526004018080602001828103825260318152602001806157596031913960400191505060405180910390fd5b611a1f838383614402565b6000908152600b602052604090206002015490565b6000828152600b6020526040902060020154611ac490611abf61427b565b612f68565b611aff5760405162461bcd60e51b815260040180806020018281038252602f8152602001806154de602f913960400191505060405180910390fd5b611b0982826145bb565b5050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260408120611b42908363ffffffff61464416565b90505b92915050565b600081611b56611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e2049440000000000000000000000000000000081525090611bda5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600d8381548110611be857fe5b906000526020600020906004020160030154600f1660001415915050919050565b611c1161427b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c7a5760405162461bcd60e51b815260040180806020018281038252602f81526020018061578a602f913960400191505060405180910390fd5b611b098282614650565b611a1f83838360405180602001604052806000815250613304565b604080517f41444d494e5f524f4c45000000000000000000000000000000000000000000008152905190819003600a019020611cdb9033612f68565b611d2c576040805162461bcd60e51b815260206004820152601860248201527f446f6573206e6f7420686176652061646d696e20726f6c650000000000000000604482015290519081900360640190fd5b611a1f600f8383615352565b600080611d4c60028463ffffffff6146d916565b509392505050565b6000611d5e61427b565b600a5473ffffffffffffffffffffffffffffffffffffffff908116911614611dcd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600088888888888860405160200180878051906020019060200280838360005b83811015611e05578181015183820152602001611ded565b50505050905001868051906020019060200280838360005b83811015611e35578181015183820152602001611e1d565b50505050905001858051906020019060200280838360005b83811015611e65578181015183820152602001611e4d565b50505050905001848051906020019060200280838360005b83811015611e95578181015183820152602001611e7d565b50505050905001838051906020019060200280838360005b83811015611ec5578181015183820152602001611ead565b50505050905001828051906020019060200280838360005b83811015611ef5578181015183820152602001611edd565b505050509050019650505050505050604051602081830303815290604052805190602001209050611f246153ee565b506040805160808101825282815273ffffffffffffffffffffffffffffffffffffffff8c81166020808401918252875194840194855287015160608401908152600d8054600181018255600082905285517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb560049092029182015592517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb6840180547fffffffffffffffffffffffff000000000000000000000000000000000000000016919095161790935593517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb782015592517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb89093019290925590547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0161206e8c826146f5565b9b9a5050505050505050505050565b604080517f41444d494e5f524f4c45000000000000000000000000000000000000000000008152905190819003600a0190206120b99033612f68565b61210a576040805162461bcd60e51b815260206004820152601860248201527f446f6573206e6f7420686176652061646d696e20726f6c650000000000000000604482015290519081900360640190fd5b611a1f600e8383615352565b600081612121611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906121a55760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b5060e86018600d85815481106121b757fe5b906000526020600020906004020160030154901b7fffffff000000000000000000000000000000000000000000000000000000000016901c915050919050565b600081612202611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906122865760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50826122918161167a565b6122e2576040805162461bcd60e51b815260206004820152601560248201527f417274776f726b206973206e6f742066696c6c65640000000000000000000000604482015290519081900360640190fd5b6122eb84611b4b565b61233c576040805162461bcd60e51b815260206004820152601460248201527f417274776f726b20686173206e6f20616c706861000000000000000000000000604482015290519081900360640190fd5b600c54600d805460f09273ffffffffffffffffffffffffffffffffffffffff169163459cc152918890811061236d57fe5b9060005260206000209060040201600001546040518263ffffffff1660e01b81526004018082815260200191505060006040518083038186803b1580156123b357600080fd5b505afa1580156123c7573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052602081101561240e57600080fd5b810190808051604051939291908464010000000082111561242e57600080fd5b90830190602082018581111561244357600080fd5b825186602082028301116401000000008211171561246057600080fd5b82525081516020918201928201910280838360005b8381101561248d578181015183820152602001612475565b505050509050016040525050506000815181106124a657fe5b6020026020010151901c92505050919050565b6000611b4582604051806060016040528060298152602001615669602991396002919063ffffffff61485616565b6000816124f2611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906125765760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600d838154811061258457fe5b906000526020600020906004020160000154915050919050565b604080517f41444d494e5f524f4c45000000000000000000000000000000000000000000008152905190819003600a0190206125da9033612f68565b61262b576040805162461bcd60e51b815260206004820152601860248201527f446f6573206e6f7420686176652061646d696e20726f6c650000000000000000604482015290519081900360640190fd5b611b0982828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061486392505050565b606081612675611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906126f95760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50612724600d848154811061270a57fe5b90600052602060002090600402016002015460001b614876565b9392505050565b60098054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561189b5780601f106118705761010080835404028352916020019161189b565b600073ffffffffffffffffffffffffffffffffffffffff82166127fe5760405162461bcd60e51b815260040180806020018281038252602a81526020018061563f602a913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020611b459061431f565b61283461427b565b600a5473ffffffffffffffffffffffffffffffffffffffff9081169116146128a3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b8661291b611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e204944000000000000000000000000000000008152509061299f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b506129aa338961432a565b6129e55760405162461bcd60e51b81526004018080602001828103825260228152602001806155896022913960400191505060405180910390fd5b600087878787878760405160200180878051906020019060200280838360005b83811015612a1d578181015183820152602001612a05565b50505050905001868051906020019060200280838360005b83811015612a4d578181015183820152602001612a35565b50505050905001858051906020019060200280838360005b83811015612a7d578181015183820152602001612a65565b50505050905001848051906020019060200280838360005b83811015612aad578181015183820152602001612a95565b50505050905001838051906020019060200280838360005b83811015612add578181015183820152602001612ac5565b50505050905001828051906020019060200280838360005b83811015612b0d578181015183820152602001612af5565b50505050905001965050505050505060405160208183030381529060405280519060200120905080600d8a81548110612b4257fe5b90600052602060002090600402016000015414612ba6576040805162461bcd60e51b815260206004820152600e60248201527f496e636f72726563742064617461000000000000000000000000000000000000604482015290519081900360640190fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166327900c8e8a8a8a8a8a8a6040518763ffffffff1660e01b81526004018080602001806020018060200180602001806020018060200187810387528d818151815260200191508051906020019060200280838360005b83811015612c4f578181015183820152602001612c37565b5050505090500187810386528c818151815260200191508051906020019060200280838360005b83811015612c8e578181015183820152602001612c76565b5050505090500187810385528b818151815260200191508051906020019060200280838360005b83811015612ccd578181015183820152602001612cb5565b5050505090500187810384528a818151815260200191508051906020019060200280838360005b83811015612d0c578181015183820152602001612cf4565b50505050905001878103835289818151815260200191508051906020019060200280838360005b83811015612d4b578181015183820152602001612d33565b50505050905001878103825288818151815260200191508051906020019060200280838360005b83811015612d8a578181015183820152602001612d72565b505050509050019c50505050505050505050505050602060405180830381600087803b158015612db957600080fd5b505af1158015612dcd573d6000803e3d6000fd5b505050506040513d6020811015612de357600080fd5b505160408051821515815290519192508b917f3269c4dc1bc7f530ff1282516b1a2d6f31f5b06057da0bd425ae84ae2d7fcaa39181900360200190a250505050505050505050565b604080517f41444d494e5f524f4c45000000000000000000000000000000000000000000008152905190819003600a01902081565b600081612e6b611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e2049440000000000000000000000000000000081525090612eef5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600d8381548110612efd57fe5b600091825260209091206004909102016001015473ffffffffffffffffffffffffffffffffffffffff169392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1690565b6000828152600b60205260408120611b42908363ffffffff61464416565b6000828152600b60205260408120611b42908363ffffffff6149de16565b60078054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561189b5780601f106118705761010080835404028352916020019161189b565b600081565b61301261427b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613092576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806005600061309f61427b565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169215159290921790915561310e61427b565b604080518415158152905173ffffffffffffffffffffffffffffffffffffffff92909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b60008060008060008086613173611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906131f75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600c54600d805473ffffffffffffffffffffffffffffffffffffffff9092169163d200e57391908b90811061322957fe5b9060005260206000209060040201600001546040518263ffffffff1660e01b81526004018082815260200191505060c06040518083038186803b15801561326f57600080fd5b505afa158015613283573d6000803e3d6000fd5b505050506040513d60c081101561329957600080fd5b508051602082015160408301516060840151608085015160a090950151939d929c50909a509850919650945092505050565b6040518060400160405280601081526020017f496e76616c696420546f6b656e2049440000000000000000000000000000000081525081565b61331561330f61427b565b8361432a565b6133505760405162461bcd60e51b81526004018080602001828103825260318152602001806157596031913960400191505060405180910390fd5b61335c84848484614a00565b50505050565b606061336d82614268565b6133a85760405162461bcd60e51b815260040180806020018281038252602f815260200180615709602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561345b5780601f106134305761010080835404028352916020019161345b565b820191906000526020600020905b81548152906001019060200180831161343e57829003601f168201915b505060095493945050505060027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018416150201909116046134a2579050611675565b80511561359157600981604051602001808380546001816001161561010002031660029004801561350a5780601f106134e857610100808354040283529182019161350a565b820191906000526020600020905b8154815290600101906020018083116134f6575b5050825160208401908083835b6020831061355457805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613517565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050611675565b600961359c84614a52565b60405160200180838054600181600116156101000203166002900480156135fa5780601f106135d85761010080835404028352918201916135fa565b820191906000526020600020905b8154815290600101906020018083116135e6575b5050825160208401908083835b6020831061364457805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613607565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b6000818152600b60205260408120611b459061431f565b6000828152600b60205260409020600201546136b690611abf61427b565b611c7a5760405162461bcd60e51b81526004018080602001828103825260308152602001806155d76030913960400191505060405180910390fd5b60606136fb611a24565b82106040518060400160405280601081526020017f496e76616c696420546f6b656e204944000000000000000000000000000000008152509061377f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600f61378b83614a52565b60405160200180838054600181600116156101000203166002900480156137e95780601f106137c75761010080835404028352918201916137e9565b820191906000526020600020905b8154815290600101906020018083116137d5575b5050825160208401908083835b6020831061383357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016137f6565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6000606080606080606080613882615415565b8861388b611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e204944000000000000000000000000000000008152509061390f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b508961391a8161167a565b61396b576040805162461bcd60e51b815260206004820152601560248201527f417274776f726b206973206e6f742066696c6c65640000000000000000000000604482015290519081900360640190fd5b6139736153ee565b600d8c8154811061398057fe5b600091825260209182902060408051608081018252600490930290910180548352600181015473ffffffffffffffffffffffffffffffffffffffff1693830193909352600283015490820152600390910154606082015290506139e28c613a2e565b809a50819b50829c50839d50849e50859f5050505050505080602001519a5060405180604001604052808260400151815260200182606001518152509350505050919395975091939597565b60608060608060608086613a40611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e2049440000000000000000000000000000000081525090613ac45760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b5087613acf8161167a565b613b20576040805162461bcd60e51b815260206004820152601560248201527f417274776f726b206973206e6f742066696c6c65640000000000000000000000604482015290519081900360640190fd5b600c54600d805473ffffffffffffffffffffffffffffffffffffffff90921691630f51d09991908c908110613b5157fe5b9060005260206000209060040201600001546040518263ffffffff1660e01b81526004018082815260200191505060006040518083038186803b158015613b9757600080fd5b505afa158015613bab573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405260c0811015613bf257600080fd5b8101908080516040519392919084640100000000821115613c1257600080fd5b908301906020820185811115613c2757600080fd5b8251866020820283011164010000000082111715613c4457600080fd5b82525081516020918201928201910280838360005b83811015613c71578181015183820152602001613c59565b5050505090500160405260200180516040519392919084640100000000821115613c9a57600080fd5b908301906020820185811115613caf57600080fd5b8251866020820283011164010000000082111715613ccc57600080fd5b82525081516020918201928201910280838360005b83811015613cf9578181015183820152602001613ce1565b5050505090500160405260200180516040519392919084640100000000821115613d2257600080fd5b908301906020820185811115613d3757600080fd5b8251866020820283011164010000000082111715613d5457600080fd5b82525081516020918201928201910280838360005b83811015613d81578181015183820152602001613d69565b5050505090500160405260200180516040519392919084640100000000821115613daa57600080fd5b908301906020820185811115613dbf57600080fd5b8251866020820283011164010000000082111715613ddc57600080fd5b82525081516020918201928201910280838360005b83811015613e09578181015183820152602001613df1565b5050505090500160405260200180516040519392919084640100000000821115613e3257600080fd5b908301906020820185811115613e4757600080fd5b8251866020820283011164010000000082111715613e6457600080fd5b82525081516020918201928201910280838360005b83811015613e91578181015183820152602001613e79565b5050505090500160405260200180516040519392919084640100000000821115613eba57600080fd5b908301906020820185811115613ecf57600080fd5b8251866020820283011164010000000082111715613eec57600080fd5b82525081516020918201928201910280838360005b83811015613f19578181015183820152602001613f01565b50505050905001604052505050975097509750975097509750505091939550919395565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6060613f82611a24565b82106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906140065760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600e61378b83614a52565b61401a61427b565b600a5473ffffffffffffffffffffffffffffffffffffffff908116911614614089576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166140db5760405162461bcd60e51b815260040180806020018281038252602681526020018061553f6026913960400191505060405180910390fd5b600a5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600081614174611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906141f85760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b5060e8600d848154811061420857fe5b9060005260206000209060040201600301547fffffff000000000000000000000000000000000000000000000000000000000016901c915050919050565b6000611b428373ffffffffffffffffffffffffffffffffffffffff8416614b7f565b6000611b4560028363ffffffff614bc916565b3390565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906142d9826124b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b4582614bd5565b600061433582614268565b6143705760405162461bcd60e51b815260040180806020018281038252602c8152602001806155ab602c913960400191505060405180910390fd5b600061437b836124b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806143ea57508373ffffffffffffffffffffffffffffffffffffffff166143d2846118a6565b73ffffffffffffffffffffffffffffffffffffffff16145b806143fa57506143fa8185613f3d565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16614422826124b9565b73ffffffffffffffffffffffffffffffffffffffff16146144745760405162461bcd60e51b81526004018080602001828103825260298152602001806156e06029913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166144c65760405162461bcd60e51b81526004018080602001828103825260248152602001806155656024913960400191505060405180910390fd5b6144d1838383611a1f565b6144dc60008261427f565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260409020614511908263ffffffff614bd916565b5073ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020614547908263ffffffff614be516565b5061455a6002828463ffffffff614bf116565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000828152600b602052604090206145d9908263ffffffff61424616565b15611b09576145e661427b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611b428383614c14565b6000828152600b6020526040902061466e908263ffffffff614c7816565b15611b095761467b61427b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008080806146e88686614c9a565b9097909650945050505050565b73ffffffffffffffffffffffffffffffffffffffff821661475d576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61476681614268565b156147b8576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6147c460008383611a1f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090206147f9908263ffffffff614be516565b5061480c6002828463ffffffff614bf116565b50604051819073ffffffffffffffffffffffffffffffffffffffff8416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006143fa848484614d15565b8051611b09906009906020840190615433565b6040805160208082528183019092526060918291906020820181803683370190505090506000805b6020811015614924576008810260020a85027fff0000000000000000000000000000000000000000000000000000000000000081161561491b57808484815181106148e557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506001909201915b5060010161489e565b60608267ffffffffffffffff8111801561493d57600080fd5b506040519080825280601f01601f191660200182016040528015614968576020820181803683370190505b509050600091505b828210156149d55783828151811061498457fe5b602001015160f81c60f81b81838151811061499b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600190910190614970565b95945050505050565b6000611b428373ffffffffffffffffffffffffffffffffffffffff8416614da2565b614a0b848484614402565b614a1784848484614dba565b61335c5760405162461bcd60e51b815260040180806020018281038252603281526020018061550d6032913960400191505060405180910390fd5b606081614a93575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152611675565b8160005b8115614aab57600101600a82049150614a97565b60608167ffffffffffffffff81118015614ac457600080fd5b506040519080825280601f01601f191660200182016040528015614aef576020820181803683370190505b5085935090507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8315614b7657600a840660300160f81b82828060019003935081518110614b3c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84049350614b19565b50949350505050565b6000614b8b8383614da2565b614bc157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611b45565b506000611b45565b6000611b428383614da2565b5490565b6000611b428383614ffc565b6000611b428383614b7f565b60006143fa848473ffffffffffffffffffffffffffffffffffffffff85166150e0565b81546000908210614c565760405162461bcd60e51b81526004018080602001828103825260228152602001806154bc6022913960400191505060405180910390fd5b826000018281548110614c6557fe5b9060005260206000200154905092915050565b6000611b428373ffffffffffffffffffffffffffffffffffffffff8416614ffc565b815460009081908310614cde5760405162461bcd60e51b81526004018080602001828103825260228152602001806156926022913960400191505060405180910390fd5b6000846000018481548110614cef57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281614d735760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50846000016001820381548110614d8657fe5b9060005260206000209060020201600101549150509392505050565b60009081526001919091016020526040902054151590565b6000614ddb8473ffffffffffffffffffffffffffffffffffffffff16615177565b614de7575060016143fa565b6060614f917f150b7a0200000000000000000000000000000000000000000000000000000000614e1561427b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614ec2578181015183820152602001614eaa565b50505050905090810190601f168015614eef5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161550d6032913973ffffffffffffffffffffffffffffffffffffffff8816919063ffffffff6151b016565b90506000818060200190516020811015614faa57600080fd5b50517fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001492505050949350505050565b600081815260018301602052604081205480156150d65783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff808301919081019060009087908390811061504d57fe5b906000526020600020015490508087600001848154811061506a57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061509a57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611b45565b6000915050611b45565b600082815260018401602052604081205480615145575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612724565b8285600001600183038154811061515857fe5b9060005260206000209060020201600101819055506000915050612724565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906143fa575050151592915050565b60606143fa848460008560606151c585615177565b615216576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061528057805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101615243565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146152e2576040519150601f19603f3d011682016040523d82523d6000602084013e6152e7565b606091505b509150915081156152fb5791506143fa9050565b80511561530b5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561170b5781810151838201526020016116f3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106153b1578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008235161785556153de565b828001600101855582156153de579182015b828111156153de5782358255916020019190600101906153c3565b506153ea9291506154a1565b5090565b60408051608081018252600080825260208201819052918101829052606081019190915290565b60405180604001604052806002906020820280368337509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061547457805160ff19168380011785556153de565b828001600101855582156153de579182015b828111156153de578251825591602001919060010190615486565b6118a391905b808211156153ea57600081556001016154a756fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734e6f7420617070726f766564206f72206e6f74206f776e6572206f6620746f6b656e4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212200445099f4a3022e739373efac71c9df6c2633bcf00e5c983951b38dc7a07891f64736f6c634300060b00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000e2514e229a657f37da9384679452c34466fa95390000000000000000000000000000000000000000000000000000000000000003000000000000000000000000cf90ad693ace601b5b5582c4f95ec7266cdb3eec0000000000000000000000009388517b36b817dccbb663a3097f4c5ffdbecc14000000000000000000000000f7a3bbe1711eb43967cdbf58fa61342a25e3c845
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103205760003560e01c806370a08231116101a7578063b49aa3b5116100ee578063e83fd26011610097578063eeb9bf0511610071578063eeb9bf05146115d2578063f2fde38b146115ef578063fc5636581461162257610320565b8063e83fd260146111a4578063e8770ca8146113cd578063e985e9c51461159757610320565b8063ca15c873116100c8578063ca15c87314611131578063d547741f1461114e578063dc97f5741461118757610320565b8063b49aa3b514611039578063b88d4fde14611041578063c87b56dd1461111457610320565b80639010d07c11610150578063a217fddf1161012a578063a217fddf14610fa6578063a22cb46514610fae578063a993edba14610fe957610320565b80639010d07c14610f4257806391d1485414610f6557806395d89b4114610f9e57610320565b806375b238fc1161018157806375b238fc14610f15578063811dd0e214610f1d5780638da5cb5b14610f3a57610320565b806370a0823114610b9c578063715018a614610bcf5780637301254a14610bd757610320565b806342842e0e1161026b578063607e7ec1116102145780636533a6fc116101ee5780636533a6fc14610b075780636b8ff57414610b775780636c0360eb14610b9457610320565b8063607e7ec114610ab05780636352211e14610acd578063641a1f0514610aea57610320565b806351c63db11161024557806351c63db1146106a55780635bea607f14610a235780635feaab2314610a9357610320565b806342842e0e146105d55780634ea17ef2146106185780634f6ccce71461068857610320565b806323b872dd116102cd5780632f745c59116102a75780632f745c59146105465780632ffb54971461057f57806336568abe1461059c57610320565b806323b872dd146104ad578063248a9ca3146104f05780632f2ff15d1461050d57610320565b8063081812fc116102fe578063081812fc14610412578063095ea7b31461045857806318160ddd1461049357610320565b806301ffc9a71461032557806305e847b51461037857806306fdde0314610395575b600080fd5b6103646004803603602081101561033b57600080fd5b50357fffffffff000000000000000000000000000000000000000000000000000000001661163f565b604080519115158252519081900360200190f35b6103646004803603602081101561038e57600080fd5b503561167a565b61039d6117f1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103d75781810151838201526020016103bf565b50505050905090810190601f1680156104045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61042f6004803603602081101561042857600080fd5b50356118a6565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6104916004803603604081101561046e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611915565b005b61049b611a24565b60408051918252519081900360200190f35b610491600480360360608110156104c357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611a35565b61049b6004803603602081101561050657600080fd5b5035611a8c565b6104916004803603604081101561052357600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16611aa1565b61049b6004803603604081101561055c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b0d565b6103646004803603602081101561059557600080fd5b5035611b4b565b610491600480360360408110156105b257600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16611c09565b610491600480360360608110156105eb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611c84565b6104916004803603602081101561062e57600080fd5b81019060208101813564010000000081111561064957600080fd5b82018360208201111561065b57600080fd5b8035906020019184600183028401116401000000008311171561067d57600080fd5b509092509050611c9f565b61049b6004803603602081101561069e57600080fd5b5035611d38565b61049b60048036036101208110156106bc57600080fd5b73ffffffffffffffffffffffffffffffffffffffff82351691908101906040810160208201356401000000008111156106f457600080fd5b82018360208201111561070657600080fd5b8035906020019184602083028401116401000000008311171561072857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561077857600080fd5b82018360208201111561078a57600080fd5b803590602001918460208302840111640100000000831117156107ac57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156107fc57600080fd5b82018360208201111561080e57600080fd5b8035906020019184602083028401116401000000008311171561083057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561088057600080fd5b82018360208201111561089257600080fd5b803590602001918460208302840111640100000000831117156108b457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561090457600080fd5b82018360208201111561091657600080fd5b8035906020019184602083028401116401000000008311171561093857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561098857600080fd5b82018360208201111561099a57600080fd5b803590602001918460208302840111640100000000831117156109bc57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805180820182529396959481810194935091506002908390839080828437600092019190915250919450611d549350505050565b61049160048036036020811015610a3957600080fd5b810190602081018135640100000000811115610a5457600080fd5b820183602082011115610a6657600080fd5b80359060200191846001830284011164010000000083111715610a8857600080fd5b50909250905061207d565b61049b60048036036020811015610aa957600080fd5b5035612116565b61049b60048036036020811015610ac657600080fd5b50356121f7565b61042f60048036036020811015610ae357600080fd5b50356124b9565b61049b60048036036020811015610b0057600080fd5b50356124e7565b61049160048036036020811015610b1d57600080fd5b810190602081018135640100000000811115610b3857600080fd5b820183602082011115610b4a57600080fd5b80359060200191846001830284011164010000000083111715610b6c57600080fd5b50909250905061259e565b61039d60048036036020811015610b8d57600080fd5b503561266a565b61039d61272b565b61049b60048036036020811015610bb257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166127aa565b61049161282c565b610491600480360360e0811015610bed57600080fd5b81359190810190604081016020820135640100000000811115610c0f57600080fd5b820183602082011115610c2157600080fd5b80359060200191846020830284011164010000000083111715610c4357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610c9357600080fd5b820183602082011115610ca557600080fd5b80359060200191846020830284011164010000000083111715610cc757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610d1757600080fd5b820183602082011115610d2957600080fd5b80359060200191846020830284011164010000000083111715610d4b57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610d9b57600080fd5b820183602082011115610dad57600080fd5b80359060200191846020830284011164010000000083111715610dcf57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610e1f57600080fd5b820183602082011115610e3157600080fd5b80359060200191846020830284011164010000000083111715610e5357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050640100000000811115610ea357600080fd5b820183602082011115610eb557600080fd5b80359060200191846020830284011164010000000083111715610ed757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612912945050505050565b61049b612e2b565b61042f60048036036020811015610f3357600080fd5b5035612e60565b61042f612f2e565b61042f60048036036040811015610f5857600080fd5b5080359060200135612f4a565b61036460048036036040811015610f7b57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16612f68565b61039d612f86565b61049b613005565b61049160048036036040811015610fc457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135151561300a565b61100660048036036020811015610fff57600080fd5b5035613161565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b61039d6132cb565b6104916004803603608081101561105757600080fd5b73ffffffffffffffffffffffffffffffffffffffff82358116926020810135909116916040820135919081019060808101606082013564010000000081111561109f57600080fd5b8201836020820111156110b157600080fd5b803590602001918460018302840111640100000000831117156110d357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613304945050505050565b61039d6004803603602081101561112a57600080fd5b5035613362565b61049b6004803603602081101561114757600080fd5b5035613681565b6104916004803603604081101561116457600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16613698565b61039d6004803603602081101561119d57600080fd5b50356136f1565b6111c1600480360360208110156111ba57600080fd5b503561386f565b604051808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001806020018060200180602001806020018060200188600260200280838360005b8381101561123357818101518382015260200161121b565b5050505090500187810387528e818151815260200191508051906020019060200280838360005b8381101561127257818101518382015260200161125a565b5050505090500187810386528d818151815260200191508051906020019060200280838360005b838110156112b1578181015183820152602001611299565b5050505090500187810385528c818151815260200191508051906020019060200280838360005b838110156112f05781810151838201526020016112d8565b5050505090500187810384528b818151815260200191508051906020019060200280838360005b8381101561132f578181015183820152602001611317565b5050505090500187810383528a818151815260200191508051906020019060200280838360005b8381101561136e578181015183820152602001611356565b50505050905001878103825289818151815260200191508051906020019060200280838360005b838110156113ad578181015183820152602001611395565b505050509050019e50505050505050505050505050505060405180910390f35b6113ea600480360360208110156113e357600080fd5b5035613a2e565b6040518080602001806020018060200180602001806020018060200187810387528d818151815260200191508051906020019060200280838360005b8381101561143e578181015183820152602001611426565b5050505090500187810386528c818151815260200191508051906020019060200280838360005b8381101561147d578181015183820152602001611465565b5050505090500187810385528b818151815260200191508051906020019060200280838360005b838110156114bc5781810151838201526020016114a4565b5050505090500187810384528a818151815260200191508051906020019060200280838360005b838110156114fb5781810151838201526020016114e3565b50505050905001878103835289818151815260200191508051906020019060200280838360005b8381101561153a578181015183820152602001611522565b50505050905001878103825288818151815260200191508051906020019060200280838360005b83811015611579578181015183820152602001611561565b505050509050019c5050505050505050505050505060405180910390f35b610364600480360360408110156115ad57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516613f3d565b61039d600480360360208110156115e857600080fd5b5035613f78565b6104916004803603602081101561160557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16614012565b61049b6004803603602081101561163857600080fd5b5035614169565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526020819052604090205460ff165b919050565b600081611685611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906117465760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561170b5781810151838201526020016116f3565b50505050905090810190601f1680156117385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600c54600d805473ffffffffffffffffffffffffffffffffffffffff9092169163e150a7cd91908690811061177857fe5b9060005260206000209060040201600001546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156117be57600080fd5b505afa1580156117d2573d6000803e3d6000fd5b505050506040513d60208110156117e857600080fd5b50519392505050565b60068054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561189b5780601f106118705761010080835404028352916020019161189b565b820191906000526020600020905b81548152906001019060200180831161187e57829003601f168201915b505050505090505b90565b60006118b182614268565b6118ec5760405162461bcd60e51b815260040180806020018281038252602c8152602001806156b4602c913960400191505060405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000611920826124b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561198d5760405162461bcd60e51b81526004018080602001828103825260218152602001806157386021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166119ac61427b565b73ffffffffffffffffffffffffffffffffffffffff1614806119da57506119da816119d561427b565b613f3d565b611a155760405162461bcd60e51b81526004018080602001828103825260388152602001806156076038913960400191505060405180910390fd5b611a1f838361427f565b505050565b6000611a30600261431f565b905090565b611a46611a4061427b565b8261432a565b611a815760405162461bcd60e51b81526004018080602001828103825260318152602001806157596031913960400191505060405180910390fd5b611a1f838383614402565b6000908152600b602052604090206002015490565b6000828152600b6020526040902060020154611ac490611abf61427b565b612f68565b611aff5760405162461bcd60e51b815260040180806020018281038252602f8152602001806154de602f913960400191505060405180910390fd5b611b0982826145bb565b5050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260408120611b42908363ffffffff61464416565b90505b92915050565b600081611b56611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e2049440000000000000000000000000000000081525090611bda5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600d8381548110611be857fe5b906000526020600020906004020160030154600f1660001415915050919050565b611c1161427b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c7a5760405162461bcd60e51b815260040180806020018281038252602f81526020018061578a602f913960400191505060405180910390fd5b611b098282614650565b611a1f83838360405180602001604052806000815250613304565b604080517f41444d494e5f524f4c45000000000000000000000000000000000000000000008152905190819003600a019020611cdb9033612f68565b611d2c576040805162461bcd60e51b815260206004820152601860248201527f446f6573206e6f7420686176652061646d696e20726f6c650000000000000000604482015290519081900360640190fd5b611a1f600f8383615352565b600080611d4c60028463ffffffff6146d916565b509392505050565b6000611d5e61427b565b600a5473ffffffffffffffffffffffffffffffffffffffff908116911614611dcd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600088888888888860405160200180878051906020019060200280838360005b83811015611e05578181015183820152602001611ded565b50505050905001868051906020019060200280838360005b83811015611e35578181015183820152602001611e1d565b50505050905001858051906020019060200280838360005b83811015611e65578181015183820152602001611e4d565b50505050905001848051906020019060200280838360005b83811015611e95578181015183820152602001611e7d565b50505050905001838051906020019060200280838360005b83811015611ec5578181015183820152602001611ead565b50505050905001828051906020019060200280838360005b83811015611ef5578181015183820152602001611edd565b505050509050019650505050505050604051602081830303815290604052805190602001209050611f246153ee565b506040805160808101825282815273ffffffffffffffffffffffffffffffffffffffff8c81166020808401918252875194840194855287015160608401908152600d8054600181018255600082905285517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb560049092029182015592517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb6840180547fffffffffffffffffffffffff000000000000000000000000000000000000000016919095161790935593517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb782015592517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb89093019290925590547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0161206e8c826146f5565b9b9a5050505050505050505050565b604080517f41444d494e5f524f4c45000000000000000000000000000000000000000000008152905190819003600a0190206120b99033612f68565b61210a576040805162461bcd60e51b815260206004820152601860248201527f446f6573206e6f7420686176652061646d696e20726f6c650000000000000000604482015290519081900360640190fd5b611a1f600e8383615352565b600081612121611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906121a55760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b5060e86018600d85815481106121b757fe5b906000526020600020906004020160030154901b7fffffff000000000000000000000000000000000000000000000000000000000016901c915050919050565b600081612202611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906122865760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50826122918161167a565b6122e2576040805162461bcd60e51b815260206004820152601560248201527f417274776f726b206973206e6f742066696c6c65640000000000000000000000604482015290519081900360640190fd5b6122eb84611b4b565b61233c576040805162461bcd60e51b815260206004820152601460248201527f417274776f726b20686173206e6f20616c706861000000000000000000000000604482015290519081900360640190fd5b600c54600d805460f09273ffffffffffffffffffffffffffffffffffffffff169163459cc152918890811061236d57fe5b9060005260206000209060040201600001546040518263ffffffff1660e01b81526004018082815260200191505060006040518083038186803b1580156123b357600080fd5b505afa1580156123c7573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052602081101561240e57600080fd5b810190808051604051939291908464010000000082111561242e57600080fd5b90830190602082018581111561244357600080fd5b825186602082028301116401000000008211171561246057600080fd5b82525081516020918201928201910280838360005b8381101561248d578181015183820152602001612475565b505050509050016040525050506000815181106124a657fe5b6020026020010151901c92505050919050565b6000611b4582604051806060016040528060298152602001615669602991396002919063ffffffff61485616565b6000816124f2611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906125765760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600d838154811061258457fe5b906000526020600020906004020160000154915050919050565b604080517f41444d494e5f524f4c45000000000000000000000000000000000000000000008152905190819003600a0190206125da9033612f68565b61262b576040805162461bcd60e51b815260206004820152601860248201527f446f6573206e6f7420686176652061646d696e20726f6c650000000000000000604482015290519081900360640190fd5b611b0982828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061486392505050565b606081612675611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906126f95760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50612724600d848154811061270a57fe5b90600052602060002090600402016002015460001b614876565b9392505050565b60098054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561189b5780601f106118705761010080835404028352916020019161189b565b600073ffffffffffffffffffffffffffffffffffffffff82166127fe5760405162461bcd60e51b815260040180806020018281038252602a81526020018061563f602a913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020611b459061431f565b61283461427b565b600a5473ffffffffffffffffffffffffffffffffffffffff9081169116146128a3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b8661291b611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e204944000000000000000000000000000000008152509061299f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b506129aa338961432a565b6129e55760405162461bcd60e51b81526004018080602001828103825260228152602001806155896022913960400191505060405180910390fd5b600087878787878760405160200180878051906020019060200280838360005b83811015612a1d578181015183820152602001612a05565b50505050905001868051906020019060200280838360005b83811015612a4d578181015183820152602001612a35565b50505050905001858051906020019060200280838360005b83811015612a7d578181015183820152602001612a65565b50505050905001848051906020019060200280838360005b83811015612aad578181015183820152602001612a95565b50505050905001838051906020019060200280838360005b83811015612add578181015183820152602001612ac5565b50505050905001828051906020019060200280838360005b83811015612b0d578181015183820152602001612af5565b50505050905001965050505050505060405160208183030381529060405280519060200120905080600d8a81548110612b4257fe5b90600052602060002090600402016000015414612ba6576040805162461bcd60e51b815260206004820152600e60248201527f496e636f72726563742064617461000000000000000000000000000000000000604482015290519081900360640190fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166327900c8e8a8a8a8a8a8a6040518763ffffffff1660e01b81526004018080602001806020018060200180602001806020018060200187810387528d818151815260200191508051906020019060200280838360005b83811015612c4f578181015183820152602001612c37565b5050505090500187810386528c818151815260200191508051906020019060200280838360005b83811015612c8e578181015183820152602001612c76565b5050505090500187810385528b818151815260200191508051906020019060200280838360005b83811015612ccd578181015183820152602001612cb5565b5050505090500187810384528a818151815260200191508051906020019060200280838360005b83811015612d0c578181015183820152602001612cf4565b50505050905001878103835289818151815260200191508051906020019060200280838360005b83811015612d4b578181015183820152602001612d33565b50505050905001878103825288818151815260200191508051906020019060200280838360005b83811015612d8a578181015183820152602001612d72565b505050509050019c50505050505050505050505050602060405180830381600087803b158015612db957600080fd5b505af1158015612dcd573d6000803e3d6000fd5b505050506040513d6020811015612de357600080fd5b505160408051821515815290519192508b917f3269c4dc1bc7f530ff1282516b1a2d6f31f5b06057da0bd425ae84ae2d7fcaa39181900360200190a250505050505050505050565b604080517f41444d494e5f524f4c45000000000000000000000000000000000000000000008152905190819003600a01902081565b600081612e6b611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e2049440000000000000000000000000000000081525090612eef5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600d8381548110612efd57fe5b600091825260209091206004909102016001015473ffffffffffffffffffffffffffffffffffffffff169392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1690565b6000828152600b60205260408120611b42908363ffffffff61464416565b6000828152600b60205260408120611b42908363ffffffff6149de16565b60078054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561189b5780601f106118705761010080835404028352916020019161189b565b600081565b61301261427b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613092576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806005600061309f61427b565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169215159290921790915561310e61427b565b604080518415158152905173ffffffffffffffffffffffffffffffffffffffff92909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b60008060008060008086613173611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906131f75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600c54600d805473ffffffffffffffffffffffffffffffffffffffff9092169163d200e57391908b90811061322957fe5b9060005260206000209060040201600001546040518263ffffffff1660e01b81526004018082815260200191505060c06040518083038186803b15801561326f57600080fd5b505afa158015613283573d6000803e3d6000fd5b505050506040513d60c081101561329957600080fd5b508051602082015160408301516060840151608085015160a090950151939d929c50909a509850919650945092505050565b6040518060400160405280601081526020017f496e76616c696420546f6b656e2049440000000000000000000000000000000081525081565b61331561330f61427b565b8361432a565b6133505760405162461bcd60e51b81526004018080602001828103825260318152602001806157596031913960400191505060405180910390fd5b61335c84848484614a00565b50505050565b606061336d82614268565b6133a85760405162461bcd60e51b815260040180806020018281038252602f815260200180615709602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561345b5780601f106134305761010080835404028352916020019161345b565b820191906000526020600020905b81548152906001019060200180831161343e57829003601f168201915b505060095493945050505060027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018416150201909116046134a2579050611675565b80511561359157600981604051602001808380546001816001161561010002031660029004801561350a5780601f106134e857610100808354040283529182019161350a565b820191906000526020600020905b8154815290600101906020018083116134f6575b5050825160208401908083835b6020831061355457805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613517565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050611675565b600961359c84614a52565b60405160200180838054600181600116156101000203166002900480156135fa5780601f106135d85761010080835404028352918201916135fa565b820191906000526020600020905b8154815290600101906020018083116135e6575b5050825160208401908083835b6020831061364457805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613607565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b6000818152600b60205260408120611b459061431f565b6000828152600b60205260409020600201546136b690611abf61427b565b611c7a5760405162461bcd60e51b81526004018080602001828103825260308152602001806155d76030913960400191505060405180910390fd5b60606136fb611a24565b82106040518060400160405280601081526020017f496e76616c696420546f6b656e204944000000000000000000000000000000008152509061377f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600f61378b83614a52565b60405160200180838054600181600116156101000203166002900480156137e95780601f106137c75761010080835404028352918201916137e9565b820191906000526020600020905b8154815290600101906020018083116137d5575b5050825160208401908083835b6020831061383357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016137f6565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6000606080606080606080613882615415565b8861388b611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e204944000000000000000000000000000000008152509061390f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b508961391a8161167a565b61396b576040805162461bcd60e51b815260206004820152601560248201527f417274776f726b206973206e6f742066696c6c65640000000000000000000000604482015290519081900360640190fd5b6139736153ee565b600d8c8154811061398057fe5b600091825260209182902060408051608081018252600490930290910180548352600181015473ffffffffffffffffffffffffffffffffffffffff1693830193909352600283015490820152600390910154606082015290506139e28c613a2e565b809a50819b50829c50839d50849e50859f5050505050505080602001519a5060405180604001604052808260400151815260200182606001518152509350505050919395975091939597565b60608060608060608086613a40611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e2049440000000000000000000000000000000081525090613ac45760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b5087613acf8161167a565b613b20576040805162461bcd60e51b815260206004820152601560248201527f417274776f726b206973206e6f742066696c6c65640000000000000000000000604482015290519081900360640190fd5b600c54600d805473ffffffffffffffffffffffffffffffffffffffff90921691630f51d09991908c908110613b5157fe5b9060005260206000209060040201600001546040518263ffffffff1660e01b81526004018082815260200191505060006040518083038186803b158015613b9757600080fd5b505afa158015613bab573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405260c0811015613bf257600080fd5b8101908080516040519392919084640100000000821115613c1257600080fd5b908301906020820185811115613c2757600080fd5b8251866020820283011164010000000082111715613c4457600080fd5b82525081516020918201928201910280838360005b83811015613c71578181015183820152602001613c59565b5050505090500160405260200180516040519392919084640100000000821115613c9a57600080fd5b908301906020820185811115613caf57600080fd5b8251866020820283011164010000000082111715613ccc57600080fd5b82525081516020918201928201910280838360005b83811015613cf9578181015183820152602001613ce1565b5050505090500160405260200180516040519392919084640100000000821115613d2257600080fd5b908301906020820185811115613d3757600080fd5b8251866020820283011164010000000082111715613d5457600080fd5b82525081516020918201928201910280838360005b83811015613d81578181015183820152602001613d69565b5050505090500160405260200180516040519392919084640100000000821115613daa57600080fd5b908301906020820185811115613dbf57600080fd5b8251866020820283011164010000000082111715613ddc57600080fd5b82525081516020918201928201910280838360005b83811015613e09578181015183820152602001613df1565b5050505090500160405260200180516040519392919084640100000000821115613e3257600080fd5b908301906020820185811115613e4757600080fd5b8251866020820283011164010000000082111715613e6457600080fd5b82525081516020918201928201910280838360005b83811015613e91578181015183820152602001613e79565b5050505090500160405260200180516040519392919084640100000000821115613eba57600080fd5b908301906020820185811115613ecf57600080fd5b8251866020820283011164010000000082111715613eec57600080fd5b82525081516020918201928201910280838360005b83811015613f19578181015183820152602001613f01565b50505050905001604052505050975097509750975097509750505091939550919395565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6060613f82611a24565b82106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906140065760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50600e61378b83614a52565b61401a61427b565b600a5473ffffffffffffffffffffffffffffffffffffffff908116911614614089576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166140db5760405162461bcd60e51b815260040180806020018281038252602681526020018061553f6026913960400191505060405180910390fd5b600a5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600081614174611a24565b81106040518060400160405280601081526020017f496e76616c696420546f6b656e20494400000000000000000000000000000000815250906141f85760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b5060e8600d848154811061420857fe5b9060005260206000209060040201600301547fffffff000000000000000000000000000000000000000000000000000000000016901c915050919050565b6000611b428373ffffffffffffffffffffffffffffffffffffffff8416614b7f565b6000611b4560028363ffffffff614bc916565b3390565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906142d9826124b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b4582614bd5565b600061433582614268565b6143705760405162461bcd60e51b815260040180806020018281038252602c8152602001806155ab602c913960400191505060405180910390fd5b600061437b836124b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806143ea57508373ffffffffffffffffffffffffffffffffffffffff166143d2846118a6565b73ffffffffffffffffffffffffffffffffffffffff16145b806143fa57506143fa8185613f3d565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16614422826124b9565b73ffffffffffffffffffffffffffffffffffffffff16146144745760405162461bcd60e51b81526004018080602001828103825260298152602001806156e06029913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166144c65760405162461bcd60e51b81526004018080602001828103825260248152602001806155656024913960400191505060405180910390fd5b6144d1838383611a1f565b6144dc60008261427f565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260409020614511908263ffffffff614bd916565b5073ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020614547908263ffffffff614be516565b5061455a6002828463ffffffff614bf116565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000828152600b602052604090206145d9908263ffffffff61424616565b15611b09576145e661427b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611b428383614c14565b6000828152600b6020526040902061466e908263ffffffff614c7816565b15611b095761467b61427b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008080806146e88686614c9a565b9097909650945050505050565b73ffffffffffffffffffffffffffffffffffffffff821661475d576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61476681614268565b156147b8576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6147c460008383611a1f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090206147f9908263ffffffff614be516565b5061480c6002828463ffffffff614bf116565b50604051819073ffffffffffffffffffffffffffffffffffffffff8416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006143fa848484614d15565b8051611b09906009906020840190615433565b6040805160208082528183019092526060918291906020820181803683370190505090506000805b6020811015614924576008810260020a85027fff0000000000000000000000000000000000000000000000000000000000000081161561491b57808484815181106148e557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506001909201915b5060010161489e565b60608267ffffffffffffffff8111801561493d57600080fd5b506040519080825280601f01601f191660200182016040528015614968576020820181803683370190505b509050600091505b828210156149d55783828151811061498457fe5b602001015160f81c60f81b81838151811061499b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600190910190614970565b95945050505050565b6000611b428373ffffffffffffffffffffffffffffffffffffffff8416614da2565b614a0b848484614402565b614a1784848484614dba565b61335c5760405162461bcd60e51b815260040180806020018281038252603281526020018061550d6032913960400191505060405180910390fd5b606081614a93575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152611675565b8160005b8115614aab57600101600a82049150614a97565b60608167ffffffffffffffff81118015614ac457600080fd5b506040519080825280601f01601f191660200182016040528015614aef576020820181803683370190505b5085935090507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8315614b7657600a840660300160f81b82828060019003935081518110614b3c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84049350614b19565b50949350505050565b6000614b8b8383614da2565b614bc157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611b45565b506000611b45565b6000611b428383614da2565b5490565b6000611b428383614ffc565b6000611b428383614b7f565b60006143fa848473ffffffffffffffffffffffffffffffffffffffff85166150e0565b81546000908210614c565760405162461bcd60e51b81526004018080602001828103825260228152602001806154bc6022913960400191505060405180910390fd5b826000018281548110614c6557fe5b9060005260206000200154905092915050565b6000611b428373ffffffffffffffffffffffffffffffffffffffff8416614ffc565b815460009081908310614cde5760405162461bcd60e51b81526004018080602001828103825260228152602001806156926022913960400191505060405180910390fd5b6000846000018481548110614cef57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281614d735760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561170b5781810151838201526020016116f3565b50846000016001820381548110614d8657fe5b9060005260206000209060020201600101549150509392505050565b60009081526001919091016020526040902054151590565b6000614ddb8473ffffffffffffffffffffffffffffffffffffffff16615177565b614de7575060016143fa565b6060614f917f150b7a0200000000000000000000000000000000000000000000000000000000614e1561427b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614ec2578181015183820152602001614eaa565b50505050905090810190601f168015614eef5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161550d6032913973ffffffffffffffffffffffffffffffffffffffff8816919063ffffffff6151b016565b90506000818060200190516020811015614faa57600080fd5b50517fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001492505050949350505050565b600081815260018301602052604081205480156150d65783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff808301919081019060009087908390811061504d57fe5b906000526020600020015490508087600001848154811061506a57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061509a57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611b45565b6000915050611b45565b600082815260018401602052604081205480615145575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612724565b8285600001600183038154811061515857fe5b9060005260206000209060020201600101819055506000915050612724565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906143fa575050151592915050565b60606143fa848460008560606151c585615177565b615216576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061528057805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101615243565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146152e2576040519150601f19603f3d011682016040523d82523d6000602084013e6152e7565b606091505b509150915081156152fb5791506143fa9050565b80511561530b5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561170b5781810151838201526020016116f3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106153b1578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008235161785556153de565b828001600101855582156153de579182015b828111156153de5782358255916020019190600101906153c3565b506153ea9291506154a1565b5090565b60408051608081018252600080825260208201819052918101829052606081019190915290565b60405180604001604052806002906020820280368337509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061547457805160ff19168380011785556153de565b828001600101855582156153de579182015b828111156153de578251825591602001919060010190615486565b6118a391905b808211156153ea57600081556001016154a756fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734e6f7420617070726f766564206f72206e6f74206f776e6572206f6620746f6b656e4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212200445099f4a3022e739373efac71c9df6c2633bcf00e5c983951b38dc7a07891f64736f6c634300060b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000e2514e229a657f37da9384679452c34466fa95390000000000000000000000000000000000000000000000000000000000000003000000000000000000000000cf90ad693ace601b5b5582c4f95ec7266cdb3eec0000000000000000000000009388517b36b817dccbb663a3097f4c5ffdbecc14000000000000000000000000f7a3bbe1711eb43967cdbf58fa61342a25e3c845
-----Decoded View---------------
Arg [0] : admins (address[]): 0xCF90AD693aCe601b5B5582C4F95eC7266CDB3eEC,0x9388517B36B817DCCbb663a3097f4c5fFDBeCC14,0xF7A3bBe1711Eb43967cdbf58FA61342a25E3c845
Arg [1] : _nftImageDataStorageAddr (address): 0xe2514e229a657F37DA9384679452C34466FA9539
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000e2514e229a657f37da9384679452c34466fa9539
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 000000000000000000000000cf90ad693ace601b5b5582c4f95ec7266cdb3eec
Arg [4] : 0000000000000000000000009388517b36b817dccbb663a3097f4c5ffdbecc14
Arg [5] : 000000000000000000000000f7a3bbe1711eb43967cdbf58fa61342a25e3c845
Deployed Bytecode Sourcemap
75746:10851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10179:142;;;;;;;;;;;;;;;;-1:-1:-1;10179:142:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;83570:171;;;;;;;;;;;;;;;;-1:-1:-1;83570:171:0;;:::i;44469:92::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47156:213;;;;;;;;;;;;;;;;-1:-1:-1;47156:213:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;46700:390;;;;;;;;;;;;;;;;-1:-1:-1;46700:390:0;;;;;;;;;:::i;:::-;;46194:203;;;:::i;:::-;;;;;;;;;;;;;;;;48030:305;;;;;;;;;;;;;;;;-1:-1:-1;48030:305:0;;;;;;;;;;;;;;;;;;:::i;63693:114::-;;;;;;;;;;;;;;;;-1:-1:-1;63693:114:0;;:::i;64069:227::-;;;;;;;;;;;;;;;;-1:-1:-1;64069:227:0;;;;;;;;;:::i;45964:154::-;;;;;;;;;;;;;;;;-1:-1:-1;45964:154:0;;;;;;;;;:::i;82468:181::-;;;;;;;;;;;;;;;;-1:-1:-1;82468:181:0;;:::i;65278:209::-;;;;;;;;;;;;;;;;-1:-1:-1;65278:209:0;;;;;;;;;:::i;48406:151::-;;;;;;;;;;;;;;;;-1:-1:-1;48406:151:0;;;;;;;;;;;;;;;;;;:::i;84870:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;84870:165:0;;-1:-1:-1;84870:165:0;-1:-1:-1;84870:165:0;:::i;46474:164::-;;;;;;;;;;;;;;;;-1:-1:-1;46474:164:0;;:::i;78083:1050::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78083:1050:0;;;;;;;;-1:-1:-1;78083:1050:0;;-1:-1:-1;;78083:1050:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78083:1050:0;;;;;;;;-1:-1:-1;78083:1050:0;;-1:-1:-1;;78083:1050:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78083:1050:0;;;;;;;;-1:-1:-1;78083:1050:0;;-1:-1:-1;;78083:1050:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78083:1050:0;;;;;;;;-1:-1:-1;78083:1050:0;;-1:-1:-1;;78083:1050:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78083:1050:0;;;;;;;;-1:-1:-1;78083:1050:0;;-1:-1:-1;;78083:1050:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;78083:1050:0;;;;;;;;;;;;;;;;;-1:-1:-1;78083:1050:0;-1:-1:-1;78083:1050:0;;;;;;;;;;;;;;;;;-1:-1:-1;78083:1050:0;;-1:-1:-1;78083:1050:0;;-1:-1:-1;;;;78083:1050:0:i;84465:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;84465:169:0;;-1:-1:-1;84465:169:0;-1:-1:-1;84465:169:0;:::i;82270:190::-;;;;;;;;;;;;;;;;-1:-1:-1;82270:190:0;;:::i;82657:372::-;;;;;;;;;;;;;;;;-1:-1:-1;82657:372:0;;:::i;44233:169::-;;;;;;;;;;;;;;;;-1:-1:-1;44233:169:0;;:::i;81764:145::-;;;;;;;;;;;;;;;;-1:-1:-1;81764:145:0;;:::i;84078:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;84078:167:0;;-1:-1:-1;84078:167:0;-1:-1:-1;84078:167:0;:::i;81917:157::-;;;;;;;;;;;;;;;;-1:-1:-1;81917:157:0;;:::i;45791:89::-;;;:::i;43956:215::-;;;;;;;;;;;;;;;;-1:-1:-1;43956:215:0;;;;:::i;58813:148::-;;;:::i;79141:1134::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79141:1134:0;;;;;;;;-1:-1:-1;79141:1134:0;;-1:-1:-1;;79141:1134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79141:1134:0;;;;;;;;-1:-1:-1;79141:1134:0;;-1:-1:-1;;79141:1134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79141:1134:0;;;;;;;;-1:-1:-1;79141:1134:0;;-1:-1:-1;;79141:1134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79141:1134:0;;;;;;;;-1:-1:-1;79141:1134:0;;-1:-1:-1;;79141:1134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79141:1134:0;;;;;;;;-1:-1:-1;79141:1134:0;;-1:-1:-1;;79141:1134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79141:1134:0;;-1:-1:-1;79141:1134:0;;-1:-1:-1;;;;;79141:1134:0:i;75806:60::-;;;:::i;83749:129::-;;;;;;;;;;;;;;;;-1:-1:-1;83749:129:0;;:::i;58171:79::-;;;:::i;63366:138::-;;;;;;;;;;;;;;;;-1:-1:-1;63366:138:0;;;;;;;:::i;62327:139::-;;;;;;;;;;;;;;;;-1:-1:-1;62327:139:0;;;;;;;;;:::i;44630:96::-;;;:::i;61072:49::-;;;:::i;47441:295::-;;;;;;;;;;;;;;;;-1:-1:-1;47441:295:0;;;;;;;;;;;:::i;83037:525::-;;;;;;;;;;;;;;;;-1:-1:-1;83037:525:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75907:60;;;:::i;48628:285::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48628:285:0;;-1:-1:-1;48628:285:0;;-1:-1:-1;;;;;48628:285:0:i;44797:755::-;;;;;;;;;;;;;;;;-1:-1:-1;44797:755:0;;:::i;62640:127::-;;;;;;;;;;;;;;;;-1:-1:-1;62640:127:0;;:::i;64541:230::-;;;;;;;;;;;;;;;;-1:-1:-1;64541:230:0;;;;;;;;;:::i;85276:220::-;;;;;;;;;;;;;;;;-1:-1:-1;85276:220:0;;:::i;80283:916::-;;;;;;;;;;;;;;;;-1:-1:-1;80283:916:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81207:549;;;;;;;;;;;;;;;;-1:-1:-1;81207:549:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47807:156;;;;;;;;;;;;;;;;-1:-1:-1;47807:156:0;;;;;;;;;;;:::i;85724:222::-;;;;;;;;;;;;;;;;-1:-1:-1;85724:222:0;;:::i;59116:244::-;;;;;;;;;;;;;;;;-1:-1:-1;59116:244:0;;;;:::i;82082:180::-;;;;;;;;;;;;;;;;-1:-1:-1;82082:180:0;;:::i;10179:142::-;10280:33;;;10256:4;10280:33;;;;;;;;;;;;;10179:142;;;;:::o;83570:171::-;83651:4;83638:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83675:19:0::1;::::0;83711:8:::1;:12:::0;;83675:19:::1;::::0;;::::1;::::0;:35:::1;::::0;83711:8;83720:2;;83711:12;::::1;;;;;;;;;;;;;;;:21;;;83675:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;83675:58:0;;83570:171;-1:-1:-1;;;83570:171:0:o;44469:92::-;44548:5;44541:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44515:13;;44541:12;;44548:5;;44541:12;;44548:5;44541:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44469:92;;:::o;47156:213::-;47224:7;47252:16;47260:7;47252;:16::i;:::-;47244:73;;;;-1:-1:-1;;;47244:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47337:24:0;;;;:15;:24;;;;;;;;;47156:213::o;46700:390::-;46781:13;46797:16;46805:7;46797;:16::i;:::-;46781:32;;46838:5;46832:11;;:2;:11;;;;46824:57;;;;-1:-1:-1;;;46824:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46918:5;46902:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46927:37;46944:5;46951:12;:10;:12::i;:::-;46927:16;:37::i;:::-;46894:154;;;;-1:-1:-1;;;46894:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47061:21;47070:2;47074:7;47061:8;:21::i;:::-;46700:390;;;:::o;46194:203::-;46247:7;46368:21;:12;:19;:21::i;:::-;46361:28;;46194:203;:::o;48030:305::-;48191:41;48210:12;:10;:12::i;:::-;48224:7;48191:18;:41::i;:::-;48183:103;;;;-1:-1:-1;;;48183:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48299:28;48309:4;48315:2;48319:7;48299:9;:28::i;63693:114::-;63750:7;63777:12;;;:6;:12;;;;;:22;;;;63693:114::o;64069:227::-;64161:12;;;;:6;:12;;;;;:22;;;64153:45;;64185:12;:10;:12::i;:::-;64153:7;:45::i;:::-;64145:105;;;;-1:-1:-1;;;64145:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64263:25;64274:4;64280:7;64263:10;:25::i;:::-;64069:227;;:::o;45964:154::-;46080:20;;;46053:7;46080:20;;;:13;:20;;;;;:30;;46104:5;46080:30;:23;:30;:::i;:::-;46073:37;;45964:154;;;;;:::o;82468:181::-;82549:4;82536:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82614:8:::1;82623:2;82614:12;;;;;;;;;;;;;;;;;;:21;;;76306:2;82574:61;82640:1;82573:68;;82566:75;;82468:181:::0;;;;:::o;65278:209::-;65376:12;:10;:12::i;:::-;65365:23;;:7;:23;;;65357:83;;;;-1:-1:-1;;;65357:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65453:26;65465:4;65471:7;65453:11;:26::i;48406:151::-;48510:39;48527:4;48533:2;48537:7;48510:39;;;;;;;;;;;;:16;:39::i;84870:165::-;75843:23;;;;;;;;;;;;;;;;77502:31;;77522:10;77502:7;:31::i;:::-;77494:68;;;;;-1:-1:-1;;;77494:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;85001:26:::1;:11;85015:12:::0;;85001:26:::1;:::i;46474:164::-:0;46541:7;;46583:22;:12;46599:5;46583:22;:15;:22;:::i;:::-;-1:-1:-1;46561:44:0;46474:164;-1:-1:-1;;;46474:164:0:o;78083:1050::-;78464:7;58393:12;:10;:12::i;:::-;58383:6;;:22;:6;;;:22;;;58375:67;;;;;-1:-1:-1;;;58375:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78518:16:::1;78596:10;78625:16;78660:11;78690:17;78726:22;78767:28;78561:249;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78537:284;;;;;;78518:303;;78872:23;;:::i;:::-;-1:-1:-1::0;78898:51:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;78924:11;;78898:51;;;;;;78937:11;::::1;::::0;78898:51;;;;;;79004:8:::1;:23:::0;;78946:1:::1;79004:23:::0;::::1;::::0;;-1:-1:-1;79004:23:0;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;::::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;79052:15;;-1:-1:-1;79052:19:0;79084:18:::1;78898:51:::0;79052:19;79084:5:::1;:18::i;:::-;79122:3:::0;78083:1050;-1:-1:-1;;;;;;;;;;;78083:1050:0:o;84465:169::-;75843:23;;;;;;;;;;;;;;;;77502:31;;77522:10;77502:7;:31::i;:::-;77494:68;;;;;-1:-1:-1;;;77494:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;84598:28:::1;:12;84613:13:::0;;84598:28:::1;:::i;82270:190::-:0;82347:7;82334:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76357:3:::1;82422:2;82397:8;82406:2;82397:12;;;;;;;;;;;;;;;;;;:21;;;:27;;76089:78;82375:50;82374:78;;82367:85;;82270:190:::0;;;;:::o;82657:372::-;82759:7;82725:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82746:2:::1;77320:25;77336:8;77320:15;:25::i;:::-;77312:59;;;::::0;;-1:-1:-1;;;77312:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;82787:19:::2;82803:2;82787:15;:19::i;:::-;82779:52;;;::::0;;-1:-1:-1;;;82779:52:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;82918:19;::::0;82963:8:::2;:12:::0;;76416:3:::2;::::0;82918:19:::2;;::::0;:44:::2;::::0;82972:2;;82963:12;::::2;;;;;;;;;;;;;;;:21;;;82918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;::::0;;::::2;::::0;::::2;::::0;::::2;;::::0;::::2;::::0;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;-1:-1:-1;82918:67:0;;::::2;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;::::0;::::2;;82986:1;82918:70;;;;;;;;;;;;;;:103;;82898:123;;77099:1:::1;82657:372:::0;;;;:::o;44233:169::-;44297:7;44324:70;44341:7;44324:70;;;;;;;;;;;;;;;;;:12;;:70;;:16;:70;:::i;81764:145::-;81853:7;81840:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81880:8:::1;81889:2;81880:12;;;;;;;;;;;;;;;;;;:21;;;81873:28;;81764:145:::0;;;;:::o;84078:167::-;75843:23;;;;;;;;;;;;;;;;77502:31;;77522:10;77502:7;:31::i;:::-;77494:68;;;;;-1:-1:-1;;;77494:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;84211:26:::1;84223:13;;84211:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;84211:11:0::1;::::0;-1:-1:-1;;;84211:26:0:i:1;81917:157::-:0;81990:13;81977:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82023:43:::1;82047:8;82056:2;82047:12;;;;;;;;;;;;;;;;;;:17;;;82039:26;;82023:15;:43::i;:::-;82016:50:::0;81917:157;-1:-1:-1;;;81917:157:0:o;45791:89::-;45864:8;45857:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45831:13;;45857:15;;45864:8;;45857:15;;45864:8;45857:15;;;;;;;;;;;;;;;;;;;;;;;;43956:215;44020:7;44048:19;;;44040:74;;;;-1:-1:-1;;;44040:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44134:20;;;;;;;:13;:20;;;;;:29;;:27;:29::i;58813:148::-;58393:12;:10;:12::i;:::-;58383:6;;:22;:6;;;:22;;;58375:67;;;;;-1:-1:-1;;;58375:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58904:6:::1;::::0;58883:40:::1;::::0;58920:1:::1;::::0;58883:40:::1;58904:6;::::0;58883:40:::1;::::0;58920:1;;58883:40:::1;58934:6;:19:::0;;;::::1;::::0;;58813:148::o;79141:1134::-;79485:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79508:34:::1;79527:10;79539:2;79508:18;:34::i;:::-;79500:81;;;;-1:-1:-1::0;;;79500:81:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79592:16;79670:10;79699:16;79734:11;79764:17;79800:22;79841:28;79635:249;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79611:284;;;;;;79592:303;;79939:8;79914;79923:2;79914:12;;;;;;;;;;;;;;;;;;:21;;;:33;79906:60;;;::::0;;-1:-1:-1;;;79906:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;79979:11;79993:19;;;;;;;;;;;:28;;;80036:10;80061:16;80092:11;80118:17;80150:22;80187:28;79993:233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;79993:233:0;80242:25:::1;::::0;;;::::1;;::::0;;;;79993:233;;-1:-1:-1;80256:2:0;;80242:25:::1;::::0;;;;79993:233:::1;80242:25:::0;;::::1;77099:1;;79141:1134:::0;;;;;;;;:::o;75806:60::-;75843:23;;;;;;;;;;;;;;;;75806:60;:::o;83749:129::-;83824:7;83811:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83851:8:::1;83860:2;83851:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:19;;::::0;::::1;;::::0;83749:129;-1:-1:-1;;;83749:129:0:o;58171:79::-;58236:6;;;;58171:79;:::o;63366:138::-;63439:7;63466:12;;;:6;:12;;;;;:30;;63490:5;63466:30;:23;:30;:::i;62327:139::-;62396:4;62420:12;;;:6;:12;;;;;:38;;62450:7;62420:38;:29;:38;:::i;44630:96::-;44711:7;44704:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44678:13;;44704:14;;44711:7;;44704:14;;44711:7;44704:14;;;;;;;;;;;;;;;;;;;;;;;;61072:49;61117:4;61072:49;:::o;47441:295::-;47556:12;:10;:12::i;:::-;47544:24;;:8;:24;;;;47536:62;;;;;-1:-1:-1;;;47536:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47656:8;47611:18;:32;47630:12;:10;:12::i;:::-;47611:32;;;;;;;;;;;;;;;;;;-1:-1:-1;47611:32:0;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;;47695:12;:10;:12::i;:::-;47680:48;;;;;;;;;;;;;;;;;;;;;;;;;47441:295;;:::o;83037:525::-;83183:24;83222:30;83267:25;83307:31;83353:36;83404:42;83147:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83481:19:0::1;::::0;83532:8:::1;:12:::0;;83481:19:::1;::::0;;::::1;::::0;:50:::1;::::0;83532:8;83541:2;;83532:12;::::1;;;;;;;;;;;;;;;:21;;;83481:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;83481:73:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83481:73:0;;-1:-1:-1;83481:73:0;-1:-1:-1;83481:73:0;;-1:-1:-1;83481:73:0;-1:-1:-1;83037:525:0;-1:-1:-1;;;83037:525:0:o;75907:60::-;;;;;;;;;;;;;;;;;;;:::o;48628:285::-;48760:41;48779:12;:10;:12::i;:::-;48793:7;48760:18;:41::i;:::-;48752:103;;;;-1:-1:-1;;;48752:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48866:39;48880:4;48886:2;48890:7;48899:5;48866:13;:39::i;:::-;48628:285;;;;:::o;44797:755::-;44862:13;44896:16;44904:7;44896;:16::i;:::-;44888:76;;;;-1:-1:-1;;;44888:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45003:19;;;;:10;:19;;;;;;;;;44977:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;45003:19;44977:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45104:8:0;45098:22;44977:45;;-1:-1:-1;;;;45098:22:0;;;;;;;;;;;;;45094:76;;45149:9;-1:-1:-1;45142:16:0;;45094:76;45274:23;;:27;45270:112;;45349:8;45359:9;45332:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45332:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45318:52;;;;;45270:112;45514:8;45524:18;:7;:16;:18::i;:::-;45497:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45497:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45483:61;;;44797:755;;;:::o;62640:127::-;62703:7;62730:12;;;:6;:12;;;;;:29;;:27;:29::i;64541:230::-;64634:12;;;;:6;:12;;;;;:22;;;64626:45;;64658:12;:10;:12::i;64626:45::-;64618:106;;;;-1:-1:-1;;;64618:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85276:220;85332:17;85381:13;:11;:13::i;:::-;85370:8;:24;85396:16;;;;;;;;;;;;;;;;;85362:51;;;;;-1:-1:-1;;;85362:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85454:11;85467:19;:8;:17;:19::i;:::-;85437:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;85437:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85424:64;;85276:220;;;:::o;80283:916::-;80445:14;80474:27;80516:33;80564:28;80607:34;80656:39;80710:45;80770:26;;:::i;:::-;80379:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80409:2:::1;77320:25;77336:8;77320:15;:25::i;:::-;77312:59;;;::::0;;-1:-1:-1;;;77312:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;80824:23:::2;;:::i;:::-;80850:8;80859:2;80850:12;;;;;;;;;::::0;;;::::2;::::0;;;;80824:38:::2;::::0;;::::2;::::0;::::2;::::0;;80850:12:::2;::::0;;::::2;::::0;;::::2;80824:38:::0;;;;::::2;::::0;::::2;::::0;::::2;;::::0;;::::2;::::0;;;;::::2;::::0;::::2;::::0;;;;;::::2;::::0;;::::2;::::0;;;;;;-1:-1:-1;81081:19:0::2;81097:2:::0;81081:15:::2;:19::i;:::-;80873:227;;;;;;;;;;;;;;;;;;;;;;;;81120:8;:15;;;81111:24;;81146:45;;;;;;;;81158:8;:13;;;81146:45;;;;81173:8;:17;;;81146:45;;::::0;::::2;;77382:1;77099::::1;80283:916:::0;;;;;;;;;;:::o;81207:549::-;81368:27;81410:33;81458:28;81501:34;81550:39;81604:45;81302:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81332:2:::1;77320:25;77336:8;77320:15;:25::i;:::-;77312:59;;;::::0;;-1:-1:-1;;;77312:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;81684:19:::2;::::0;81726:8:::2;:12:::0;;81684:19:::2;::::0;;::::2;::::0;:41:::2;::::0;81726:8;81735:2;;81726:12;::::2;;;;;;;;;;;;;;;:21;;;81684:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;::::0;;::::2;::::0;::::2;::::0;::::2;;::::0;::::2;::::0;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;-1:-1:-1;81684:64:0;;::::2;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;-1:-1:-1;81684:64:0;;::::2;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;-1:-1:-1;81684:64:0;;::::2;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;-1:-1:-1;81684:64:0;;::::2;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;-1:-1:-1;81684:64:0;;::::2;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;::::2;::::0;::::2;::::0;::::2;::::0;;::::2;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;;-1:-1:-1;81684:64:0;;::::2;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;::::0;::::2;;81677:71;;;;;;;;;;;;77099:1:::1;81207:549:::0;;;;;;;;:::o;47807:156::-;47920:25;;;;47896:4;47920:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47807:156::o;85724:222::-;85781:17;85830:13;:11;:13::i;:::-;85819:8;:24;85845:16;;;;;;;;;;;;;;;;;85811:51;;;;;-1:-1:-1;;;85811:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85903:12;85917:19;:8;:17;:19::i;59116:244::-;58393:12;:10;:12::i;:::-;58383:6;;:22;:6;;;:22;;;58375:67;;;;;-1:-1:-1;;;58375:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59205:22:::1;::::0;::::1;59197:73;;;;-1:-1:-1::0;;;59197:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59307:6;::::0;59286:38:::1;::::0;::::1;::::0;;::::1;::::0;59307:6:::1;::::0;59286:38:::1;::::0;59307:6:::1;::::0;59286:38:::1;59335:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;59116:244::o;82082:180::-;82157:7;82144:2;77056:13;:11;:13::i;:::-;77045:8;:24;77071:16;;;;;;;;;;;;;;;;;77037:51;;;;;-1:-1:-1;;;77037:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76357:3:::1;82206:8;82215:2;82206:12;;;;;;;;;;;;;;;;;;:21;;;76089:78;82185:42;82184:70;;82177:77;;82082:180:::0;;;;:::o;27604:143::-;27674:4;27698:41;27703:3;27723:14;;;27698:4;:41::i;50379:119::-;50436:4;50460:30;:12;50482:7;50460:30;:21;:30;:::i;666:106::-;754:10;666:106;:::o;56206:158::-;56272:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;56326:16;56272:24;56326:7;:16::i;:::-;56317:39;;;;;;;;;;;;56206:158;;:::o;37879:123::-;37948:7;37975:19;37983:3;37975:7;:19::i;50665:333::-;50750:4;50775:16;50783:7;50775;:16::i;:::-;50767:73;;;;-1:-1:-1;;;50767:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50851:13;50867:16;50875:7;50867;:16::i;:::-;50851:32;;50913:5;50902:16;;:7;:16;;;:51;;;;50946:7;50922:31;;:20;50934:7;50922:11;:20::i;:::-;:31;;;50902:51;:87;;;;50957:32;50974:5;50981:7;50957:16;:32::i;:::-;50894:96;50665:333;-1:-1:-1;;;;50665:333:0:o;53754:574::-;53872:4;53852:24;;:16;53860:7;53852;:16::i;:::-;:24;;;53844:78;;;;-1:-1:-1;;;53844:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53941:16;;;53933:65;;;;-1:-1:-1;;;53933:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54011:39;54032:4;54038:2;54042:7;54011:20;:39::i;:::-;54115:29;54132:1;54136:7;54115:8;:29::i;:::-;54157:19;;;;;;;:13;:19;;;;;:35;;54184:7;54157:35;:26;:35;:::i;:::-;-1:-1:-1;54203:17:0;;;;;;;:13;:17;;;;;:30;;54225:7;54203:30;:21;:30;:::i;:::-;-1:-1:-1;54246:29:0;:12;54263:7;54272:2;54246:29;:16;:29;:::i;:::-;;54312:7;54308:2;54293:27;;54302:4;54293:27;;;;;;;;;;;;53754:574;;;:::o;66521:188::-;66595:12;;;;:6;:12;;;;;:33;;66620:7;66595:33;:24;:33;:::i;:::-;66591:111;;;66677:12;:10;:12::i;:::-;66650:40;;66668:7;66650:40;;66662:4;66650:40;;;;;;;;;;66521:188;;:::o;30482:137::-;30553:7;30588:22;30592:3;30604:5;30588:3;:22::i;66717:192::-;66792:12;;;;:6;:12;;;;;:36;;66820:7;66792:36;:27;:36;:::i;:::-;66788:114;;;66877:12;:10;:12::i;:::-;66850:40;;66868:7;66850:40;;66862:4;66850:40;;;;;;;;;;66717:192;;:::o;38341:227::-;38421:7;;;;38481:22;38485:3;38497:5;38481:3;:22::i;:::-;38450:53;;;;-1:-1:-1;38341:227:0;-1:-1:-1;;;;;38341:227:0:o;52264:404::-;52344:16;;;52336:61;;;;;-1:-1:-1;;;52336:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52417:16;52425:7;52417;:16::i;:::-;52416:17;52408:58;;;;;-1:-1:-1;;;52408:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;52479:45;52508:1;52512:2;52516:7;52479:20;:45::i;:::-;52537:17;;;;;;;:13;:17;;;;;:30;;52559:7;52537:30;:21;:30;:::i;:::-;-1:-1:-1;52580:29:0;:12;52597:7;52606:2;52580:29;:16;:29;:::i;:::-;-1:-1:-1;52627:33:0;;52652:7;;52627:33;;;;52644:1;;52627:33;;52644:1;;52627:33;52264:404;;:::o;39003:204::-;39110:7;39153:44;39158:3;39178;39184:12;39153:4;:44::i;54929:100::-;55002:19;;;;:8;;:19;;;;;:::i;85954:640::-;86066:13;;;86076:2;86066:13;;;;;;;;;86013;;;;86066;;;;;;;;;;;-1:-1:-1;;86039:40:0;-1:-1:-1;86090:17:0;;86142:229;86158:2;86154:1;:6;86142:229;;;86228:1;:5;;86224:1;:10;86211:23;;86255:9;;;;86251:109;;86310:4;86285:11;86297:9;86285:22;;;;;;;;;;;:29;;;;;;;;;;-1:-1:-1;86333:11:0;;;;;86251:109;-1:-1:-1;86162:3:0;;86142:229;;;86381:31;86425:9;86415:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;86415:20:0;;86381:54;;86455:1;86451:5;;86446:97;86462:9;86458:1;:13;86446:97;;;86517:11;86529:1;86517:14;;;;;;;;;;;;;;;;86493:18;86512:1;86493:21;;;;;;;;;;;:38;;;;;;;;;;-1:-1:-1;86473:3:0;;;;;86446:97;;;86567:18;85954:640;-1:-1:-1;;;;;85954:640:0:o;28158:158::-;28238:4;28262:46;28272:3;28292:14;;;28262:9;:46::i;49794:272::-;49908:28;49918:4;49924:2;49928:7;49908:9;:28::i;:::-;49955:48;49978:4;49984:2;49988:7;49997:5;49955:22;:48::i;:::-;49947:111;;;;-1:-1:-1;;;49947:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39450:744;39506:13;39727:10;39723:53;;-1:-1:-1;39754:10:0;;;;;;;;;;;;;;;;;;;39723:53;39801:5;39786:12;39842:78;39849:9;;39842:78;;39875:8;;39906:2;39898:10;;;;39842:78;;;39930:19;39962:6;39952:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39952:17:0;-1:-1:-1;40024:5:0;;-1:-1:-1;39930:39:0;-1:-1:-1;39996:10:0;;;40040:115;40047:9;;40040:115;;40114:2;40107:4;:9;40102:2;:14;40091:27;;40073:6;40080:7;;;;;;;40073:15;;;;;;;;;;;:45;;;;;;;;;;-1:-1:-1;40141:2:0;40133:10;;;;40040:115;;;-1:-1:-1;40179:6:0;39450:744;-1:-1:-1;;;;39450:744:0:o;24258:414::-;24321:4;24343:21;24353:3;24358:5;24343:9;:21::i;:::-;24338:327;;-1:-1:-1;24381:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;24564:18;;24542:19;;;:12;;;:19;;;;;;:40;;;;24597:11;;24338:327;-1:-1:-1;24648:5:0;24641:12;;37640:151;37724:4;37748:35;37758:3;37778;37748:9;:35::i;35262:110::-;35345:19;;35262:110::o;29569:137::-;29639:4;29663:35;29671:3;29691:5;29663:7;:35::i;29262:131::-;29329:4;29353:32;29358:3;29378:5;29353:4;:32::i;37072:176::-;37161:4;37185:55;37190:3;37210;37224:14;;;37185:4;:55::i;27146:204::-;27241:18;;27213:7;;27241:26;-1:-1:-1;27233:73:0;;;;-1:-1:-1;;;27233:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27324:3;:11;;27336:5;27324:18;;;;;;;;;;;;;;;;27317:25;;27146:204;;;;:::o;27923:149::-;27996:4;28020:44;28028:3;28048:14;;;28020:7;:44::i;35727:279::-;35831:19;;35794:7;;;;35831:27;-1:-1:-1;35823:74:0;;;;-1:-1:-1;;;35823:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35910:22;35935:3;:12;;35948:5;35935:19;;;;;;;;;;;;;;;;;;35910:44;;35973:5;:10;;;35985:5;:12;;;35965:33;;;;;35727:279;;;;;:::o;36429:319::-;36523:7;36562:17;;;:12;;;:17;;;;;;36613:12;36598:13;36590:36;;;;-1:-1:-1;;;36590:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36680:3;:12;;36704:1;36693:8;:12;36680:26;;;;;;;;;;;;;;;;;;:33;;;36673:40;;;36429:319;;;;;:::o;26478:129::-;26551:4;26575:19;;;:12;;;;;:19;;;;;;:24;;;26478:129::o;55594:604::-;55715:4;55742:15;:2;:13;;;:15::i;:::-;55737:60;;-1:-1:-1;55781:4:0;55774:11;;55737:60;55807:23;55833:252;55886:45;55946:12;:10;:12::i;:::-;55973:4;55992:7;56014:5;55849:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55833:252;;;;;;;;;;;;;;;;;:15;;;;:252;;:15;:252;:::i;:::-;55807:278;;56096:13;56123:10;56112:32;;;;;;;;;;;;;;;-1:-1:-1;56112:32:0;56163:26;;56173:16;56163:26;;-1:-1:-1;;;55594:604:0;;;;;;:::o;24848:1544::-;24914:4;25053:19;;;:12;;;:19;;;;;;25089:15;;25085:1300;;25524:18;;25475:14;;;;;25524:22;;;;25451:21;;25524:3;;:22;;25811;;;;;;;;;;;;;;25791:42;;25957:9;25928:3;:11;;25940:13;25928:26;;;;;;;;;;;;;;;;;;;:38;;;;26034:23;;;26076:1;26034:12;;;:23;;;;;;26060:17;;;26034:43;;26186:17;;26034:3;;26186:17;;;;;;;;;;;;;;;;;;;;;;26281:3;:12;;:19;26294:5;26281:19;;;;;;;;;;;26274:26;;;26324:4;26317:11;;;;;;;;25085:1300;26368:5;26361:12;;;;;32542:692;32618:4;32753:17;;;:12;;;:17;;;;;;32787:13;32783:444;;-1:-1:-1;;32872:38:0;;;;;;;;;;;;;;;;;;32854:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;33069:19;;33049:17;;;:12;;;:17;;;;;;;:39;33103:11;;32783:444;33183:5;33147:3;:12;;33171:1;33160:8;:12;33147:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;33210:5;33203:12;;;;;17087:619;17147:4;17615:20;;17458:66;17655:23;;;;;;:42;;-1:-1:-1;;17682:15:0;;;17647:51;-1:-1:-1;;17087:619:0:o;20202:196::-;20305:12;20337:53;20360:6;20368:4;20374:1;20377:12;21709;21742:18;21753:6;21742:10;:18::i;:::-;21734:60;;;;;-1:-1:-1;;;21734:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21868:12;21882:23;21909:6;:11;;21929:8;21940:4;21909:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21867:78;;;;21960:7;21956:595;;;21991:10;-1:-1:-1;21984:17:0;;-1:-1:-1;21984:17:0;21956:595;22105:17;;:21;22101:439;;22368:10;22362:17;22429:15;22416:10;22412:2;22408:19;22401:44;22316:148;22504:20;;-1:-1:-1;;;22504:20:0;;;;;;;;;;;;;;;;;22511:12;;22504:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://0445099f4a3022e739373efac71c9df6c2633bcf00e5c983951b38dc7a07891f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.