Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,061 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Add New Token | 14165799 | 1037 days ago | IN | 0 ETH | 0.0035683 | ||||
Delete Token Onl... | 12766231 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766221 | 1255 days ago | IN | 0 ETH | 0.00054319 | ||||
Delete Token Onl... | 12766220 | 1255 days ago | IN | 0 ETH | 0.00054319 | ||||
Delete Token Onl... | 12766220 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766220 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00059709 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766216 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766212 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766211 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766211 | 1255 days ago | IN | 0 ETH | 0.00052779 | ||||
Delete Token Onl... | 12766211 | 1255 days ago | IN | 0 ETH | 0.00058169 | ||||
Delete Token Onl... | 12766211 | 1255 days ago | IN | 0 ETH | 0.00058169 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
BcaexOwnershipV2
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-10 */ // File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT 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/access/Ownable.sol // SPDX-License-Identifier: MIT 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/utils/EnumerableSet.sol // SPDX-License-Identifier: MIT 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/Address.sol // SPDX-License-Identifier: MIT 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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); 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/access/AccessControl.sol // SPDX-License-Identifier: MIT 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: @openzeppelin/contracts/introspection/IERC165.sol // SPDX-License-Identifier: MIT 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 // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol // SPDX-License-Identifier: MIT 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 // SPDX-License-Identifier: MIT 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 // SPDX-License-Identifier: MIT 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 // SPDX-License-Identifier: MIT 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 // SPDX-License-Identifier: MIT 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/EnumerableMap.sol // SPDX-License-Identifier: MIT 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 // SPDX-License-Identifier: MIT 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 // SPDX-License-Identifier: MIT 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 ^ 0xe985e9c5 ^ 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 mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view 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/utils/Counters.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File: contracts/BcaexOwnershipV2.sol // contracts/BcaexOwnershipV2.sol // SPDX-License-Identifier: MIT pragma solidity >=0.4.21 <0.7.0; contract BcaexOwnershipV2 is Ownable, AccessControl, ERC721 { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; // Mapping from token ID to the creator's address. mapping(uint256 => address) private tokenCreators; // Event indicating metadata was updated. event TokenURIUpdated(uint256 indexed _tokenId, string _uri); constructor() public ERC721("BCAEX", "BCA") { addRootRole(); } // ---------------------------- // Create a new role identifier for the minter role bytes32 public constant ROOT_ROLE = keccak256("ROOT_ROLE"); // Create a new role identifier for the minter role bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); function addRootRole() public onlyOwner { _setRoleAdmin(MINTER_ROLE, ROOT_ROLE); _setupRole(ROOT_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); } function addMinter(address _minter) public onlyOwner { _setupRole(MINTER_ROLE, _minter); } function revokeMinter(address _minter) public onlyOwner { revokeRole(MINTER_ROLE, _minter); } // ---------------------------- /** * @dev Internal function creating a new token. * @param _uri string metadata uri associated with the token * @param _owner address of the _owner of the token. */ function _createToken(string memory _uri, address _owner) internal returns (uint256) { _tokenIds.increment(); uint256 newId = _tokenIds.current(); _mint(_owner, newId); _setTokenURI(newId, _uri); tokenCreators[newId] = _owner; return newId; } /** * @dev Adds a new unique token to the supply. * @param _uri string metadata uri associated with the token. */ function addNewToken(string memory _uri) public returns (uint256) { require(hasRole(MINTER_ROLE, msg.sender), "must be whitelisted to create tokens"); _createToken(_uri, msg.sender); } /** * @dev Adds a new unique token to the supply by onlyOwner to creator. * @param _uri string metadata uri associated with the token. * @param _creator address of the owner of the token. */ function addNewTokenToCreator(string memory _uri, address _creator) public onlyOwner returns (uint256) { return _createToken(_uri, _creator); } /** * @dev Adds a new unique token to the supply by onlyOwner to creator. * @param _uri string metadata uri associated with the token. * @param _creator address of the owner of the token. * @param _owner address of the owner of the token. */ function addNewTokenToOwner(string memory _uri, address _creator, address _owner) public onlyOwner returns (uint256) { _tokenIds.increment(); uint256 newId = _tokenIds.current(); _mint(_owner, newId); _setTokenURI(newId, _uri); tokenCreators[newId] = _creator; return newId; } /** * @dev Gets the creator of the token. * @param _tokenId uint256 ID of the token. * @return address of the creator. */ function tokenCreator(uint256 _tokenId) public view returns (address) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return tokenCreators[_tokenId]; } /** * @dev Internal function for setting the token's creator. * @param _tokenId uint256 id of the token. * @param _creator address of the creator of the token. */ function setTokenCreator(uint256 _tokenId, address _creator) public onlyOwner { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); tokenCreators[_tokenId] = _creator; } /** * @dev Updates the token metadata if the owner is also the creator. * @param _tokenId uint256 ID of the token. * @param _uri string metadata URI. */ function updateTokenMetadata(uint256 _tokenId, string memory _uri) public { require(_isApprovedOrOwner(msg.sender, _tokenId), "BcaexOwnershipV2: transfer caller is not owner nor approved"); require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); _setTokenURI(_tokenId, _uri); emit TokenURIUpdated(_tokenId, _uri); } /** * @dev Updates the token metadata if the owner is also the creator. * @param _tokenId uint256 ID of the token. * @param _uri string metadata URI. */ function updateTokenMetadataOnlyOwner(uint256 _tokenId, string memory _uri) public onlyOwner { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); _setTokenURI(_tokenId, _uri); emit TokenURIUpdated(_tokenId, _uri); } /** * @dev Deletes the token with the provided ID. * @param _tokenId uint256 ID of the token. */ function deleteToken(uint256 _tokenId) public { require(_isApprovedOrOwner(msg.sender, _tokenId), "BcaexOwnershipV2: transfer caller is not owner nor approved"); require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); _burn(_tokenId); delete tokenCreators[_tokenId]; } /** * @dev Deletes the token with the provided ID. * @param _tokenId uint256 ID of the token. */ function deleteTokenOnlyOwner(uint256 _tokenId) public onlyOwner { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); _burn(_tokenId); delete tokenCreators[_tokenId]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_uri","type":"string"}],"name":"TokenURIUpdated","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROOT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"addNewToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_creator","type":"address"}],"name":"addNewTokenToCreator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_creator","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"name":"addNewTokenToOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addRootRole","outputs":[],"stateMutability":"nonpayable","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":"_tokenId","type":"uint256"}],"name":"deleteToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"deleteTokenOnlyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"_minter","type":"address"}],"name":"revokeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_creator","type":"address"}],"name":"setTokenCreator","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"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"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateTokenMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateTokenMetadataOnlyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600581526020017f42434145580000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4243410000000000000000000000000000000000000000000000000000000000815250600062000090620001d860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001466301ffc9a760e01b620001e060201b60201c565b81600890805190602001906200015e929190620006bb565b50806009908051906020019062000177929190620006bb565b50620001906380ac58cd60e01b620001e060201b60201c565b620001a8635b5e139f60e01b620001e060201b60201c565b620001c063780e9d6360e01b620001e060201b60201c565b5050620001d2620002ea60201b60201c565b6200076a565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200027d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b600160026000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b620002fa620001d860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620003bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6200043860405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902060405180807f524f4f545f524f4c45000000000000000000000000000000000000000000000081525060090190506040518091039020620004c860201b60201c565b6200047f60405180807f524f4f545f524f4c45000000000000000000000000000000000000000000000081525060090190506040518091039020336200052c60201b60201c565b620004c660405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020336200052c60201b60201c565b565b806001600084815260200190815260200160002060020154837fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a48060016000848152602001908152602001600020600201819055505050565b6200053e82826200054260201b60201c565b5050565b620005718160016000858152602001908152602001600020600001620005e660201b620041671790919060201c565b15620005e25762000587620001d860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000616836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200061e60201b60201c565b905092915050565b60006200063283836200069860201b60201c565b6200068d57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000692565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006fe57805160ff19168380011785556200072f565b828001600101855582156200072f579182015b828111156200072e57825182559160200191906001019062000711565b5b5090506200073e919062000742565b5090565b6200076791905b808211156200076357600081600090555060010162000749565b5090565b90565b615096806200077a6000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c80637e8c7f0811610146578063b88d4fde116100c3578063d547741f11610087578063d547741f14611038578063d9856c2114611086578063e985e9c514611155578063f0b614ae146111d1578063f2fde38b1461121f578063f8def5b0146112635761025e565b8063b88d4fde14610de8578063c87b56dd14610eed578063ca15c87314610f94578063cfbd488514610fd6578063d53913931461101a5761025e565b8063983b2d561161010a578063983b2d5614610c1d57806398949f2914610c61578063a217fddf14610d70578063a22cb46514610d8e578063a3b2535014610dde5761025e565b80637e8c7f0814610a545780638da5cb5b14610a725780639010d07c14610abc57806391d1485414610b3457806395d89b4114610b9a5761025e565b80632f745c59116101df5780634f6ccce7116101a35780634f6ccce7146108915780636297c16c146108d35780636352211e146109015780636c0360eb1461096f57806370a08231146109f2578063715018a614610a4a5761025e565b80632f745c59146106d757806336568abe1461073957806340c1a0641461078757806342842e0e146107f557806343304e87146108635761025e565b806323b872dd1161022657806323b872dd14610425578063248a9ca3146104935780632b55b84b146104d55780632cb2f52e146105c45780632f2ff15d146106895761025e565b806301ffc9a71461026357806306fdde03146102c8578063081812fc1461034b578063095ea7b3146103b957806318160ddd14610407575b600080fd5b6102ae6004803603602081101561027957600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611328565b604051808215151515815260200191505060405180910390f35b6102d0611390565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103105780820151818401526020810190506102f5565b50505050905090810190601f16801561033d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103776004803603602081101561036157600080fd5b8101908080359060200190929190505050611432565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610405600480360360408110156103cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114cd565b005b61040f611611565b6040518082815260200191505060405180910390f35b6104916004803603606081101561043b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611622565b005b6104bf600480360360208110156104a957600080fd5b8101908080359060200190929190505050611698565b6040518082815260200191505060405180910390f35b6105ae600480360360408110156104eb57600080fd5b810190808035906020019064010000000081111561050857600080fd5b82018360208201111561051a57600080fd5b8035906020019184600183028401116401000000008311171561053c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116b8565b6040518082815260200191505060405180910390f35b610687600480360360408110156105da57600080fd5b81019080803590602001909291908035906020019064010000000081111561060157600080fd5b82018360208201111561061357600080fd5b8035906020019184600183028401116401000000008311171561063557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611795565b005b6106d56004803603604081101561069f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118fd565b005b610723600480360360408110156106ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611987565b6040518082815260200191505060405180910390f35b6107856004803603604081101561074f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119e2565b005b6107b36004803603602081101561079d57600080fd5b8101908080359060200190929190505050611a7b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108616004803603606081101561080b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b16565b005b61088f6004803603602081101561087957600080fd5b8101908080359060200190929190505050611b36565b005b6108bd600480360360208110156108a757600080fd5b8101908080359060200190929190505050611c9f565b6040518082815260200191505060405180910390f35b6108ff600480360360208110156108e957600080fd5b8101908080359060200190929190505050611cc2565b005b61092d6004803603602081101561091757600080fd5b8101908080359060200190929190505050611dc1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610977611df8565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109b757808201518184015260208101905061099c565b50505050905090810190601f1680156109e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a3460048036036020811015610a0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e9a565b6040518082815260200191505060405180910390f35b610a52611f6f565b005b610a5c6120f7565b6040518082815260200191505060405180910390f35b610a7a612130565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610af260048036036040811015610ad257600080fd5b810190808035906020019092919080359060200190929190505050612159565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b8060048036036040811015610b4a57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061218b565b604051808215151515815260200191505060405180910390f35b610ba26121bd565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610be2578082015181840152602081019050610bc7565b50505050905090810190601f168015610c0f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c5f60048036036020811015610c3357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061225f565b005b610d5a60048036036060811015610c7757600080fd5b8101908080359060200190640100000000811115610c9457600080fd5b820183602082011115610ca657600080fd5b80359060200191846001830284011164010000000083111715610cc857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061236a565b6040518082815260200191505060405180910390f35b610d786124be565b6040518082815260200191505060405180910390f35b610ddc60048036036040811015610da457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506124c5565b005b610de661267d565b005b610eeb60048036036080811015610dfe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610e6557600080fd5b820183602082011115610e7757600080fd5b80359060200191846001830284011164010000000083111715610e9957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061283a565b005b610f1960048036036020811015610f0357600080fd5b81019080803590602001909291905050506128b2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f59578082015181840152602081019050610f3e565b50505050905090810190601f168015610f865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fc060048036036020811015610faa57600080fd5b8101908080359060200190929190505050612b9b565b6040518082815260200191505060405180910390f35b61101860048036036020811015610fec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bc2565b005b611022612ccd565b6040518082815260200191505060405180910390f35b6110846004803603604081101561104e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d06565b005b61113f6004803603602081101561109c57600080fd5b81019080803590602001906401000000008111156110b957600080fd5b8201836020820111156110cb57600080fd5b803590602001918460018302840111640100000000831117156110ed57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612d90565b6040518082815260200191505060405180910390f35b6111b76004803603604081101561116b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e36565b604051808215151515815260200191505060405180910390f35b61121d600480360360408110156111e757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612eca565b005b6112616004803603602081101561123557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613047565b005b6113266004803603604081101561127957600080fd5b8101908080359060200190929190803590602001906401000000008111156112a057600080fd5b8201836020820111156112b257600080fd5b803590602001918460018302840111640100000000831117156112d457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613254565b005b600060026000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114285780601f106113fd57610100808354040283529160200191611428565b820191906000526020600020905b81548152906001019060200180831161140b57829003601f168201915b5050505050905090565b600061143d82613426565b611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614f0c602c913960400191505060405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006114d882611dc1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561155f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614fbc6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661157e613443565b73ffffffffffffffffffffffffffffffffffffffff1614806115ad57506115ac816115a7613443565b612e36565b5b611602576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614e5f6038913960400191505060405180910390fd5b61160c838361344b565b505050565b600061161d6004613504565b905090565b61163361162d613443565b82613519565b611688576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614fdd6031913960400191505060405180910390fd5b61169383838361360d565b505050565b600060016000838152602001908152602001600020600201549050919050565b60006116c2613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61178d8383613850565b905092915050565b61179f3383613519565b6117f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180614d7e603b913960400191505060405180910390fd5b6117fd82613426565b611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b61185c82826138da565b817f931f495b9a8e5d8e61946ea5d61e021f636cfe213a801f97589c18c152e408bd826040518080602001828103825283818151815260200191508051906020019080838360005b838110156118bf5780820151818401526020810190506118a4565b50505050905090810190601f1680156118ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b611924600160008481526020019081526020016000206002015461191f613443565b61218b565b611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614d1d602f913960400191505060405180910390fd5b6119838282613964565b5050565b60006119da82600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206139f890919063ffffffff16565b905092915050565b6119ea613443565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615032602f913960400191505060405180910390fd5b611a778282613a12565b5050565b6000611a8682613426565b611adb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b600d600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611b318383836040518060200160405280600081525061283a565b505050565b611b3e613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c0881613426565b611c5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b611c6681613aa6565b600d600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b600080611cb6836004613be090919063ffffffff16565b50905080915050919050565b611ccc3382613519565b611d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180614d7e603b913960400191505060405180910390fd5b611d2a81613426565b611d7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b611d8881613aa6565b600d600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b6000611df182604051806060016040528060298152602001614ec1602991396004613c0f9092919063ffffffff16565b9050919050565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e905780601f10611e6557610100808354040283529160200191611e90565b820191906000526020600020905b815481529060010190602001808311611e7357829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614e97602a913960400191505060405180910390fd5b611f68600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613c2e565b9050919050565b611f77613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612038576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60405180807f524f4f545f524f4c4500000000000000000000000000000000000000000000008152506009019050604051809103902081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006121838260016000868152602001908152602001600020600001613c4390919063ffffffff16565b905092915050565b60006121b58260016000868152602001908152602001600020600001613c5d90919063ffffffff16565b905092915050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122555780601f1061222a57610100808354040283529160200191612255565b820191906000526020600020905b81548152906001019060200180831161223857829003601f168201915b5050505050905090565b612267613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61236760405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902082613c8d565b50565b6000612374613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612435576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61243f600c613c9b565b600061244b600c613cb1565b90506124578382613cbf565b61246181866138da565b83600d600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550809150509392505050565b6000801b81565b6124cd613443565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561256e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806007600061257b613443565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612628613443565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b612685613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612746576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6127ba60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902060405180807f524f4f545f524f4c45000000000000000000000000000000000000000000000081525060090190506040518091039020613eb3565b6127f960405180807f524f4f545f524f4c4500000000000000000000000000000000000000000000008152506009019050604051809103902033613c8d565b61283860405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902033613c8d565b565b61284b612845613443565b83613519565b6128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614fdd6031913960400191505060405180910390fd5b6128ac84848484613f17565b50505050565b60606128bd82613426565b612912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b6060600a60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129bb5780601f10612990576101008083540402835291602001916129bb565b820191906000526020600020905b81548152906001019060200180831161299e57829003601f168201915b505050505090506000600b80546001816001161561010002031660029004905014156129ea5780915050612b96565b600081511115612ac357600b816040516020018083805460018160011615610100020316600290048015612a555780601f10612a33576101008083540402835291820191612a55565b820191906000526020600020905b815481529060010190602001808311612a41575b505082805190602001908083835b60208310612a865780518252602082019150602081019050602083039250612a63565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050612b96565b600b612ace84613f89565b6040516020018083805460018160011615610100020316600290048015612b2c5780601f10612b0a576101008083540402835291820191612b2c565b820191906000526020600020905b815481529060010190602001808311612b18575b505082805190602001908083835b60208310612b5d5780518252602082019150602081019050602083039250612b3a565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529150505b919050565b6000612bbb600160008481526020019081526020016000206000016140b9565b9050919050565b612bca613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612cca60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902082612d06565b50565b60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902081565b612d2d6001600084815260200190815260200160002060020154612d28613443565b61218b565b612d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614e2f6030913960400191505060405180910390fd5b612d8c8282613a12565b5050565b6000612dd160405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b01905060405180910390203361218b565b612e26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061500e6024913960400191505060405180910390fd5b612e308233613850565b50919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ed2613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612f9c82613426565b612ff1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b80600d600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61304f613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613196576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614db96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61325c613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461331d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61332682613426565b61337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b61338582826138da565b817f931f495b9a8e5d8e61946ea5d61e021f636cfe213a801f97589c18c152e408bd826040518080602001828103825283818151815260200191508051906020019080838360005b838110156133e85780820151818401526020810190506133cd565b50505050905090810190601f1680156134155780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b600061343c8260046140ce90919063ffffffff16565b9050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166134be83611dc1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613512826000016140e8565b9050919050565b600061352482613426565b613579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614e03602c913960400191505060405180910390fd5b600061358483611dc1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806135f357508373ffffffffffffffffffffffffffffffffffffffff166135db84611432565b73ffffffffffffffffffffffffffffffffffffffff16145b8061360457506136038185612e36565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661362d82611dc1565b73ffffffffffffffffffffffffffffffffffffffff1614613699576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f646029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561371f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614ddf6024913960400191505060405180910390fd5b61372a8383836140f9565b61373560008261344b565b61378681600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206140fe90919063ffffffff16565b506137d881600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061411890919063ffffffff16565b506137ef818360046141329092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061385c600c613c9b565b6000613868600c613cb1565b90506138748382613cbf565b61387e81856138da565b82600d600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508091505092915050565b6138e382613426565b613938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614f38602c913960400191505060405180910390fd5b80600a6000848152602001908152602001600020908051906020019061395f929190614c0d565b505050565b61398c816001600085815260200190815260200160002060000161416790919063ffffffff16565b156139f457613999613443565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000613a078360000183614197565b60001c905092915050565b613a3a816001600085815260200190815260200160002060000161421a90919063ffffffff16565b15613aa257613a47613443565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613ab182611dc1565b9050613abf816000846140f9565b613aca60008361344b565b6000600a600084815260200190815260200160002080546001816001161561010002031660029004905014613b1957600a60008381526020019081526020016000206000613b189190614c8d565b5b613b6a82600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206140fe90919063ffffffff16565b50613b7f82600461424a90919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600080613bf38660000186614264565b915091508160001c8160001c8090509350935050509250929050565b6000613c22846000018460001b846142fd565b60001c90509392505050565b6000613c3c826000016143f3565b9050919050565b6000613c528360000183614197565b60001c905092915050565b6000613c85836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614404565b905092915050565b613c978282613964565b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613d6b81613426565b15613dde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613dea600083836140f9565b613e3b81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061411890919063ffffffff16565b50613e52818360046141329092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b806001600084815260200190815260200160002060020154837fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a48060016000848152602001908152602001600020600201819055505050565b613f2284848461360d565b613f2e84848484614427565b613f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614d4c6032913960400191505060405180910390fd5b50505050565b60606000821415613fd1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506140b4565b600082905060005b60008214613ffb578080600101915050600a8281613ff357fe5b049150613fd9565b6060816040519080825280601f01601f1916602001820160405280156140305781602001600182028038833980820191505090505b50905060006001830390508593505b600084146140ac57600a848161405157fe5b0660300160f81b8282806001900393508151811061406b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816140a457fe5b04935061403f565b819450505050505b919050565b60006140c7826000016143f3565b9050919050565b60006140e0836000018360001b61466c565b905092915050565b600081600001805490509050919050565b505050565b6000614110836000018360001b61468f565b905092915050565b600061412a836000018360001b614777565b905092915050565b600061415e846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6147e7565b90509392505050565b600061418f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614777565b905092915050565b6000818360000180549050116141f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614cfb6022913960400191505060405180910390fd5b82600001828154811061420757fe5b9060005260206000200154905092915050565b6000614242836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61468f565b905092915050565b600061425c836000018360001b6148c3565b905092915050565b600080828460000180549050116142c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614eea6022913960400191505060405180910390fd5b60008460000184815481106142d757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906143c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561438957808201518184015260208101905061436e565b50505050905090810190601f1680156143b65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106143d757fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60006144488473ffffffffffffffffffffffffffffffffffffffff166149dc565b6144555760019050614664565b60606145eb63150b7a0260e01b61446a613443565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561451a5780820151818401526020810190506144ff565b50505050905090810190601f1680156145475780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614d4c603291398773ffffffffffffffffffffffffffffffffffffffff166149ef9092919063ffffffff16565b9050600081806020019051602081101561460457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461476b57600060018203905060006001866000018054905003905060008660000182815481106146da57fe5b90600052602060002001549050808760000184815481106146f757fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061472f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614771565b60009150505b92915050565b60006147838383614404565b6147dc5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506147e1565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561488e578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506148bc565b828560000160018303815481106148a157fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146149d0576000600182039050600060018660000180549050039050600086600001828154811061490e57fe5b906000526020600020906002020190508087600001848154811061492e57fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061498157fe5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506149d6565b60009150505b92915050565b600080823b905060008111915050919050565b60606149fe8484600085614a07565b90509392505050565b6060614a12856149dc565b614a84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614ad45780518252602082019150602081019050602083039250614ab1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614b36576040519150601f19603f3d011682016040523d82523d6000602084013e614b3b565b606091505b50915091508115614b50578092505050614c05565b600081511115614b635780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614bca578082015181840152602081019050614baf565b50505050905090810190601f168015614bf75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614c4e57805160ff1916838001178555614c7c565b82800160010185558215614c7c579182015b82811115614c7b578251825591602001919060010190614c60565b5b509050614c899190614cd5565b5090565b50805460018160011615610100020316600290046000825580601f10614cb35750614cd2565b601f016020900490600052602060002090810190614cd19190614cd5565b5b50565b614cf791905b80821115614cf3576000816000905550600101614cdb565b5090565b9056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e74657242636165784f776e65727368697056323a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646d7573742062652077686974656c697374656420746f2063726561746520746f6b656e73416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220d0c608980f3bf38a0f368df2bd1364ab1abe94a5f1e9f8f6b95c6a6a1a17cc6064736f6c63430006020033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025e5760003560e01c80637e8c7f0811610146578063b88d4fde116100c3578063d547741f11610087578063d547741f14611038578063d9856c2114611086578063e985e9c514611155578063f0b614ae146111d1578063f2fde38b1461121f578063f8def5b0146112635761025e565b8063b88d4fde14610de8578063c87b56dd14610eed578063ca15c87314610f94578063cfbd488514610fd6578063d53913931461101a5761025e565b8063983b2d561161010a578063983b2d5614610c1d57806398949f2914610c61578063a217fddf14610d70578063a22cb46514610d8e578063a3b2535014610dde5761025e565b80637e8c7f0814610a545780638da5cb5b14610a725780639010d07c14610abc57806391d1485414610b3457806395d89b4114610b9a5761025e565b80632f745c59116101df5780634f6ccce7116101a35780634f6ccce7146108915780636297c16c146108d35780636352211e146109015780636c0360eb1461096f57806370a08231146109f2578063715018a614610a4a5761025e565b80632f745c59146106d757806336568abe1461073957806340c1a0641461078757806342842e0e146107f557806343304e87146108635761025e565b806323b872dd1161022657806323b872dd14610425578063248a9ca3146104935780632b55b84b146104d55780632cb2f52e146105c45780632f2ff15d146106895761025e565b806301ffc9a71461026357806306fdde03146102c8578063081812fc1461034b578063095ea7b3146103b957806318160ddd14610407575b600080fd5b6102ae6004803603602081101561027957600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611328565b604051808215151515815260200191505060405180910390f35b6102d0611390565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103105780820151818401526020810190506102f5565b50505050905090810190601f16801561033d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103776004803603602081101561036157600080fd5b8101908080359060200190929190505050611432565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610405600480360360408110156103cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114cd565b005b61040f611611565b6040518082815260200191505060405180910390f35b6104916004803603606081101561043b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611622565b005b6104bf600480360360208110156104a957600080fd5b8101908080359060200190929190505050611698565b6040518082815260200191505060405180910390f35b6105ae600480360360408110156104eb57600080fd5b810190808035906020019064010000000081111561050857600080fd5b82018360208201111561051a57600080fd5b8035906020019184600183028401116401000000008311171561053c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116b8565b6040518082815260200191505060405180910390f35b610687600480360360408110156105da57600080fd5b81019080803590602001909291908035906020019064010000000081111561060157600080fd5b82018360208201111561061357600080fd5b8035906020019184600183028401116401000000008311171561063557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611795565b005b6106d56004803603604081101561069f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118fd565b005b610723600480360360408110156106ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611987565b6040518082815260200191505060405180910390f35b6107856004803603604081101561074f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119e2565b005b6107b36004803603602081101561079d57600080fd5b8101908080359060200190929190505050611a7b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108616004803603606081101561080b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b16565b005b61088f6004803603602081101561087957600080fd5b8101908080359060200190929190505050611b36565b005b6108bd600480360360208110156108a757600080fd5b8101908080359060200190929190505050611c9f565b6040518082815260200191505060405180910390f35b6108ff600480360360208110156108e957600080fd5b8101908080359060200190929190505050611cc2565b005b61092d6004803603602081101561091757600080fd5b8101908080359060200190929190505050611dc1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610977611df8565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109b757808201518184015260208101905061099c565b50505050905090810190601f1680156109e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a3460048036036020811015610a0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e9a565b6040518082815260200191505060405180910390f35b610a52611f6f565b005b610a5c6120f7565b6040518082815260200191505060405180910390f35b610a7a612130565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610af260048036036040811015610ad257600080fd5b810190808035906020019092919080359060200190929190505050612159565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b8060048036036040811015610b4a57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061218b565b604051808215151515815260200191505060405180910390f35b610ba26121bd565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610be2578082015181840152602081019050610bc7565b50505050905090810190601f168015610c0f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c5f60048036036020811015610c3357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061225f565b005b610d5a60048036036060811015610c7757600080fd5b8101908080359060200190640100000000811115610c9457600080fd5b820183602082011115610ca657600080fd5b80359060200191846001830284011164010000000083111715610cc857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061236a565b6040518082815260200191505060405180910390f35b610d786124be565b6040518082815260200191505060405180910390f35b610ddc60048036036040811015610da457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506124c5565b005b610de661267d565b005b610eeb60048036036080811015610dfe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610e6557600080fd5b820183602082011115610e7757600080fd5b80359060200191846001830284011164010000000083111715610e9957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061283a565b005b610f1960048036036020811015610f0357600080fd5b81019080803590602001909291905050506128b2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f59578082015181840152602081019050610f3e565b50505050905090810190601f168015610f865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fc060048036036020811015610faa57600080fd5b8101908080359060200190929190505050612b9b565b6040518082815260200191505060405180910390f35b61101860048036036020811015610fec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bc2565b005b611022612ccd565b6040518082815260200191505060405180910390f35b6110846004803603604081101561104e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d06565b005b61113f6004803603602081101561109c57600080fd5b81019080803590602001906401000000008111156110b957600080fd5b8201836020820111156110cb57600080fd5b803590602001918460018302840111640100000000831117156110ed57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612d90565b6040518082815260200191505060405180910390f35b6111b76004803603604081101561116b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e36565b604051808215151515815260200191505060405180910390f35b61121d600480360360408110156111e757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612eca565b005b6112616004803603602081101561123557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613047565b005b6113266004803603604081101561127957600080fd5b8101908080359060200190929190803590602001906401000000008111156112a057600080fd5b8201836020820111156112b257600080fd5b803590602001918460018302840111640100000000831117156112d457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613254565b005b600060026000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114285780601f106113fd57610100808354040283529160200191611428565b820191906000526020600020905b81548152906001019060200180831161140b57829003601f168201915b5050505050905090565b600061143d82613426565b611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614f0c602c913960400191505060405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006114d882611dc1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561155f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614fbc6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661157e613443565b73ffffffffffffffffffffffffffffffffffffffff1614806115ad57506115ac816115a7613443565b612e36565b5b611602576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614e5f6038913960400191505060405180910390fd5b61160c838361344b565b505050565b600061161d6004613504565b905090565b61163361162d613443565b82613519565b611688576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614fdd6031913960400191505060405180910390fd5b61169383838361360d565b505050565b600060016000838152602001908152602001600020600201549050919050565b60006116c2613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61178d8383613850565b905092915050565b61179f3383613519565b6117f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180614d7e603b913960400191505060405180910390fd5b6117fd82613426565b611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b61185c82826138da565b817f931f495b9a8e5d8e61946ea5d61e021f636cfe213a801f97589c18c152e408bd826040518080602001828103825283818151815260200191508051906020019080838360005b838110156118bf5780820151818401526020810190506118a4565b50505050905090810190601f1680156118ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b611924600160008481526020019081526020016000206002015461191f613443565b61218b565b611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614d1d602f913960400191505060405180910390fd5b6119838282613964565b5050565b60006119da82600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206139f890919063ffffffff16565b905092915050565b6119ea613443565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615032602f913960400191505060405180910390fd5b611a778282613a12565b5050565b6000611a8682613426565b611adb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b600d600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611b318383836040518060200160405280600081525061283a565b505050565b611b3e613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c0881613426565b611c5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b611c6681613aa6565b600d600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b600080611cb6836004613be090919063ffffffff16565b50905080915050919050565b611ccc3382613519565b611d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180614d7e603b913960400191505060405180910390fd5b611d2a81613426565b611d7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b611d8881613aa6565b600d600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b6000611df182604051806060016040528060298152602001614ec1602991396004613c0f9092919063ffffffff16565b9050919050565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e905780601f10611e6557610100808354040283529160200191611e90565b820191906000526020600020905b815481529060010190602001808311611e7357829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614e97602a913960400191505060405180910390fd5b611f68600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613c2e565b9050919050565b611f77613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612038576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60405180807f524f4f545f524f4c4500000000000000000000000000000000000000000000008152506009019050604051809103902081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006121838260016000868152602001908152602001600020600001613c4390919063ffffffff16565b905092915050565b60006121b58260016000868152602001908152602001600020600001613c5d90919063ffffffff16565b905092915050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122555780601f1061222a57610100808354040283529160200191612255565b820191906000526020600020905b81548152906001019060200180831161223857829003601f168201915b5050505050905090565b612267613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61236760405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902082613c8d565b50565b6000612374613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612435576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61243f600c613c9b565b600061244b600c613cb1565b90506124578382613cbf565b61246181866138da565b83600d600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550809150509392505050565b6000801b81565b6124cd613443565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561256e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806007600061257b613443565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612628613443565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b612685613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612746576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6127ba60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902060405180807f524f4f545f524f4c45000000000000000000000000000000000000000000000081525060090190506040518091039020613eb3565b6127f960405180807f524f4f545f524f4c4500000000000000000000000000000000000000000000008152506009019050604051809103902033613c8d565b61283860405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902033613c8d565b565b61284b612845613443565b83613519565b6128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614fdd6031913960400191505060405180910390fd5b6128ac84848484613f17565b50505050565b60606128bd82613426565b612912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b6060600a60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129bb5780601f10612990576101008083540402835291602001916129bb565b820191906000526020600020905b81548152906001019060200180831161299e57829003601f168201915b505050505090506000600b80546001816001161561010002031660029004905014156129ea5780915050612b96565b600081511115612ac357600b816040516020018083805460018160011615610100020316600290048015612a555780601f10612a33576101008083540402835291820191612a55565b820191906000526020600020905b815481529060010190602001808311612a41575b505082805190602001908083835b60208310612a865780518252602082019150602081019050602083039250612a63565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050612b96565b600b612ace84613f89565b6040516020018083805460018160011615610100020316600290048015612b2c5780601f10612b0a576101008083540402835291820191612b2c565b820191906000526020600020905b815481529060010190602001808311612b18575b505082805190602001908083835b60208310612b5d5780518252602082019150602081019050602083039250612b3a565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529150505b919050565b6000612bbb600160008481526020019081526020016000206000016140b9565b9050919050565b612bca613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612cca60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902082612d06565b50565b60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902081565b612d2d6001600084815260200190815260200160002060020154612d28613443565b61218b565b612d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614e2f6030913960400191505060405180910390fd5b612d8c8282613a12565b5050565b6000612dd160405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b01905060405180910390203361218b565b612e26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061500e6024913960400191505060405180910390fd5b612e308233613850565b50919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ed2613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612f9c82613426565b612ff1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b80600d600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61304f613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613196576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614db96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61325c613443565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461331d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61332682613426565b61337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614f8d602f913960400191505060405180910390fd5b61338582826138da565b817f931f495b9a8e5d8e61946ea5d61e021f636cfe213a801f97589c18c152e408bd826040518080602001828103825283818151815260200191508051906020019080838360005b838110156133e85780820151818401526020810190506133cd565b50505050905090810190601f1680156134155780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b600061343c8260046140ce90919063ffffffff16565b9050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166134be83611dc1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613512826000016140e8565b9050919050565b600061352482613426565b613579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614e03602c913960400191505060405180910390fd5b600061358483611dc1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806135f357508373ffffffffffffffffffffffffffffffffffffffff166135db84611432565b73ffffffffffffffffffffffffffffffffffffffff16145b8061360457506136038185612e36565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661362d82611dc1565b73ffffffffffffffffffffffffffffffffffffffff1614613699576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f646029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561371f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614ddf6024913960400191505060405180910390fd5b61372a8383836140f9565b61373560008261344b565b61378681600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206140fe90919063ffffffff16565b506137d881600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061411890919063ffffffff16565b506137ef818360046141329092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061385c600c613c9b565b6000613868600c613cb1565b90506138748382613cbf565b61387e81856138da565b82600d600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508091505092915050565b6138e382613426565b613938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614f38602c913960400191505060405180910390fd5b80600a6000848152602001908152602001600020908051906020019061395f929190614c0d565b505050565b61398c816001600085815260200190815260200160002060000161416790919063ffffffff16565b156139f457613999613443565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000613a078360000183614197565b60001c905092915050565b613a3a816001600085815260200190815260200160002060000161421a90919063ffffffff16565b15613aa257613a47613443565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613ab182611dc1565b9050613abf816000846140f9565b613aca60008361344b565b6000600a600084815260200190815260200160002080546001816001161561010002031660029004905014613b1957600a60008381526020019081526020016000206000613b189190614c8d565b5b613b6a82600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206140fe90919063ffffffff16565b50613b7f82600461424a90919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600080613bf38660000186614264565b915091508160001c8160001c8090509350935050509250929050565b6000613c22846000018460001b846142fd565b60001c90509392505050565b6000613c3c826000016143f3565b9050919050565b6000613c528360000183614197565b60001c905092915050565b6000613c85836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614404565b905092915050565b613c978282613964565b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613d6b81613426565b15613dde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613dea600083836140f9565b613e3b81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061411890919063ffffffff16565b50613e52818360046141329092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b806001600084815260200190815260200160002060020154837fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a48060016000848152602001908152602001600020600201819055505050565b613f2284848461360d565b613f2e84848484614427565b613f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614d4c6032913960400191505060405180910390fd5b50505050565b60606000821415613fd1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506140b4565b600082905060005b60008214613ffb578080600101915050600a8281613ff357fe5b049150613fd9565b6060816040519080825280601f01601f1916602001820160405280156140305781602001600182028038833980820191505090505b50905060006001830390508593505b600084146140ac57600a848161405157fe5b0660300160f81b8282806001900393508151811061406b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816140a457fe5b04935061403f565b819450505050505b919050565b60006140c7826000016143f3565b9050919050565b60006140e0836000018360001b61466c565b905092915050565b600081600001805490509050919050565b505050565b6000614110836000018360001b61468f565b905092915050565b600061412a836000018360001b614777565b905092915050565b600061415e846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6147e7565b90509392505050565b600061418f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614777565b905092915050565b6000818360000180549050116141f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614cfb6022913960400191505060405180910390fd5b82600001828154811061420757fe5b9060005260206000200154905092915050565b6000614242836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61468f565b905092915050565b600061425c836000018360001b6148c3565b905092915050565b600080828460000180549050116142c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614eea6022913960400191505060405180910390fd5b60008460000184815481106142d757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906143c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561438957808201518184015260208101905061436e565b50505050905090810190601f1680156143b65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106143d757fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60006144488473ffffffffffffffffffffffffffffffffffffffff166149dc565b6144555760019050614664565b60606145eb63150b7a0260e01b61446a613443565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561451a5780820151818401526020810190506144ff565b50505050905090810190601f1680156145475780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614d4c603291398773ffffffffffffffffffffffffffffffffffffffff166149ef9092919063ffffffff16565b9050600081806020019051602081101561460457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461476b57600060018203905060006001866000018054905003905060008660000182815481106146da57fe5b90600052602060002001549050808760000184815481106146f757fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061472f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614771565b60009150505b92915050565b60006147838383614404565b6147dc5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506147e1565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561488e578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506148bc565b828560000160018303815481106148a157fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146149d0576000600182039050600060018660000180549050039050600086600001828154811061490e57fe5b906000526020600020906002020190508087600001848154811061492e57fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061498157fe5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506149d6565b60009150505b92915050565b600080823b905060008111915050919050565b60606149fe8484600085614a07565b90509392505050565b6060614a12856149dc565b614a84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614ad45780518252602082019150602081019050602083039250614ab1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614b36576040519150601f19603f3d011682016040523d82523d6000602084013e614b3b565b606091505b50915091508115614b50578092505050614c05565b600081511115614b635780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614bca578082015181840152602081019050614baf565b50505050905090810190601f168015614bf75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614c4e57805160ff1916838001178555614c7c565b82800160010185558215614c7c579182015b82811115614c7b578251825591602001919060010190614c60565b5b509050614c899190614cd5565b5090565b50805460018160011615610100020316600290046000825580601f10614cb35750614cd2565b601f016020900490600052602060002090810190614cd19190614cd5565b5b50565b614cf791905b80821115614cf3576000816000905550600101614cdb565b5090565b9056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e74657242636165784f776e65727368697056323a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646d7573742062652077686974656c697374656420746f2063726561746520746f6b656e73416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220d0c608980f3bf38a0f368df2bd1364ab1abe94a5f1e9f8f6b95c6a6a1a17cc6064736f6c63430006020033
Deployed Bytecode Sourcemap
68881:5740:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;68881:5740:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34428:142;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34428:142:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;54539:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;54539:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57226:213;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;57226:213:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;56770:390;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56770:390:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56264:203;;;:::i;:::-;;;;;;;;;;;;;;;;;;;58100:305;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;58100:305:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21859:114;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21859:114:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71201:157;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;71201:157:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;71201:157:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;71201:157:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;71201:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;71201:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72949:391;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;72949:391:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;72949:391:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;72949:391:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;72949:391:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;72949:391:0;;;;;;;;;;;;;;;:::i;:::-;;22235:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22235:227:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56034:154;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56034:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23444:209;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23444:209:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72133:207;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;72133:207:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;58476:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;58476:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74396:222;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;74396:222:0;;;;;;;;;;;;;;;;;:::i;:::-;;56544:164;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56544:164:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;73945:324;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;73945:324:0;;;;;;;;;;;;;;;;;:::i;:::-;;54303:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;54303:169:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;55861:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;55861:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54026:215;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;54026:215:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2778:148;;;:::i;:::-;;69475:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2136:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21532:138;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21532:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20493:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20493:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;54700:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;54700:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69863:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;69863:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;71643:335;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;71643:335:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;71643:335:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;71643:335:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;71643:335:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;71643:335:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19238:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57511:295;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;57511:295:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69668:187;;;:::i;:::-;;58698:285;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;58698:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;58698:285:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;58698:285:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;58698:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;58698:285:0;;;;;;;;;;;;;;;:::i;:::-;;54867:755;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;54867:755:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;54867:755:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20806:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20806:127:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69976:108;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;69976:108:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;69597:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22707:230;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22707:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70770:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;70770:203:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;70770:203:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;70770:203:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;70770:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;70770:203:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57877:156;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;57877:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;72540:219;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;72540:219:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3081:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3081:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;73530:287;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;73530:287:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;73530:287:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;73530:287:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;73530:287:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;73530:287:0;;;;;;;;;;;;;;;:::i;:::-;;34428:142;34505:4;34529:20;:33;34550:11;34529:33;;;;;;;;;;;;;;;;;;;;;;;;;;;34522:40;;34428:142;;;:::o;54539:92::-;54585:13;54618:5;54611:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54539:92;:::o;57226:213::-;57294:7;57322:16;57330:7;57322;:16::i;:::-;57314:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57407:15;:24;57423:7;57407:24;;;;;;;;;;;;;;;;;;;;;57400:31;;57226:213;;;:::o;56770:390::-;56851:13;56867:16;56875:7;56867;:16::i;:::-;56851:32;;56908:5;56902:11;;:2;:11;;;;56894:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56988:5;56972:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;56997:37;57014:5;57021:12;:10;:12::i;:::-;56997:16;:37::i;:::-;56972:62;56964:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57131:21;57140:2;57144:7;57131:8;:21::i;:::-;56770:390;;;:::o;56264:203::-;56317:7;56438:21;:12;:19;:21::i;:::-;56431:28;;56264:203;:::o;58100:305::-;58261:41;58280:12;:10;:12::i;:::-;58294:7;58261:18;:41::i;:::-;58253:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58369:28;58379:4;58385:2;58389:7;58369:9;:28::i;:::-;58100:305;;;:::o;21859:114::-;21916:7;21943:6;:12;21950:4;21943:12;;;;;;;;;;;:22;;;21936:29;;21859:114;;;:::o;71201:157::-;71295:7;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71322:28:::1;71335:4;71341:8;71322:12;:28::i;:::-;71315:35;;71201:157:::0;;;;:::o;72949:391::-;73054:40;73073:10;73085:8;73054:18;:40::i;:::-;73046:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73177:17;73185:8;73177:7;:17::i;:::-;73169:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73257:28;73270:8;73280:4;73257:12;:28::i;:::-;73317:8;73301:31;73327:4;73301:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;73301:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72949:391;;:::o;22235:227::-;22319:45;22327:6;:12;22334:4;22327:12;;;;;;;;;;;:22;;;22351:12;:10;:12::i;:::-;22319:7;:45::i;:::-;22311:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22429:25;22440:4;22446:7;22429:10;:25::i;:::-;22235:227;;:::o;56034:154::-;56123:7;56150:30;56174:5;56150:13;:20;56164:5;56150:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;56143:37;;56034:154;;;;:::o;23444:209::-;23542:12;:10;:12::i;:::-;23531:23;;:7;:23;;;23523:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23619:26;23631:4;23637:7;23619:11;:26::i;:::-;23444:209;;:::o;72133:207::-;72194:7;72222:17;72230:8;72222:7;:17::i;:::-;72214:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72309:13;:23;72323:8;72309:23;;;;;;;;;;;;;;;;;;;;;72302:30;;72133:207;;;:::o;58476:151::-;58580:39;58597:4;58603:2;58607:7;58580:39;;;;;;;;;;;;:16;:39::i;:::-;58476:151;;;:::o;74396:222::-;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74478:17:::1;74486:8;74478:7;:17::i;:::-;74470:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74556:15;74562:8;74556:5;:15::i;:::-;74587:13;:23;74601:8;74587:23;;;;;;;;;;;;74580:30;;;;;;;;;;;74396:222:::0;:::o;56544:164::-;56611:7;56632:15;56653:22;56669:5;56653:12;:15;;:22;;;;:::i;:::-;56631:44;;;56693:7;56686:14;;;56544:164;;;:::o;73945:324::-;74008:40;74027:10;74039:8;74008:18;:40::i;:::-;74000:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74129:17;74137:8;74129:7;:17::i;:::-;74121:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74207:15;74213:8;74207:5;:15::i;:::-;74238:13;:23;74252:8;74238:23;;;;;;;;;;;;74231:30;;;;;;;;;;;73945:324;:::o;54303:169::-;54367:7;54394:70;54411:7;54394:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;54387:77;;54303:169;;;:::o;55861:89::-;55901:13;55934:8;55927:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55861:89;:::o;54026:215::-;54090:7;54135:1;54118:19;;:5;:19;;;;54110:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54204:29;:13;:20;54218:5;54204:20;;;;;;;;;;;;;;;:27;:29::i;:::-;54197:36;;54026:215;;;:::o;2778:148::-;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2885:1:::1;2848:40;;2869:6;::::0;::::1;;;;;;;;;2848:40;;;;;;;;;;;;2916:1;2899:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2778:148::o:0;69475:58::-;69511:22;;;;;;;;;;;;;;;;;;;69475:58;:::o;2136:79::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2136:79;:::o;21532:138::-;21605:7;21632:30;21656:5;21632:6;:12;21639:4;21632:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;21625:37;;21532:138;;;;:::o;20493:139::-;20562:4;20586:38;20616:7;20586:6;:12;20593:4;20586:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;20579:45;;20493:139;;;;:::o;54700:96::-;54748:13;54781:7;54774:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54700:96;:::o;69863:105::-;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69927:33:::1;69635:24;;;;;;;::::0;::::1;;;;;;;;;;;69952:7;69927:10;:33::i;:::-;69863:105:::0;:::o;71643:335::-;71751:7;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71771:21:::1;:9;:19;:21::i;:::-;71803:13;71819:19;:9;:17;:19::i;:::-;71803:35;;71849:20;71855:6;71863:5;71849;:20::i;:::-;71880:25;71893:5;71900:4;71880:12;:25::i;:::-;71939:8;71916:13;:20;71930:5;71916:20;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;71965:5;71958:12;;;71643:335:::0;;;;;:::o;19238:49::-;19283:4;19238:49;;;:::o;57511:295::-;57626:12;:10;:12::i;:::-;57614:24;;:8;:24;;;;57606:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57726:8;57681:18;:32;57700:12;:10;:12::i;:::-;57681:32;;;;;;;;;;;;;;;:42;57714:8;57681:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;57779:8;57750:48;;57765:12;:10;:12::i;:::-;57750:48;;;57789:8;57750:48;;;;;;;;;;;;;;;;;;;;;;57511:295;;:::o;69668:187::-;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69719:37:::1;69635:24;;;;;;;::::0;::::1;;;;;;;;;;;69511:22;;;;;;;::::0;::::1;;;;;;;;;;;69719:13;:37::i;:::-;69767:34;69511:22;;;;;;;::::0;::::1;;;;;;;;;;;69790:10;69767;:34::i;:::-;69812:35;69635:24;;;;;;;::::0;::::1;;;;;;;;;;;69836:10;69812;:35::i;:::-;69668:187::o:0;58698:285::-;58830:41;58849:12;:10;:12::i;:::-;58863:7;58830:18;:41::i;:::-;58822:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58936:39;58950:4;58956:2;58960:7;58969:5;58936:13;:39::i;:::-;58698:285;;;;:::o;54867:755::-;54932:13;54966:16;54974:7;54966;:16::i;:::-;54958:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55047:23;55073:10;:19;55084:7;55073:19;;;;;;;;;;;55047:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55194:1;55174:8;55168:22;;;;;;;;;;;;;;;;:27;55164:76;;;55219:9;55212:16;;;;;55164:76;55370:1;55350:9;55344:23;:27;55340:112;;;55419:8;55429:9;55402:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;55402:37:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;55402:37:0;;;55388:52;;;;;55340:112;55584:8;55594:18;:7;:16;:18::i;:::-;55567:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;55567:46:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;55567:46:0;;;55553:61;;;54867:755;;;;:::o;20806:127::-;20869:7;20896:29;:6;:12;20903:4;20896:12;;;;;;;;;;;:20;;:27;:29::i;:::-;20889:36;;20806:127;;;:::o;69976:108::-;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70043:33:::1;69635:24;;;;;;;::::0;::::1;;;;;;;;;;;70068:7;70043:10;:33::i;:::-;69976:108:::0;:::o;69597:62::-;69635:24;;;;;;;;;;;;;;;;;;;69597:62;:::o;22707:230::-;22792:45;22800:6;:12;22807:4;22800:12;;;;;;;;;;;:22;;;22824:12;:10;:12::i;:::-;22792:7;:45::i;:::-;22784:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22903:26;22915:4;22921:7;22903:11;:26::i;:::-;22707:230;;:::o;70770:203::-;70827:7;70853:32;69635:24;;;;;;;;;;;;;;;;;;;70874:10;70853:7;:32::i;:::-;70845:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70935:30;70948:4;70954:10;70935:12;:30::i;:::-;;70770:203;;;:::o;57877:156::-;57966:4;57990:18;:25;58009:5;57990:25;;;;;;;;;;;;;;;:35;58016:8;57990:35;;;;;;;;;;;;;;;;;;;;;;;;;57983:42;;57877:156;;;;:::o;72540:219::-;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72637:17:::1;72645:8;72637:7;:17::i;:::-;72629:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72743:8;72717:13;:23;72731:8;72717:23;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;72540:219:::0;;:::o;3081:244::-;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3190:1:::1;3170:22;;:8;:22;;;;3162:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3280:8;3251:38;;3272:6;::::0;::::1;;;;;;;;;3251:38;;;;;;;;;;;;3309:8;3300:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3081:244:::0;:::o;73530:287::-;2358:12;:10;:12::i;:::-;2348:22;;:6;;;;;;;;;;;:22;;;2340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73654:17:::1;73662:8;73654:7;:17::i;:::-;73646:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73734:28;73747:8;73757:4;73734:12;:28::i;:::-;73794:8;73778:31;73804:4;73778:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;73778:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73530:287:::0;;:::o;60450:119::-;60507:4;60531:30;60553:7;60531:12;:21;;:30;;;;:::i;:::-;60524:37;;60450:119;;;:::o;657:106::-;710:15;745:10;738:17;;657:106;:::o;66277:158::-;66370:2;66343:15;:24;66359:7;66343:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;66419:7;66415:2;66388:39;;66397:16;66405:7;66397;:16::i;:::-;66388:39;;;;;;;;;;;;66277:158;;:::o;47885:123::-;47954:7;47981:19;47989:3;:10;;47981:7;:19::i;:::-;47974:26;;47885:123;;;:::o;60736:333::-;60821:4;60846:16;60854:7;60846;:16::i;:::-;60838:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60922:13;60938:16;60946:7;60938;:16::i;:::-;60922:32;;60984:5;60973:16;;:7;:16;;;:51;;;;61017:7;60993:31;;:20;61005:7;60993:11;:20::i;:::-;:31;;;60973:51;:87;;;;61028:32;61045:5;61052:7;61028:16;:32::i;:::-;60973:87;60965:96;;;60736:333;;;;:::o;63825:574::-;63943:4;63923:24;;:16;63931:7;63923;:16::i;:::-;:24;;;63915:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64026:1;64012:16;;:2;:16;;;;64004:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64082:39;64103:4;64109:2;64113:7;64082:20;:39::i;:::-;64186:29;64203:1;64207:7;64186:8;:29::i;:::-;64228:35;64255:7;64228:13;:19;64242:4;64228:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;64274:30;64296:7;64274:13;:17;64288:2;64274:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;64317:29;64334:7;64343:2;64317:12;:16;;:29;;;;;:::i;:::-;;64383:7;64379:2;64364:27;;64373:4;64364:27;;;;;;;;;;;;63825:574;;;:::o;70324:301::-;70400:7;70420:21;:9;:19;:21::i;:::-;70452:13;70468:19;:9;:17;:19::i;:::-;70452:35;;70498:20;70504:6;70512:5;70498;:20::i;:::-;70529:25;70542:5;70549:4;70529:12;:25::i;:::-;70588:6;70565:13;:20;70579:5;70565:20;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;70612:5;70605:12;;;70324:301;;;;:::o;64555:215::-;64655:16;64663:7;64655;:16::i;:::-;64647:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64753:9;64731:10;:19;64742:7;64731:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;64555:215;;:::o;24687:188::-;24761:33;24786:7;24761:6;:12;24768:4;24761:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;24757:111;;;24843:12;:10;:12::i;:::-;24816:40;;24834:7;24816:40;;24828:4;24816:40;;;;;;;;;;24757:111;24687:188;;:::o;11280:137::-;11351:7;11386:22;11390:3;:10;;11402:5;11386:3;:22::i;:::-;11378:31;;11371:38;;11280:137;;;;:::o;24883:192::-;24958:36;24986:7;24958:6;:12;24965:4;24958:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;24954:114;;;25043:12;:10;:12::i;:::-;25016:40;;25034:7;25016:40;;25028:4;25016:40;;;;;;;;;;24954:114;24883:192;;:::o;62968:520::-;63028:13;63044:16;63052:7;63044;:16::i;:::-;63028:32;;63073:48;63094:5;63109:1;63113:7;63073:20;:48::i;:::-;63162:29;63179:1;63183:7;63162:8;:29::i;:::-;63281:1;63250:10;:19;63261:7;63250:19;;;;;;;;;;;63244:33;;;;;;;;;;;;;;;;:38;63240:97;;63306:10;:19;63317:7;63306:19;;;;;;;;;;;;63299:26;;;;:::i;:::-;63240:97;63349:36;63377:7;63349:13;:20;63363:5;63349:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;63398:28;63418:7;63398:12;:19;;:28;;;;:::i;:::-;;63472:7;63468:1;63444:36;;63453:5;63444:36;;;;;;;;;;;;62968:520;;:::o;48347:227::-;48427:7;48436;48457:11;48470:13;48487:22;48491:3;:10;;48503:5;48487:3;:22::i;:::-;48456:53;;;;48536:3;48528:12;;48558:5;48550:14;;48520:46;;;;;;;;;48347:227;;;;;:::o;49009:204::-;49116:7;49159:44;49164:3;:10;;49184:3;49176:12;;49190;49159:4;:44::i;:::-;49151:53;;49136:69;;49009:204;;;;;:::o;10822:114::-;10882:7;10909:19;10917:3;:10;;10909:7;:19::i;:::-;10902:26;;10822:114;;;:::o;9661:149::-;9735:7;9778:22;9782:3;:10;;9794:5;9778:3;:22::i;:::-;9770:31;;9755:47;;9661:149;;;;:::o;8956:158::-;9036:4;9060:46;9070:3;:10;;9098:5;9090:14;;9082:23;;9060:9;:46::i;:::-;9053:53;;8956:158;;;;:::o;24236:112::-;24315:25;24326:4;24332:7;24315:10;:25::i;:::-;24236:112;;:::o;68418:181::-;68590:1;68572:7;:14;;;:19;;;;;;;;;;;68418:181;:::o;68296:114::-;68361:7;68388;:14;;;68381:21;;68296:114;;;:::o;62335:404::-;62429:1;62415:16;;:2;:16;;;;62407:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62488:16;62496:7;62488;:16::i;:::-;62487:17;62479:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62550:45;62579:1;62583:2;62587:7;62550:20;:45::i;:::-;62608:30;62630:7;62608:13;:17;62622:2;62608:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;62651:29;62668:7;62677:2;62651:12;:16;;:29;;;;;:::i;:::-;;62723:7;62719:2;62698:33;;62715:1;62698:33;;;;;;;;;;;;62335:404;;:::o;24480:199::-;24616:9;24592:6;:12;24599:4;24592:12;;;;;;;;;;;:22;;;24586:4;24569:57;;;;;;;;;;24662:9;24637:6;:12;24644:4;24637:12;;;;;;;;;;;:22;;:34;;;;24480:199;;:::o;59865:272::-;59979:28;59989:4;59995:2;59999:7;59979:9;:28::i;:::-;60026:48;60049:4;60055:2;60059:7;60068:5;60026:22;:48::i;:::-;60018:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59865:272;;;;:::o;49487:744::-;49543:13;49773:1;49764:5;:10;49760:53;;;49791:10;;;;;;;;;;;;;;;;;;;;;49760:53;49823:12;49838:5;49823:20;;49854:14;49879:78;49894:1;49886:4;:9;49879:78;;49912:8;;;;;;;49943:2;49935:10;;;;;;;;;49879:78;;;49967:19;49999:6;49989:17;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;49989:17:0;;;;49967:39;;50017:13;50042:1;50033:6;:10;50017:26;;50061:5;50054:12;;50077:115;50092:1;50084:4;:9;50077:115;;50151:2;50144:4;:9;;;;;;50139:2;:14;50128:27;;50110:6;50117:7;;;;;;;50110:15;;;;;;;;;;;:45;;;;;;;;;;;50178:2;50170:10;;;;;;;;;50077:115;;;50216:6;50202:21;;;;;;49487:744;;;;:::o;9200:117::-;9263:7;9290:19;9298:3;:10;;9290:7;:19::i;:::-;9283:26;;9200:117;;;:::o;47646:151::-;47730:4;47754:35;47764:3;:10;;47784:3;47776:12;;47754:9;:35::i;:::-;47747:42;;47646:151;;;;:::o;45268:110::-;45324:7;45351:3;:12;;:19;;;;45344:26;;45268:110;;;:::o;67048:93::-;;;;:::o;10367:137::-;10437:4;10461:35;10469:3;:10;;10489:5;10481:14;;10461:7;:35::i;:::-;10454:42;;10367:137;;;;:::o;10060:131::-;10127:4;10151:32;10156:3;:10;;10176:5;10168:14;;10151:4;:32::i;:::-;10144:39;;10060:131;;;;:::o;47078:176::-;47167:4;47191:55;47196:3;:10;;47216:3;47208:12;;47238:5;47230:14;;47222:23;;47191:4;:55::i;:::-;47184:62;;47078:176;;;;;:::o;8402:143::-;8472:4;8496:41;8501:3;:10;;8529:5;8521:14;;8513:23;;8496:4;:41::i;:::-;8489:48;;8402:143;;;;:::o;7944:204::-;8011:7;8060:5;8039:3;:11;;:18;;;;:26;8031:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8122:3;:11;;8134:5;8122:18;;;;;;;;;;;;;;;;8115:25;;7944:204;;;;:::o;8721:149::-;8794:4;8818:44;8826:3;:10;;8854:5;8846:14;;8838:23;;8818:7;:44::i;:::-;8811:51;;8721:149;;;;:::o;47420:142::-;47497:4;47521:33;47529:3;:10;;47549:3;47541:12;;47521:7;:33::i;:::-;47514:40;;47420:142;;;;:::o;45733:279::-;45800:7;45809;45859:5;45837:3;:12;;:19;;;;:27;45829:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45916:22;45941:3;:12;;45954:5;45941:19;;;;;;;;;;;;;;;;;;45916:44;;45979:5;:10;;;45991:5;:12;;;45971:33;;;;;45733:279;;;;;:::o;46435:319::-;46529:7;46549:16;46568:3;:12;;:17;46581:3;46568:17;;;;;;;;;;;;46549:36;;46616:1;46604:8;:13;;46619:12;46596:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46596:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46686:3;:12;;46710:1;46699:8;:12;46686:26;;;;;;;;;;;;;;;;;;:33;;;46679:40;;;46435:319;;;;;:::o;7491:109::-;7547:7;7574:3;:11;;:18;;;;7567:25;;7491:109;;;:::o;7276:129::-;7349:4;7396:1;7373:3;:12;;:19;7386:5;7373:19;;;;;;;;;;;;:24;;7366:31;;7276:129;;;;:::o;65665:604::-;65786:4;65813:15;:2;:13;;;:15::i;:::-;65808:60;;65852:4;65845:11;;;;65808:60;65878:23;65904:252;65957:45;;;66017:12;:10;:12::i;:::-;66044:4;66063:7;66085:5;65920:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;65920:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;65920:181:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;65920:181:0;65904:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;65878:278;;66167:13;66194:10;66183:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;66183:32:0;;;;;;;;;;;;;;;;66167:48;;51027:10;66244:16;;66234:26;;;:6;:26;;;;66226:35;;;;65665:604;;;;;;;:::o;45048:125::-;45119:4;45164:1;45143:3;:12;;:17;45156:3;45143:17;;;;;;;;;;;;:22;;45136:29;;45048:125;;;;:::o;5646:1544::-;5712:4;5830:18;5851:3;:12;;:19;5864:5;5851:19;;;;;;;;;;;;5830:40;;5901:1;5887:10;:15;5883:1300;;6249:21;6286:1;6273:10;:14;6249:38;;6302:17;6343:1;6322:3;:11;;:18;;;;:22;6302:42;;6589:17;6609:3;:11;;6621:9;6609:22;;;;;;;;;;;;;;;;6589:42;;6755:9;6726:3;:11;;6738:13;6726:26;;;;;;;;;;;;;;;:38;;;;6874:1;6858:13;:17;6832:3;:12;;:23;6845:9;6832:23;;;;;;;;;;;:43;;;;6984:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;7079:3;:12;;:19;7092:5;7079:19;;;;;;;;;;;7072:26;;;7122:4;7115:11;;;;;;;;5883:1300;7166:5;7159:12;;;5646:1544;;;;;:::o;5056:414::-;5119:4;5141:21;5151:3;5156:5;5141:9;:21::i;:::-;5136:327;;5179:3;:11;;5196:5;5179:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;5179:23:0;;;;;;;;;;;;;;;;;;;5362:3;:11;;:18;;;;5340:3;:12;;:19;5353:5;5340:19;;;;;;;;;;;:40;;;;5402:4;5395:11;;;;5136:327;5446:5;5439:12;;5056:414;;;;;:::o;42548:692::-;42624:4;42740:16;42759:3;:12;;:17;42772:3;42759:17;;;;;;;;;;;;42740:36;;42805:1;42793:8;:13;42789:444;;;42860:3;:12;;42878:38;;;;;;;;42895:3;42878:38;;;;42908:5;42878:38;;;42860:57;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;42860:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43075:3;:12;;:19;;;;43055:3;:12;;:17;43068:3;43055:17;;;;;;;;;;;:39;;;;43116:4;43109:11;;;;;42789:444;43189:5;43153:3;:12;;43177:1;43166:8;:12;43153:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;43216:5;43209:12;;;42548:692;;;;;;:::o;43415:1549::-;43479:4;43595:16;43614:3;:12;;:17;43627:3;43614:17;;;;;;;;;;;;43595:36;;43660:1;43648:8;:13;43644:1313;;44009:21;44044:1;44033:8;:12;44009:36;;44060:17;44102:1;44080:3;:12;;:19;;;;:23;44060:43;;44348:26;44377:3;:12;;44390:9;44377:23;;;;;;;;;;;;;;;;;;44348:52;;44525:9;44495:3;:12;;44508:13;44495:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;44649:1;44633:13;:17;44602:3;:12;;:28;44615:9;:14;;;44602:28;;;;;;;;;;;:48;;;;44759:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44855:3;:12;;:17;44868:3;44855:17;;;;;;;;;;;44848:24;;;44896:4;44889:11;;;;;;;;43644:1313;44940:5;44933:12;;;43415:1549;;;;;:::o;12221:422::-;12281:4;12489:12;12600:7;12588:20;12580:28;;12634:1;12627:4;:8;12620:15;;;12221:422;;;:::o;15139:196::-;15242:12;15274:53;15297:6;15305:4;15311:1;15314:12;15274:22;:53::i;:::-;15267:60;;15139:196;;;;;:::o;16516:979::-;16646:12;16679:18;16690:6;16679:10;:18::i;:::-;16671:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16805:12;16819:23;16846:6;:11;;16866:8;16877:4;16846:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;16846:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;16804:78:0;;;;16897:7;16893:595;;;16928:10;16921:17;;;;;;16893:595;17062:1;17042:10;:17;:21;17038:439;;;17305:10;17299:17;17366:15;17353:10;17349:2;17345:19;17338:44;17253:148;17448:12;17441:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17441:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16516:979;;;;;;;:::o;68881:5740::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://d0c608980f3bf38a0f368df2bd1364ab1abe94a5f1e9f8f6b95c6a6a1a17cc60
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.