Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
161 SHIBASWOW
Holders
60
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SHIBASWOWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SHIBASWOW
Compiler Version
v0.6.3+commit.8dda9521
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-24 */ /** *Submitted for verification at Etherscan.io on 2021-03-22 */ // Sources flattened with hardhat v2.1.1 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // 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]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // 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/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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/math/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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 @openzeppelin/contracts/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @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/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @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/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @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/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File @openzeppelin/contracts/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract 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 virtual 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/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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 Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @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) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ 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(uint160(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(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(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(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File @openzeppelin/contracts/token/ERC721/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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 virtual 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 virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, 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 virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual 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 virtual 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 = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.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 = ERC721.ownerOf(tokenId); // internal owner _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(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @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/token/ERC721/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC721/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } } // File @openzeppelin/contracts/presets/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev {ERC721} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * - token ID and URI autogeneration * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC721PresetMinterPauserAutoId is Context, AccessControl, ERC721Burnable, ERC721Pausable { using Counters for Counters.Counter; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); Counters.Counter private _tokenIdTracker; /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * Token URIs will be autogenerated based on `baseURI` and their token IDs. * See {ERC721-tokenURI}. */ constructor(string memory name, string memory symbol, string memory baseURI) public ERC721(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); _setBaseURI(baseURI); } /** * @dev Creates a new token for `to`. Its token ID will be automatically * assigned (and available on the emitted {IERC721-Transfer} event), and the token * URI autogenerated based on the base URI passed at construction. * * See {ERC721-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint"); // We cannot just use balanceOf to create the new tokenId because tokens // can be burned (destroyed), so we need a separate counter. _mint(to, _tokenIdTracker.current()); _tokenIdTracker.increment(); } /** * @dev Pauses all token transfers. * * See {ERC721Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC721Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } } // File @openzeppelin/contracts/access/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File contracts/ERC721Contract.sol pragma solidity ^0.6.3; contract SHIBASWOW is ERC721PresetMinterPauserAutoId, Ownable { constructor() public // start contract ERC721PresetMinterPauserAutoId("SHIBASWOW", "SHIBASWOW", "APILOCATION") {} string private contURI; uint public constant MAX_SHIBAS = 10000; // in case of need to change the URL of the api to get metadata function setBaseURI(string memory baseURI_) public onlyOwner { _setBaseURI(baseURI_); } function setContractURI(string memory contURI_) public onlyOwner { contURI=contURI_; } function adoptSHIBAS() public payable { require(totalSupply() < MAX_SHIBAS, "Sale has already ended"); require(msg.value == calculatePrice(), "Wrong price!"); _safeMint(msg.sender, totalSupply()); } function withdrawAll() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function contractURI() public view returns (string memory) { return contURI; } function calculatePrice() public view returns (uint256) { require(totalSupply() < MAX_SHIBAS, "Sale has already ended"); uint currentSupply = totalSupply(); if (currentSupply >= 9900) { return 1000000000000000000; } else if (currentSupply >= 9500) { return 640000000000000000; } else if (currentSupply >= 7500) { return 320000000000000000; } else if (currentSupply >= 3500) { return 160000000000000000; } else if (currentSupply >= 1500) { return 80000000000000000; } else if (currentSupply >= 500) { return 40000000000000000; } else { return 20000000000000000; } } function mintPromoTokens() public onlyOwner { //mints the first 30 tokens to Owner account to distribute for promotions for (uint i = 0; i < 30; i++) { _safeMint(address(0x111B78E2A110DF52310B7851B2D6743d93c738dC), i); } } }
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SHIBAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptSHIBAS","outputs":[],"stateMutability":"payable","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPromoTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806009815260200168534849424153574f5760b81b81525060405180604001604052806009815260200168534849424153574f5760b81b8152506040518060400160405280600b81526020016a20a824a627a1a0aa24a7a760a91b8152508282620000946301ffc9a760e01b6200023260201b60201c565b8151620000a990600790602085019062000408565b508051620000bf90600890602084019062000408565b50620000db6380ac58cd60e01b6001600160e01b036200023216565b620000f6635b5e139f60e01b6001600160e01b036200023216565b6200011163780e9d6360e01b6001600160e01b036200023216565b5050600b805460ff19169055620001456000620001366001600160e01b03620002ba16565b6001600160e01b03620002bf16565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b0190206200017d90620001366001600160e01b03620002ba16565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020620001b590620001366001600160e01b03620002ba16565b620001c9816001600160e01b03620002d816565b5050506000620001de620002ba60201b60201c565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620004aa565b6001600160e01b0319808216141562000292576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b335b90565b620002d482826001600160e01b03620002ed16565b5050565b8051620002d490600a90602084019062000408565b60008281526020818152604090912062000312918390620025656200036f821b17901c565b15620002d4576200032b6001600160e01b03620002ba16565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006200038f836001600160a01b0384166001600160e01b036200039816565b90505b92915050565b6000620003af83836001600160e01b03620003f016565b620003e75750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000392565b50600062000392565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200044b57805160ff19168380011785556200047b565b828001600101855582156200047b579182015b828111156200047b5782518255916020019190600101906200045e565b50620004899291506200048d565b5090565b620002bc91905b8082111562000489576000815560010162000494565b6132a580620004ba6000396000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063b88d4fde116100b6578063d547741f1161007a578063d547741f14610a42578063daec9b1814610a7b578063e63ab1e914610a90578063e8a3d48514610aa5578063e985e9c514610aba578063f2fde38b14610af55761025c565b8063b88d4fde146108f1578063c87b56dd146109c4578063ca15c873146109ee578063d348b40914610a18578063d539139314610a2d5761025c565b806391abfb221161010857806391abfb221461079857806391d14854146107a0578063938e3d7b146107d957806395d89b411461088c578063a217fddf146108a1578063a22cb465146108b65761025c565b8063715018a6146107215780638456cb5914610736578063853828b61461074b5780638da5cb5b146107535780639010d07c146107685761025c565b80633f4ba83a116101dd5780635c975abb116101a15780635c975abb146106525780635fbae649146106675780636352211e1461067c5780636a627842146106a65780636c0360eb146106d957806370a08231146106ee5761025c565b80633f4ba83a146104f357806342842e0e1461050857806342966c681461054b5780634f6ccce71461057557806355f804b31461059f5761025c565b806323b872dd1161022457806323b872dd146103db578063248a9ca31461041e5780632f2ff15d146104485780632f745c591461048157806336568abe146104ba5761025c565b806301ffc9a71461026157806306fdde03146102a9578063081812fc14610333578063095ea7b31461037957806318160ddd146103b4575b600080fd5b34801561026d57600080fd5b506102956004803603602081101561028457600080fd5b50356001600160e01b031916610b28565b604080519115158252519081900360200190f35b3480156102b557600080fd5b506102be610b4b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f85781810151838201526020016102e0565b50505050905090810190601f1680156103255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033f57600080fd5b5061035d6004803603602081101561035657600080fd5b5035610be2565b604080516001600160a01b039092168252519081900360200190f35b34801561038557600080fd5b506103b26004803603604081101561039c57600080fd5b506001600160a01b038135169060200135610c44565b005b3480156103c057600080fd5b506103c9610d1f565b60408051918252519081900360200190f35b3480156103e757600080fd5b506103b2600480360360608110156103fe57600080fd5b506001600160a01b03813581169160208101359091169060400135610d30565b34801561042a57600080fd5b506103c96004803603602081101561044157600080fd5b5035610d87565b34801561045457600080fd5b506103b26004803603604081101561046b57600080fd5b50803590602001356001600160a01b0316610d9c565b34801561048d57600080fd5b506103c9600480360360408110156104a457600080fd5b506001600160a01b038135169060200135610e08565b3480156104c657600080fd5b506103b2600480360360408110156104dd57600080fd5b50803590602001356001600160a01b0316610e39565b3480156104ff57600080fd5b506103b2610e9a565b34801561051457600080fd5b506103b26004803603606081101561052b57600080fd5b506001600160a01b03813581169160208101359091169060400135610f0b565b34801561055757600080fd5b506103b26004803603602081101561056e57600080fd5b5035610f26565b34801561058157600080fd5b506103c96004803603602081101561059857600080fd5b5035610f78565b3480156105ab57600080fd5b506103b2600480360360208110156105c257600080fd5b8101906020810181356401000000008111156105dd57600080fd5b8201836020820111156105ef57600080fd5b8035906020019184600183028401116401000000008311171561061157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f94945050505050565b34801561065e57600080fd5b50610295610fff565b34801561067357600080fd5b506103c9611008565b34801561068857600080fd5b5061035d6004803603602081101561069f57600080fd5b503561100e565b3480156106b257600080fd5b506103b2600480360360208110156106c957600080fd5b50356001600160a01b031661103c565b3480156106e557600080fd5b506102be6110c0565b3480156106fa57600080fd5b506103c96004803603602081101561071157600080fd5b50356001600160a01b0316611121565b34801561072d57600080fd5b506103b2611189565b34801561074257600080fd5b506103b2611235565b6103b26112a4565b34801561075f57600080fd5b5061035d61132a565b34801561077457600080fd5b5061035d6004803603604081101561078b57600080fd5b5080359060200135611339565b6103b2611357565b3480156107ac57600080fd5b50610295600480360360408110156107c357600080fd5b50803590602001356001600160a01b0316611408565b3480156107e557600080fd5b506103b2600480360360208110156107fc57600080fd5b81019060208101813564010000000081111561081757600080fd5b82018360208201111561082957600080fd5b8035906020019184600183028401116401000000008311171561084b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611426945050505050565b34801561089857600080fd5b506102be61149b565b3480156108ad57600080fd5b506103c96114fc565b3480156108c257600080fd5b506103b2600480360360408110156108d957600080fd5b506001600160a01b0381351690602001351515611501565b3480156108fd57600080fd5b506103b26004803603608081101561091457600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561094f57600080fd5b82018360208201111561096157600080fd5b8035906020019184600183028401116401000000008311171561098357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611606945050505050565b3480156109d057600080fd5b506102be600480360360208110156109e757600080fd5b5035611664565b3480156109fa57600080fd5b506103c960048036036020811015610a1157600080fd5b50356118e7565b348015610a2457600080fd5b506103c96118fe565b348015610a3957600080fd5b506103c9611a11565b348015610a4e57600080fd5b506103b260048036036040811015610a6557600080fd5b50803590602001356001600160a01b0316611a34565b348015610a8757600080fd5b506103b2611a8d565b348015610a9c57600080fd5b506103c9611b21565b348015610ab157600080fd5b506102be611b44565b348015610ac657600080fd5b5061029560048036036040811015610add57600080fd5b506001600160a01b0381358116916020013516611ba5565b348015610b0157600080fd5b506103b260048036036020811015610b1857600080fd5b50356001600160a01b0316611bd3565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bd75780601f10610bac57610100808354040283529160200191610bd7565b820191906000526020600020905b815481529060010190602001808311610bba57829003601f168201915b505050505090505b90565b6000610bed82611cd6565b610c285760405162461bcd60e51b815260040180806020018281038252602c81526020018061309e602c913960400191505060405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610c4f8261100e565b9050806001600160a01b0316836001600160a01b03161415610ca25760405162461bcd60e51b81526004018080602001828103825260218152602001806131426021913960400191505060405180910390fd5b806001600160a01b0316610cb4611ce9565b6001600160a01b03161480610cd55750610cd581610cd0611ce9565b611ba5565b610d105760405162461bcd60e51b8152600401808060200182810382526038815260200180612ff16038913960400191505060405180910390fd5b610d1a8383611ced565b505050565b6000610d2b6003611d5b565b905090565b610d41610d3b611ce9565b82611d66565b610d7c5760405162461bcd60e51b81526004018080602001828103825260318152602001806131636031913960400191505060405180910390fd5b610d1a838383611e0a565b60009081526020819052604090206002015490565b600082815260208190526040902060020154610dbf90610dba611ce9565b611408565b610dfa5760405162461bcd60e51b815260040180806020018281038252602f815260200180612eac602f913960400191505060405180910390fd5b610e048282611f68565b5050565b6001600160a01b0382166000908152600260205260408120610e30908363ffffffff611fd716565b90505b92915050565b610e41611ce9565b6001600160a01b0316816001600160a01b031614610e905760405162461bcd60e51b815260040180806020018281038252602f815260200180613241602f913960400191505060405180910390fd5b610e048282611fe3565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020610ec690610dba611ce9565b610f015760405162461bcd60e51b81526004018080602001828103825260408152602001806132016040913960400191505060405180910390fd5b610f09612052565b565b610d1a83838360405180602001604052806000815250611606565b610f31610d3b611ce9565b610f6c5760405162461bcd60e51b81526004018080602001828103825260308152602001806131d16030913960400191505060405180910390fd5b610f75816120f2565b50565b600080610f8c60038463ffffffff6121cb16565b509392505050565b610f9c611ce9565b6001600160a01b0316610fad61132a565b6001600160a01b031614610ff6576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b610f75816121e7565b600b5460ff1690565b61271081565b6000610e3382604051806060016040528060298152602001613053602991396003919063ffffffff6121fa16565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061106890610dba611ce9565b6110a35760405162461bcd60e51b815260040180806020018281038252603d815260200180613194603d913960400191505060405180910390fd5b6110b6816110b1600c612211565b612215565b610f75600c61234f565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bd75780601f10610bac57610100808354040283529160200191610bd7565b60006001600160a01b0382166111685760405162461bcd60e51b815260040180806020018281038252602a815260200180613029602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600260205260409020610e3390611d5b565b611191611ce9565b6001600160a01b03166111a261132a565b6001600160a01b0316146111eb576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b604080516a5041555345525f524f4c4560a81b8152905190819003600b01902061126190610dba611ce9565b61129c5760405162461bcd60e51b815260040180806020018281038252603e815260200180612f33603e913960400191505060405180910390fd5b610f09612358565b6112ac611ce9565b6001600160a01b03166112bd61132a565b6001600160a01b031614611306576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f19350505050610f0957600080fd5b600d546001600160a01b031690565b6000828152602081905260408120610e30908363ffffffff611fd716565b612710611362610d1f565b106113ad576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b6113b56118fe565b34146113f7576040805162461bcd60e51b815260206004820152600c60248201526b57726f6e672070726963652160a01b604482015290519081900360640190fd5b610f0933611403610d1f565b6123db565b6000828152602081905260408120610e30908363ffffffff6123f516565b61142e611ce9565b6001600160a01b031661143f61132a565b6001600160a01b031614611488576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b8051610e0490600e906020840190612d8a565b60088054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bd75780601f10610bac57610100808354040283529160200191610bd7565b600081565b611509611ce9565b6001600160a01b0316826001600160a01b0316141561156f576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806006600061157c611ce9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115c0611ce9565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b611617611611611ce9565b83611d66565b6116525760405162461bcd60e51b81526004018080602001828103825260318152602001806131636031913960400191505060405180910390fd5b61165e8484848461240a565b50505050565b606061166f82611cd6565b6116aa5760405162461bcd60e51b815260040180806020018281038252602f815260200180613113602f913960400191505060405180910390fd5b60008281526009602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561173f5780601f106117145761010080835404028352916020019161173f565b820191906000526020600020905b81548152906001019060200180831161172257829003601f168201915b5050505050905060606117506110c0565b905080516000141561176457509050610b46565b8151156118255780826040516020018083805190602001908083835b6020831061179f5780518252601f199092019160209182019101611780565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106117e75780518252601f1990920191602091820191016117c8565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610b46565b8061182f8561245c565b6040516020018083805190602001908083835b602083106118615780518252601f199092019160209182019101611842565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106118a95780518252601f19909201916020918201910161188a565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6000818152602081905260408120610e3390611d5b565b600061271061190b610d1f565b10611956576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b6000611960610d1f565b90506126ac811061197c57670de0b6b3a7640000915050610bdf565b61251c8110611996576708e1bc9bf0400000915050610bdf565b611d4c81106119b057670470de4df8200000915050610bdf565b610dac81106119ca576702386f26fc100000915050610bdf565b6105dc81106119e45767011c37937e080000915050610bdf565b6101f481106119fd57668e1bc9bf040000915050610bdf565b66470de4df820000915050610bdf565b5090565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902081565b600082815260208190526040902060020154611a5290610dba611ce9565b610e905760405162461bcd60e51b8152600401808060200182810382526030815260200180612fc16030913960400191505060405180910390fd5b611a95611ce9565b6001600160a01b0316611aa661132a565b6001600160a01b031614611aef576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b60005b601e811015610f7557611b1973111b78e2a110df52310b7851b2d6743d93c738dc826123db565b600101611af2565b604080516a5041555345525f524f4c4560a81b8152905190819003600b01902081565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bd75780601f10610bac57610100808354040283529160200191610bd7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b611bdb611ce9565b6001600160a01b0316611bec61132a565b6001600160a01b031614611c35576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b6001600160a01b038116611c7a5760405162461bcd60e51b8152600401808060200182810382526026815260200180612f0d6026913960400191505060405180910390fd5b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e3360038363ffffffff61252016565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d228261100e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e3382612211565b6000611d7182611cd6565b611dac5760405162461bcd60e51b815260040180806020018281038252602c815260200180612f95602c913960400191505060405180910390fd5b6000611db78361100e565b9050806001600160a01b0316846001600160a01b03161480611df25750836001600160a01b0316611de784610be2565b6001600160a01b0316145b80611e025750611e028185611ba5565b949350505050565b826001600160a01b0316611e1d8261100e565b6001600160a01b031614611e625760405162461bcd60e51b81526004018080602001828103825260298152602001806130ea6029913960400191505060405180910390fd5b6001600160a01b038216611ea75760405162461bcd60e51b8152600401808060200182810382526024815260200180612f716024913960400191505060405180910390fd5b611eb283838361252c565b611ebd600082611ced565b6001600160a01b0383166000908152600260205260409020611ee5908263ffffffff61253716565b506001600160a01b0382166000908152600260205260409020611f0e908263ffffffff61254316565b50611f216003828463ffffffff61254f16565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000828152602081905260409020611f86908263ffffffff61256516565b15610e0457611f93611ce9565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610e30838361257a565b6000828152602081905260409020612001908263ffffffff6125de16565b15610e045761200e611ce9565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b61205a610fff565b6120a2576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120d5611ce9565b604080516001600160a01b039092168252519081900360200190a1565b60006120fd8261100e565b905061210b8160008461252c565b612116600083611ced565b600082815260096020526040902054600260001961010060018416150201909116041561215457600082815260096020526040812061215491612e04565b6001600160a01b038116600090815260026020526040902061217c908363ffffffff61253716565b5061218e60038363ffffffff6125f316565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008080806121da86866125ff565b9097909650945050505050565b8051610e0490600a906020840190612d8a565b600061220784848461267a565b90505b9392505050565b5490565b6001600160a01b038216612270576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61227981611cd6565b156122cb576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6122d76000838361252c565b6001600160a01b03821660009081526002602052604090206122ff908263ffffffff61254316565b506123126003828463ffffffff61254f16565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b612360610fff565b156123a5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120d5611ce9565b610e04828260405180602001604052806000815250612744565b6000610e30836001600160a01b038416612796565b612415848484611e0a565b612421848484846127ae565b61165e5760405162461bcd60e51b8152600401808060200182810382526032815260200180612edb6032913960400191505060405180910390fd5b60608161248157506040805180820190915260018152600360fc1b6020820152610b46565b8160005b811561249957600101600a82049150612485565b6060816040519080825280601f01601f1916602001820160405280156124c6576020820181803683370190505b50859350905060001982015b831561251757600a840660300160f81b828280600190039350815181106124f557fe5b60200101906001600160f81b031916908160001a905350600a840493506124d2565b50949350505050565b6000610e308383612796565b610d1a83838361292e565b6000610e30838361297d565b6000610e308383612a43565b600061220784846001600160a01b038516612a8d565b6000610e30836001600160a01b038416612a43565b815460009082106125bc5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e5f6022913960400191505060405180910390fd5b8260000182815481106125cb57fe5b9060005260206000200154905092915050565b6000610e30836001600160a01b03841661297d565b6000610e308383612b24565b8154600090819083106126435760405162461bcd60e51b815260040180806020018281038252602281526020018061307c6022913960400191505060405180910390fd5b600084600001848154811061265457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816127155760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126da5781810151838201526020016126c2565b50505050905090810190601f1680156127075780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061272857fe5b9060005260206000209060020201600101549150509392505050565b61274e8383612215565b61275b60008484846127ae565b610d1a5760405162461bcd60e51b8152600401808060200182810382526032815260200180612edb6032913960400191505060405180910390fd5b60009081526001919091016020526040902054151590565b60006127c2846001600160a01b0316612bf8565b6127ce57506001611e02565b60606128f4630a85bd0160e11b6127e3611ce9565b88878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561285c578181015183820152602001612844565b50505050905090810190601f1680156128895780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612edb603291396001600160a01b038816919063ffffffff612bfe16565b9050600081806020019051602081101561290d57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b612939838383610d1a565b612941610fff565b15610d1a5760405162461bcd60e51b815260040180806020018281038252602b815260200180612e81602b913960400191505060405180910390fd5b60008181526001830160205260408120548015612a3957835460001980830191908101906000908790839081106129b057fe5b90600052602060002001549050808760000184815481106129cd57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806129fd57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e33565b6000915050610e33565b6000612a4f8383612796565b612a8557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e33565b506000610e33565b600082815260018401602052604081205480612af257505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561220a565b82856000016001830381548110612b0557fe5b906000526020600020906002020160010181905550600091505061220a565b60008181526001830160205260408120548015612a395783546000198083019190810190600090879083908110612b5757fe5b9060005260206000209060020201905080876000018481548110612b7757fe5b600091825260208083208454600290930201918255600193840154918401919091558354825289830190526040902090840190558654879080612bb657fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610e339350505050565b3b151590565b6060612207848460008585612c1285612bf8565b612c63576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612ca25780518252601f199092019160209182019101612c83565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612d04576040519150601f19603f3d011682016040523d82523d6000602084013e612d09565b606091505b5091509150612d19828286612d24565b979650505050505050565b60608315612d3357508161220a565b825115612d435782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156126da5781810151838201526020016126c2565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612dcb57805160ff1916838001178555612df8565b82800160010185558215612df8579182015b82811115612df8578251825591602001919060010190612ddd565b50611a0d929150612e44565b50805460018160011615610100020316600290046000825580601f10612e2a5750610f75565b601f016020900490600052602060002090810190610f7591905b610bdf91905b80821115611a0d5760008155600101612e4a56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732315061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732315072657365744d696e7465725061757365724175746f49643a206d75737420686176652070617573657220726f6c6520746f2070617573654552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732315072657365744d696e7465725061757365724175746f49643a206d7573742068617665206d696e74657220726f6c6520746f206d696e744552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732315072657365744d696e7465725061757365724175746f49643a206d75737420686176652070617573657220726f6c6520746f20756e7061757365416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122068582b367884a60b43248fe0f9bd3d22e05dd9c46a1e43977465f15813f612d564736f6c63430006030033
Deployed Bytecode
0x60806040526004361061025c5760003560e01c8063715018a611610144578063b88d4fde116100b6578063d547741f1161007a578063d547741f14610a42578063daec9b1814610a7b578063e63ab1e914610a90578063e8a3d48514610aa5578063e985e9c514610aba578063f2fde38b14610af55761025c565b8063b88d4fde146108f1578063c87b56dd146109c4578063ca15c873146109ee578063d348b40914610a18578063d539139314610a2d5761025c565b806391abfb221161010857806391abfb221461079857806391d14854146107a0578063938e3d7b146107d957806395d89b411461088c578063a217fddf146108a1578063a22cb465146108b65761025c565b8063715018a6146107215780638456cb5914610736578063853828b61461074b5780638da5cb5b146107535780639010d07c146107685761025c565b80633f4ba83a116101dd5780635c975abb116101a15780635c975abb146106525780635fbae649146106675780636352211e1461067c5780636a627842146106a65780636c0360eb146106d957806370a08231146106ee5761025c565b80633f4ba83a146104f357806342842e0e1461050857806342966c681461054b5780634f6ccce71461057557806355f804b31461059f5761025c565b806323b872dd1161022457806323b872dd146103db578063248a9ca31461041e5780632f2ff15d146104485780632f745c591461048157806336568abe146104ba5761025c565b806301ffc9a71461026157806306fdde03146102a9578063081812fc14610333578063095ea7b31461037957806318160ddd146103b4575b600080fd5b34801561026d57600080fd5b506102956004803603602081101561028457600080fd5b50356001600160e01b031916610b28565b604080519115158252519081900360200190f35b3480156102b557600080fd5b506102be610b4b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f85781810151838201526020016102e0565b50505050905090810190601f1680156103255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033f57600080fd5b5061035d6004803603602081101561035657600080fd5b5035610be2565b604080516001600160a01b039092168252519081900360200190f35b34801561038557600080fd5b506103b26004803603604081101561039c57600080fd5b506001600160a01b038135169060200135610c44565b005b3480156103c057600080fd5b506103c9610d1f565b60408051918252519081900360200190f35b3480156103e757600080fd5b506103b2600480360360608110156103fe57600080fd5b506001600160a01b03813581169160208101359091169060400135610d30565b34801561042a57600080fd5b506103c96004803603602081101561044157600080fd5b5035610d87565b34801561045457600080fd5b506103b26004803603604081101561046b57600080fd5b50803590602001356001600160a01b0316610d9c565b34801561048d57600080fd5b506103c9600480360360408110156104a457600080fd5b506001600160a01b038135169060200135610e08565b3480156104c657600080fd5b506103b2600480360360408110156104dd57600080fd5b50803590602001356001600160a01b0316610e39565b3480156104ff57600080fd5b506103b2610e9a565b34801561051457600080fd5b506103b26004803603606081101561052b57600080fd5b506001600160a01b03813581169160208101359091169060400135610f0b565b34801561055757600080fd5b506103b26004803603602081101561056e57600080fd5b5035610f26565b34801561058157600080fd5b506103c96004803603602081101561059857600080fd5b5035610f78565b3480156105ab57600080fd5b506103b2600480360360208110156105c257600080fd5b8101906020810181356401000000008111156105dd57600080fd5b8201836020820111156105ef57600080fd5b8035906020019184600183028401116401000000008311171561061157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f94945050505050565b34801561065e57600080fd5b50610295610fff565b34801561067357600080fd5b506103c9611008565b34801561068857600080fd5b5061035d6004803603602081101561069f57600080fd5b503561100e565b3480156106b257600080fd5b506103b2600480360360208110156106c957600080fd5b50356001600160a01b031661103c565b3480156106e557600080fd5b506102be6110c0565b3480156106fa57600080fd5b506103c96004803603602081101561071157600080fd5b50356001600160a01b0316611121565b34801561072d57600080fd5b506103b2611189565b34801561074257600080fd5b506103b2611235565b6103b26112a4565b34801561075f57600080fd5b5061035d61132a565b34801561077457600080fd5b5061035d6004803603604081101561078b57600080fd5b5080359060200135611339565b6103b2611357565b3480156107ac57600080fd5b50610295600480360360408110156107c357600080fd5b50803590602001356001600160a01b0316611408565b3480156107e557600080fd5b506103b2600480360360208110156107fc57600080fd5b81019060208101813564010000000081111561081757600080fd5b82018360208201111561082957600080fd5b8035906020019184600183028401116401000000008311171561084b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611426945050505050565b34801561089857600080fd5b506102be61149b565b3480156108ad57600080fd5b506103c96114fc565b3480156108c257600080fd5b506103b2600480360360408110156108d957600080fd5b506001600160a01b0381351690602001351515611501565b3480156108fd57600080fd5b506103b26004803603608081101561091457600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561094f57600080fd5b82018360208201111561096157600080fd5b8035906020019184600183028401116401000000008311171561098357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611606945050505050565b3480156109d057600080fd5b506102be600480360360208110156109e757600080fd5b5035611664565b3480156109fa57600080fd5b506103c960048036036020811015610a1157600080fd5b50356118e7565b348015610a2457600080fd5b506103c96118fe565b348015610a3957600080fd5b506103c9611a11565b348015610a4e57600080fd5b506103b260048036036040811015610a6557600080fd5b50803590602001356001600160a01b0316611a34565b348015610a8757600080fd5b506103b2611a8d565b348015610a9c57600080fd5b506103c9611b21565b348015610ab157600080fd5b506102be611b44565b348015610ac657600080fd5b5061029560048036036040811015610add57600080fd5b506001600160a01b0381358116916020013516611ba5565b348015610b0157600080fd5b506103b260048036036020811015610b1857600080fd5b50356001600160a01b0316611bd3565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bd75780601f10610bac57610100808354040283529160200191610bd7565b820191906000526020600020905b815481529060010190602001808311610bba57829003601f168201915b505050505090505b90565b6000610bed82611cd6565b610c285760405162461bcd60e51b815260040180806020018281038252602c81526020018061309e602c913960400191505060405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610c4f8261100e565b9050806001600160a01b0316836001600160a01b03161415610ca25760405162461bcd60e51b81526004018080602001828103825260218152602001806131426021913960400191505060405180910390fd5b806001600160a01b0316610cb4611ce9565b6001600160a01b03161480610cd55750610cd581610cd0611ce9565b611ba5565b610d105760405162461bcd60e51b8152600401808060200182810382526038815260200180612ff16038913960400191505060405180910390fd5b610d1a8383611ced565b505050565b6000610d2b6003611d5b565b905090565b610d41610d3b611ce9565b82611d66565b610d7c5760405162461bcd60e51b81526004018080602001828103825260318152602001806131636031913960400191505060405180910390fd5b610d1a838383611e0a565b60009081526020819052604090206002015490565b600082815260208190526040902060020154610dbf90610dba611ce9565b611408565b610dfa5760405162461bcd60e51b815260040180806020018281038252602f815260200180612eac602f913960400191505060405180910390fd5b610e048282611f68565b5050565b6001600160a01b0382166000908152600260205260408120610e30908363ffffffff611fd716565b90505b92915050565b610e41611ce9565b6001600160a01b0316816001600160a01b031614610e905760405162461bcd60e51b815260040180806020018281038252602f815260200180613241602f913960400191505060405180910390fd5b610e048282611fe3565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020610ec690610dba611ce9565b610f015760405162461bcd60e51b81526004018080602001828103825260408152602001806132016040913960400191505060405180910390fd5b610f09612052565b565b610d1a83838360405180602001604052806000815250611606565b610f31610d3b611ce9565b610f6c5760405162461bcd60e51b81526004018080602001828103825260308152602001806131d16030913960400191505060405180910390fd5b610f75816120f2565b50565b600080610f8c60038463ffffffff6121cb16565b509392505050565b610f9c611ce9565b6001600160a01b0316610fad61132a565b6001600160a01b031614610ff6576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b610f75816121e7565b600b5460ff1690565b61271081565b6000610e3382604051806060016040528060298152602001613053602991396003919063ffffffff6121fa16565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902061106890610dba611ce9565b6110a35760405162461bcd60e51b815260040180806020018281038252603d815260200180613194603d913960400191505060405180910390fd5b6110b6816110b1600c612211565b612215565b610f75600c61234f565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bd75780601f10610bac57610100808354040283529160200191610bd7565b60006001600160a01b0382166111685760405162461bcd60e51b815260040180806020018281038252602a815260200180613029602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600260205260409020610e3390611d5b565b611191611ce9565b6001600160a01b03166111a261132a565b6001600160a01b0316146111eb576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b604080516a5041555345525f524f4c4560a81b8152905190819003600b01902061126190610dba611ce9565b61129c5760405162461bcd60e51b815260040180806020018281038252603e815260200180612f33603e913960400191505060405180910390fd5b610f09612358565b6112ac611ce9565b6001600160a01b03166112bd61132a565b6001600160a01b031614611306576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f19350505050610f0957600080fd5b600d546001600160a01b031690565b6000828152602081905260408120610e30908363ffffffff611fd716565b612710611362610d1f565b106113ad576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b6113b56118fe565b34146113f7576040805162461bcd60e51b815260206004820152600c60248201526b57726f6e672070726963652160a01b604482015290519081900360640190fd5b610f0933611403610d1f565b6123db565b6000828152602081905260408120610e30908363ffffffff6123f516565b61142e611ce9565b6001600160a01b031661143f61132a565b6001600160a01b031614611488576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b8051610e0490600e906020840190612d8a565b60088054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bd75780601f10610bac57610100808354040283529160200191610bd7565b600081565b611509611ce9565b6001600160a01b0316826001600160a01b0316141561156f576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806006600061157c611ce9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115c0611ce9565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b611617611611611ce9565b83611d66565b6116525760405162461bcd60e51b81526004018080602001828103825260318152602001806131636031913960400191505060405180910390fd5b61165e8484848461240a565b50505050565b606061166f82611cd6565b6116aa5760405162461bcd60e51b815260040180806020018281038252602f815260200180613113602f913960400191505060405180910390fd5b60008281526009602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561173f5780601f106117145761010080835404028352916020019161173f565b820191906000526020600020905b81548152906001019060200180831161172257829003601f168201915b5050505050905060606117506110c0565b905080516000141561176457509050610b46565b8151156118255780826040516020018083805190602001908083835b6020831061179f5780518252601f199092019160209182019101611780565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106117e75780518252601f1990920191602091820191016117c8565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610b46565b8061182f8561245c565b6040516020018083805190602001908083835b602083106118615780518252601f199092019160209182019101611842565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106118a95780518252601f19909201916020918201910161188a565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6000818152602081905260408120610e3390611d5b565b600061271061190b610d1f565b10611956576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b6000611960610d1f565b90506126ac811061197c57670de0b6b3a7640000915050610bdf565b61251c8110611996576708e1bc9bf0400000915050610bdf565b611d4c81106119b057670470de4df8200000915050610bdf565b610dac81106119ca576702386f26fc100000915050610bdf565b6105dc81106119e45767011c37937e080000915050610bdf565b6101f481106119fd57668e1bc9bf040000915050610bdf565b66470de4df820000915050610bdf565b5090565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902081565b600082815260208190526040902060020154611a5290610dba611ce9565b610e905760405162461bcd60e51b8152600401808060200182810382526030815260200180612fc16030913960400191505060405180910390fd5b611a95611ce9565b6001600160a01b0316611aa661132a565b6001600160a01b031614611aef576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b60005b601e811015610f7557611b1973111b78e2a110df52310b7851b2d6743d93c738dc826123db565b600101611af2565b604080516a5041555345525f524f4c4560a81b8152905190819003600b01902081565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bd75780601f10610bac57610100808354040283529160200191610bd7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b611bdb611ce9565b6001600160a01b0316611bec61132a565b6001600160a01b031614611c35576040805162461bcd60e51b815260206004820181905260248201526000805160206130ca833981519152604482015290519081900360640190fd5b6001600160a01b038116611c7a5760405162461bcd60e51b8152600401808060200182810382526026815260200180612f0d6026913960400191505060405180910390fd5b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e3360038363ffffffff61252016565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d228261100e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e3382612211565b6000611d7182611cd6565b611dac5760405162461bcd60e51b815260040180806020018281038252602c815260200180612f95602c913960400191505060405180910390fd5b6000611db78361100e565b9050806001600160a01b0316846001600160a01b03161480611df25750836001600160a01b0316611de784610be2565b6001600160a01b0316145b80611e025750611e028185611ba5565b949350505050565b826001600160a01b0316611e1d8261100e565b6001600160a01b031614611e625760405162461bcd60e51b81526004018080602001828103825260298152602001806130ea6029913960400191505060405180910390fd5b6001600160a01b038216611ea75760405162461bcd60e51b8152600401808060200182810382526024815260200180612f716024913960400191505060405180910390fd5b611eb283838361252c565b611ebd600082611ced565b6001600160a01b0383166000908152600260205260409020611ee5908263ffffffff61253716565b506001600160a01b0382166000908152600260205260409020611f0e908263ffffffff61254316565b50611f216003828463ffffffff61254f16565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000828152602081905260409020611f86908263ffffffff61256516565b15610e0457611f93611ce9565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610e30838361257a565b6000828152602081905260409020612001908263ffffffff6125de16565b15610e045761200e611ce9565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b61205a610fff565b6120a2576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120d5611ce9565b604080516001600160a01b039092168252519081900360200190a1565b60006120fd8261100e565b905061210b8160008461252c565b612116600083611ced565b600082815260096020526040902054600260001961010060018416150201909116041561215457600082815260096020526040812061215491612e04565b6001600160a01b038116600090815260026020526040902061217c908363ffffffff61253716565b5061218e60038363ffffffff6125f316565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008080806121da86866125ff565b9097909650945050505050565b8051610e0490600a906020840190612d8a565b600061220784848461267a565b90505b9392505050565b5490565b6001600160a01b038216612270576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61227981611cd6565b156122cb576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6122d76000838361252c565b6001600160a01b03821660009081526002602052604090206122ff908263ffffffff61254316565b506123126003828463ffffffff61254f16565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b612360610fff565b156123a5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120d5611ce9565b610e04828260405180602001604052806000815250612744565b6000610e30836001600160a01b038416612796565b612415848484611e0a565b612421848484846127ae565b61165e5760405162461bcd60e51b8152600401808060200182810382526032815260200180612edb6032913960400191505060405180910390fd5b60608161248157506040805180820190915260018152600360fc1b6020820152610b46565b8160005b811561249957600101600a82049150612485565b6060816040519080825280601f01601f1916602001820160405280156124c6576020820181803683370190505b50859350905060001982015b831561251757600a840660300160f81b828280600190039350815181106124f557fe5b60200101906001600160f81b031916908160001a905350600a840493506124d2565b50949350505050565b6000610e308383612796565b610d1a83838361292e565b6000610e30838361297d565b6000610e308383612a43565b600061220784846001600160a01b038516612a8d565b6000610e30836001600160a01b038416612a43565b815460009082106125bc5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e5f6022913960400191505060405180910390fd5b8260000182815481106125cb57fe5b9060005260206000200154905092915050565b6000610e30836001600160a01b03841661297d565b6000610e308383612b24565b8154600090819083106126435760405162461bcd60e51b815260040180806020018281038252602281526020018061307c6022913960400191505060405180910390fd5b600084600001848154811061265457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816127155760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126da5781810151838201526020016126c2565b50505050905090810190601f1680156127075780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061272857fe5b9060005260206000209060020201600101549150509392505050565b61274e8383612215565b61275b60008484846127ae565b610d1a5760405162461bcd60e51b8152600401808060200182810382526032815260200180612edb6032913960400191505060405180910390fd5b60009081526001919091016020526040902054151590565b60006127c2846001600160a01b0316612bf8565b6127ce57506001611e02565b60606128f4630a85bd0160e11b6127e3611ce9565b88878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561285c578181015183820152602001612844565b50505050905090810190601f1680156128895780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612edb603291396001600160a01b038816919063ffffffff612bfe16565b9050600081806020019051602081101561290d57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b612939838383610d1a565b612941610fff565b15610d1a5760405162461bcd60e51b815260040180806020018281038252602b815260200180612e81602b913960400191505060405180910390fd5b60008181526001830160205260408120548015612a3957835460001980830191908101906000908790839081106129b057fe5b90600052602060002001549050808760000184815481106129cd57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806129fd57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e33565b6000915050610e33565b6000612a4f8383612796565b612a8557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e33565b506000610e33565b600082815260018401602052604081205480612af257505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561220a565b82856000016001830381548110612b0557fe5b906000526020600020906002020160010181905550600091505061220a565b60008181526001830160205260408120548015612a395783546000198083019190810190600090879083908110612b5757fe5b9060005260206000209060020201905080876000018481548110612b7757fe5b600091825260208083208454600290930201918255600193840154918401919091558354825289830190526040902090840190558654879080612bb657fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610e339350505050565b3b151590565b6060612207848460008585612c1285612bf8565b612c63576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612ca25780518252601f199092019160209182019101612c83565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612d04576040519150601f19603f3d011682016040523d82523d6000602084013e612d09565b606091505b5091509150612d19828286612d24565b979650505050505050565b60608315612d3357508161220a565b825115612d435782518084602001fd5b60405162461bcd60e51b81526020600482018181528451602484015284518593919283926044019190850190808383600083156126da5781810151838201526020016126c2565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612dcb57805160ff1916838001178555612df8565b82800160010185558215612df8579182015b82811115612df8578251825591602001919060010190612ddd565b50611a0d929150612e44565b50805460018160011615610100020316600290046000825580601f10612e2a5750610f75565b601f016020900490600052602060002090810190610f7591905b610bdf91905b80821115611a0d5760008155600101612e4a56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732315061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732315072657365744d696e7465725061757365724175746f49643a206d75737420686176652070617573657220726f6c6520746f2070617573654552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732315072657365744d696e7465725061757365724175746f49643a206d7573742068617665206d696e74657220726f6c6520746f206d696e744552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732315072657365744d696e7465725061757365724175746f49643a206d75737420686176652070617573657220726f6c6520746f20756e7061757365416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122068582b367884a60b43248fe0f9bd3d22e05dd9c46a1e43977465f15813f612d564736f6c63430006030033
Deployed Bytecode Sourcemap
84115:2150:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;45116:150:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45116:150:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45116:150:0;-1:-1:-1;;;;;;45116:150:0;;:::i;:::-;;;;;;;;;;;;;;;;;;61322:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61322:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8::-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;61322:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64108:221;;5:9:-1;2:2;;;27:1;24;17:12;2:2;64108:221:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;64108:221:0;;:::i;:::-;;;;-1:-1:-1;;;;;64108:221:0;;;;;;;;;;;;;;63638:404;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63638:404:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;63638:404:0;;;;;;;;:::i;:::-;;63116:211;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63116:211:0;;;:::i;:::-;;;;;;;;;;;;;;;;64998:305;;5:9:-1;2:2;;;27:1;24;17:12;2:2;64998:305:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;64998:305:0;;;;;;;;;;;;;;;;;:::i;23360:114::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23360:114:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23360:114:0;;:::i;23736:227::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23736:227:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23736:227:0;;;;;;-1:-1:-1;;;;;23736:227:0;;:::i;62878:162::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;62878:162:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;62878:162:0;;;;;;;;:::i;24945:209::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24945:209:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24945:209:0;;;;;;-1:-1:-1;;;;;24945:209:0;;:::i;81302:185::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;81302:185:0;;;:::i;65374:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;65374:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;65374:151:0;;;;;;;;;;;;;;;;;:::i;74762:245::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;74762:245:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;74762:245:0;;:::i;63404:172::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63404:172:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63404:172:0;;:::i;84481:101::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;84481:101:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;84481:101:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;84481:101:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;84481:101: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;84481:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;84481:101:0;;-1:-1:-1;84481:101:0;;-1:-1:-1;;;;;84481:101:0:i;76140:86::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;76140:86:0;;;:::i;84364:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;84364:39:0;;;:::i;61078:177::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61078:177:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61078:177:0;;:::i;80282:407::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;80282:407:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;80282:407:0;-1:-1:-1;;;;;80282:407:0;;:::i;62697:97::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;62697:97:0;;;:::i;60795:221::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;60795:221:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60795:221:0;-1:-1:-1;;;;;60795:221:0;;:::i;83490:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;83490:148:0;;;:::i;80904:179::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;80904:179:0;;;:::i;84969:123::-;;;:::i;82839:87::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;82839:87:0;;;:::i;23033:138::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23033:138:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23033:138:0;;;;;;;:::i;84695:234::-;;;:::i;21994:139::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21994:139:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21994:139:0;;;;;;-1:-1:-1;;;;;21994:139:0;;:::i;84588:100::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;84588:100:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;84588:100:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;84588:100:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;84588:100: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;84588:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;84588:100:0;;-1:-1:-1;84588:100:0;;-1:-1:-1;;;;;84588:100:0:i;61491:104::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61491:104:0;;;:::i;20739:49::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20739:49:0;;;:::i;64401:295::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;64401:295:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;64401:295:0;;;;;;;;;;:::i;65596:285::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;65596:285:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;65596:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;65596:285:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;65596: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;65596:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;65596:285:0;;-1:-1:-1;65596:285:0;;-1:-1:-1;;;;;65596:285:0:i;61666:792::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61666:792:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;61666:792:0;;:::i;22307:127::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22307:127:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22307:127:0;;:::i;85208:764::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;85208:764:0;;;:::i;79144:62::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79144:62:0;;;:::i;24208:230::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24208:230:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24208:230:0;;;;;;-1:-1:-1;;;;;24208:230:0;;:::i;85990:272::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;85990:272:0;;;:::i;79213:62::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;79213:62:0;;;:::i;85098:92::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;85098:92:0;;;:::i;64767:164::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;64767:164:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;64767:164:0;;;;;;;;;;:::i;83793:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;83793:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;83793:244:0;-1:-1:-1;;;;;83793:244:0;;:::i;45116:150::-;-1:-1:-1;;;;;;45225:33:0;;45201:4;45225:33;;;:20;:33;;;;;;;;45116:150;;;;:::o;61322:100::-;61409:5;61402:12;;;;;;;;-1:-1:-1;;61402:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61376:13;;61402:12;;61409:5;;61402:12;;61409:5;61402:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61322:100;;:::o;64108:221::-;64184:7;64212:16;64220:7;64212;:16::i;:::-;64204:73;;;;-1:-1:-1;;;64204:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64297:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;64297:24:0;;64108:221::o;63638:404::-;63719:13;63735:23;63750:7;63735:14;:23::i;:::-;63719:39;;63783:5;-1:-1:-1;;;;;63777:11:0;:2;-1:-1:-1;;;;;63777:11:0;;;63769:57;;;;-1:-1:-1;;;63769:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63863:5;-1:-1:-1;;;;;63847:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;63847:21:0;;:69;;;;63872:44;63896:5;63903:12;:10;:12::i;:::-;63872:23;:44::i;:::-;63839:161;;;;-1:-1:-1;;;63839:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64013:21;64022:2;64026:7;64013:8;:21::i;:::-;63638:404;;;:::o;63116:211::-;63177:7;63298:21;:12;:19;:21::i;:::-;63291:28;;63116:211;:::o;64998:305::-;65159:41;65178:12;:10;:12::i;:::-;65192:7;65159:18;:41::i;:::-;65151:103;;;;-1:-1:-1;;;65151:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65267:28;65277:4;65283:2;65287:7;65267:9;:28::i;23360:114::-;23417:7;23444:12;;;;;;;;;;:22;;;;23360:114::o;23736:227::-;23828:6;:12;;;;;;;;;;:22;;;23820:45;;23852:12;:10;:12::i;:::-;23820:7;:45::i;:::-;23812:105;;;;-1:-1:-1;;;23812:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23930:25;23941:4;23947:7;23930:10;:25::i;:::-;23736:227;;:::o;62878:162::-;-1:-1:-1;;;;;63002:20:0;;62975:7;63002:20;;;:13;:20;;;;;:30;;63026:5;63002:30;:23;:30;:::i;:::-;62995:37;;62878:162;;;;;:::o;24945:209::-;25043:12;:10;:12::i;:::-;-1:-1:-1;;;;;25032:23:0;:7;-1:-1:-1;;;;;25032:23:0;;25024:83;;;;-1:-1:-1;;;25024:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25120:26;25132:4;25138:7;25120:11;:26::i;81302:185::-;79251:24;;;-1:-1:-1;;;79251:24:0;;;;;;;;;;;;81355:34;;81376:12;:10;:12::i;81355:34::-;81347:111;;;;-1:-1:-1;;;81347:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81469:10;:8;:10::i;:::-;81302:185::o;65374:151::-;65478:39;65495:4;65501:2;65505:7;65478:39;;;;;;;;;;;;:16;:39::i;74762:245::-;74880:41;74899:12;:10;:12::i;74880:41::-;74872:102;;;;-1:-1:-1;;;74872:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74985:14;74991:7;74985:5;:14::i;:::-;74762:245;:::o;63404:172::-;63479:7;;63521:22;:12;63537:5;63521:22;:15;:22;:::i;:::-;-1:-1:-1;63499:44:0;63404:172;-1:-1:-1;;;63404:172:0:o;84481:101::-;83070:12;:10;:12::i;:::-;-1:-1:-1;;;;;83059:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;83059:23:0;;83051:68;;;;;-1:-1:-1;;;83051:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;83051:68:0;;;;;;;;;;;;;;;84553:21:::1;84565:8;84553:11;:21::i;76140:86::-:0;76211:7;;;;76140:86;:::o;84364:39::-;84398:5;84364:39;:::o;61078:177::-;61150:7;61177:70;61194:7;61177:70;;;;;;;;;;;;;;;;;:12;;:70;;:16;:70;:::i;80282:407::-;79182:24;;;-1:-1:-1;;;79182:24:0;;;;;;;;;;;;80342:34;;80363:12;:10;:12::i;80342:34::-;80334:108;;;;-1:-1:-1;;;80334:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80607:36;80613:2;80617:25;:15;:23;:25::i;:::-;80607:5;:36::i;:::-;80654:27;:15;:25;:27::i;62697:97::-;62778:8;62771:15;;;;;;;;-1:-1:-1;;62771:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62745:13;;62771:15;;62778:8;;62771:15;;62778:8;62771:15;;;;;;;;;;;;;;;;;;;;;;;;60795:221;60867:7;-1:-1:-1;;;;;60895:19:0;;60887:74;;;;-1:-1:-1;;;60887:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60979:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;83490:148::-;83070:12;:10;:12::i;:::-;-1:-1:-1;;;;;83059:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;83059:23:0;;83051:68;;;;;-1:-1:-1;;;83051:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;83051:68:0;;;;;;;;;;;;;;;83581:6:::1;::::0;83560:40:::1;::::0;83597:1:::1;::::0;-1:-1:-1;;;;;83581:6:0::1;::::0;83560:40:::1;::::0;83597:1;;83560:40:::1;83611:6;:19:::0;;-1:-1:-1;;;;;;83611:19:0::1;::::0;;83490:148::o;80904:179::-;79251:24;;;-1:-1:-1;;;79251:24:0;;;;;;;;;;;;80955:34;;80976:12;:10;:12::i;80955:34::-;80947:109;;;;-1:-1:-1;;;80947:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81067:8;:6;:8::i;84969:123::-;83070:12;:10;:12::i;:::-;-1:-1:-1;;;;;83059:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;83059:23:0;;83051:68;;;;;-1:-1:-1;;;83051:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;83051:68:0;;;;;;;;;;;;;;;85036:47:::1;::::0;85044:10:::1;::::0;85061:21:::1;85036:47:::0;::::1;;;::::0;::::1;::::0;;;85061:21;85044:10;85036:47;::::1;;;;;;85028:56;;12:1:-1;9::::0;2:12:::1;82839:87:0::0;82912:6;;-1:-1:-1;;;;;82912:6:0;82839:87;:::o;23033:138::-;23106:7;23133:12;;;;;;;;;;:30;;23157:5;23133:30;:23;:30;:::i;84695:234::-;84398:5;84752:13;:11;:13::i;:::-;:26;84744:61;;;;;-1:-1:-1;;;84744:61:0;;;;;;;;;;;;-1:-1:-1;;;84744:61:0;;;;;;;;;;;;;;;84837:16;:14;:16::i;:::-;84824:9;:29;84816:54;;;;;-1:-1:-1;;;84816:54:0;;;;;;;;;;;;-1:-1:-1;;;84816:54:0;;;;;;;;;;;;;;;84881:36;84891:10;84903:13;:11;:13::i;:::-;84881:9;:36::i;21994:139::-;22063:4;22087:12;;;;;;;;;;:38;;22117:7;22087:38;:29;:38;:::i;84588:100::-;83070:12;:10;:12::i;:::-;-1:-1:-1;;;;;83059:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;83059:23:0;;83051:68;;;;;-1:-1:-1;;;83051:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;83051:68:0;;;;;;;;;;;;;;;84664:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;61491:104::-:0;61580:7;61573:14;;;;;;;;-1:-1:-1;;61573:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61547:13;;61573:14;;61580:7;;61573:14;;61580:7;61573:14;;;;;;;;;;;;;;;;;;;;;;;;20739:49;20784:4;20739:49;:::o;64401:295::-;64516:12;:10;:12::i;:::-;-1:-1:-1;;;;;64504:24:0;:8;-1:-1:-1;;;;;64504:24:0;;;64496:62;;;;;-1:-1:-1;;;64496:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;64616:8;64571:18;:32;64590:12;:10;:12::i;:::-;-1:-1:-1;;;;;64571:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;64571:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;64571:53:0;;;;;;;;;;;64655:12;:10;:12::i;:::-;64640:48;;;;;;;;;;-1:-1:-1;;;;;64640:48:0;;;;;;;;;;;;;;64401:295;;:::o;65596:285::-;65728:41;65747:12;:10;:12::i;:::-;65761:7;65728:18;:41::i;:::-;65720:103;;;;-1:-1:-1;;;65720:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65834:39;65848:4;65854:2;65858:7;65867:5;65834:13;:39::i;:::-;65596:285;;;;:::o;61666:792::-;61739:13;61773:16;61781:7;61773;:16::i;:::-;61765:76;;;;-1:-1:-1;;;61765:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61880:19;;;;:10;:19;;;;;;;;;61854:45;;;;;;-1:-1:-1;;61854:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;61880:19;61854:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61910:18;61931:9;:7;:9::i;:::-;61910:30;;62022:4;62016:18;62038:1;62016:23;62012:72;;;-1:-1:-1;62063:9:0;-1:-1:-1;62056:16:0;;62012:72;62188:23;;:27;62184:108;;62263:4;62269:9;62246:33;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;62246::0;;;;;;;;;;-1:-1:-1;62246:33:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;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;;;62246:33:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;62246:33:0;;;62232:48;;;;;;62184:108;62424:4;62430:18;:7;:16;:18::i;:::-;62407:42;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;62407:42:0;;;;;;;;;;-1:-1:-1;62407:42:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;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;;;62407:42:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;62407:42:0;;;62393:57;;;;61666:792;;;:::o;22307:127::-;22370:7;22397:12;;;;;;;;;;:29;;:27;:29::i;85208:764::-;85255:7;84398:5;85285:13;:11;:13::i;:::-;:26;85277:61;;;;;-1:-1:-1;;;85277:61:0;;;;;;;;;;;;-1:-1:-1;;;85277:61:0;;;;;;;;;;;;;;;85351:18;85372:13;:11;:13::i;:::-;85351:34;;85417:4;85400:13;:21;85396:559;;85445:19;85438:26;;;;;85396:559;85503:4;85486:13;:21;85482:473;;85531:18;85524:25;;;;;85482:473;85588:4;85571:13;:21;85567:388;;85616:18;85609:25;;;;;85567:388;85673:4;85656:13;:21;85652:303;;85701:18;85694:25;;;;;85652:303;85758:4;85741:13;:21;85737:218;;85786:17;85779:24;;;;;85737:218;85842:3;85825:13;:20;85821:134;;85869:17;85862:24;;;;;85821:134;85926:17;85919:24;;;;;85821:134;85208:764;;:::o;79144:62::-;79182:24;;;-1:-1:-1;;;79182:24:0;;;;;;;;;;;;79144:62;:::o;24208:230::-;24301:6;:12;;;;;;;;;;:22;;;24293:45;;24325:12;:10;:12::i;24293:45::-;24285:106;;;;-1:-1:-1;;;24285:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85990:272;83070:12;:10;:12::i;:::-;-1:-1:-1;;;;;83059:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;83059:23:0;;83051:68;;;;;-1:-1:-1;;;83051:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;83051:68:0;;;;;;;;;;;;;;;86133:6:::1;86128:122;86149:2;86145:1;:6;86128:122;;;86173:65;86191:42;86236:1;86173:9;:65::i;:::-;86153:3;;86128:122;;79213:62:::0;79251:24;;;-1:-1:-1;;;79251:24:0;;;;;;;;;;;;79213:62;:::o;85098:92::-;85175:7;85168:14;;;;;;;;-1:-1:-1;;85168:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85142:13;;85168:14;;85175:7;;85168:14;;85175:7;85168:14;;;;;;;;;;;;;;;;;;;;;;;;64767:164;-1:-1:-1;;;;;64888:25:0;;;64864:4;64888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;64767:164::o;83793:244::-;83070:12;:10;:12::i;:::-;-1:-1:-1;;;;;83059:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;83059:23:0;;83051:68;;;;;-1:-1:-1;;;83051:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;83051:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;83882:22:0;::::1;83874:73;;;;-1:-1:-1::0;;;83874:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83984:6;::::0;83963:38:::1;::::0;-1:-1:-1;;;;;83963:38:0;;::::1;::::0;83984:6:::1;::::0;83963:38:::1;::::0;83984:6:::1;::::0;83963:38:::1;84012:6;:17:::0;;-1:-1:-1;;;;;;84012:17:0::1;-1:-1:-1::0;;;;;84012:17:0;;;::::1;::::0;;;::::1;::::0;;83793:244::o;67348:127::-;67413:4;67437:30;:12;67459:7;67437:30;:21;:30;:::i;18635:106::-;18723:10;18635:106;:::o;73366:192::-;73441:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;73441:29:0;-1:-1:-1;;;;;73441:29:0;;;;;;;;:24;;73495:23;73441:24;73495:14;:23::i;:::-;-1:-1:-1;;;;;73486:46:0;;;;;;;;;;;73366:192;;:::o;53985:123::-;54054:7;54081:19;54089:3;54081:7;:19::i;67642:355::-;67735:4;67760:16;67768:7;67760;:16::i;:::-;67752:73;;;;-1:-1:-1;;;67752:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67836:13;67852:23;67867:7;67852:14;:23::i;:::-;67836:39;;67905:5;-1:-1:-1;;;;;67894:16:0;:7;-1:-1:-1;;;;;67894:16:0;;:51;;;;67938:7;-1:-1:-1;;;;;67914:31:0;:20;67926:7;67914:11;:20::i;:::-;-1:-1:-1;;;;;67914:31:0;;67894:51;:94;;;;67949:39;67973:5;67980:7;67949:23;:39::i;:::-;67886:103;67642:355;-1:-1:-1;;;;67642:355:0:o;70778:599::-;70903:4;-1:-1:-1;;;;;70876:31:0;:23;70891:7;70876:14;:23::i;:::-;-1:-1:-1;;;;;70876:31:0;;70868:85;;;;-1:-1:-1;;;70868:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70990:16:0;;70982:65;;;;-1:-1:-1;;;70982:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71060:39;71081:4;71087:2;71091:7;71060:20;:39::i;:::-;71164:29;71181:1;71185:7;71164:8;:29::i;:::-;-1:-1:-1;;;;;71206:19:0;;;;;;:13;:19;;;;;:35;;71233:7;71206:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;;71252:17:0;;;;;;:13;:17;;;;;:30;;71274:7;71252:30;:21;:30;:::i;:::-;-1:-1:-1;71295:29:0;:12;71312:7;71321:2;71295:29;:16;:29;:::i;:::-;;71361:7;71357:2;-1:-1:-1;;;;;71342:27:0;71351:4;-1:-1:-1;;;;;71342:27:0;;;;;;;;;;;70778:599;;;:::o;26188:188::-;26262:6;:12;;;;;;;;;;:33;;26287:7;26262:33;:24;:33;:::i;:::-;26258:111;;;26344:12;:10;:12::i;:::-;-1:-1:-1;;;;;26317:40:0;26335:7;-1:-1:-1;;;;;26317:40:0;26329:4;26317:40;;;;;;;;;;26188:188;;:::o;9744:137::-;9815:7;9850:22;9854:3;9866:5;9850:3;:22::i;26384:192::-;26459:6;:12;;;;;;;;;;:36;;26487:7;26459:36;:27;:36;:::i;:::-;26455:114;;;26544:12;:10;:12::i;:::-;-1:-1:-1;;;;;26517:40:0;26535:7;-1:-1:-1;;;;;26517:40:0;26529:4;26517:40;;;;;;;;;;26384:192;;:::o;77199:120::-;76743:8;:6;:8::i;:::-;76735:41;;;;;-1:-1:-1;;;76735:41:0;;;;;;;;;;;;-1:-1:-1;;;76735:41:0;;;;;;;;;;;;;;;77258:7:::1;:15:::0;;-1:-1:-1;;77258:15:0::1;::::0;;77289:22:::1;77298:12;:10;:12::i;:::-;77289:22;::::0;;-1:-1:-1;;;;;77289:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;77199:120::o:0;69896:545::-;69956:13;69972:23;69987:7;69972:14;:23::i;:::-;69956:39;;70026:48;70047:5;70062:1;70066:7;70026:20;:48::i;:::-;70115:29;70132:1;70136:7;70115:8;:29::i;:::-;70203:19;;;;:10;:19;;;;;70197:33;;-1:-1:-1;;70197:33:0;;;;;;;;;;;:38;70193:97;;70259:19;;;;:10;:19;;;;;70252:26;;;:::i;:::-;-1:-1:-1;;;;;70302:20:0;;;;;;:13;:20;;;;;:36;;70330:7;70302:36;:27;:36;:::i;:::-;-1:-1:-1;70351:28:0;:12;70371:7;70351:28;:19;:28;:::i;:::-;-1:-1:-1;70397:36:0;;70425:7;;70421:1;;-1:-1:-1;;;;;70397:36:0;;;;;70421:1;;70397:36;69896:545;;:::o;54447:236::-;54527:7;;;;54587:22;54591:3;54603:5;54587:3;:22::i;:::-;54556:53;;;;-1:-1:-1;54447:236:0;-1:-1:-1;;;;;54447:236:0:o;71978:100::-;72051:19;;;;:8;;:19;;;;;:::i;55733:213::-;55840:7;55891:44;55896:3;55916;55922:12;55891:4;:44::i;:::-;55883:53;-1:-1:-1;55733:213:0;;;;;;:::o;35248:114::-;35340:14;;35248:114::o;69263:404::-;-1:-1:-1;;;;;69343:16:0;;69335:61;;;;;-1:-1:-1;;;69335:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69416:16;69424:7;69416;:16::i;:::-;69415:17;69407:58;;;;;-1:-1:-1;;;69407:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;69478:45;69507:1;69511:2;69515:7;69478:20;:45::i;:::-;-1:-1:-1;;;;;69536:17:0;;;;;;:13;:17;;;;;:30;;69558:7;69536:30;:21;:30;:::i;:::-;-1:-1:-1;69579:29:0;:12;69596:7;69605:2;69579:29;:16;:29;:::i;:::-;-1:-1:-1;69626:33:0;;69651:7;;-1:-1:-1;;;;;69626:33:0;;;69643:1;;69626:33;;69643:1;;69626:33;69263:404;;:::o;35370:181::-;35524:19;;35542:1;35524:19;;;35370:181::o;76940:118::-;76466:8;:6;:8::i;:::-;76465:9;76457:38;;;;;-1:-1:-1;;;76457:38:0;;;;;;;;;;;;-1:-1:-1;;;76457:38:0;;;;;;;;;;;;;;;77000:7:::1;:14:::0;;-1:-1:-1;;77000:14:0::1;77010:4;77000:14;::::0;;77030:20:::1;77037:12;:10;:12::i;68340:110::-:0;68416:26;68426:2;68430:7;68416:26;;;;;;;;;;;;:9;:26::i;7402:167::-;7482:4;7506:55;7516:3;-1:-1:-1;;;;;7536:23:0;;7506:9;:55::i;66763:272::-;66877:28;66887:4;66893:2;66897:7;66877:9;:28::i;:::-;66924:48;66947:4;66953:2;66957:7;66966:5;66924:22;:48::i;:::-;66916:111;;;;-1:-1:-1;;;66916:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56236:746;56292:13;56513:10;56509:53;;-1:-1:-1;56540:10:0;;;;;;;;;;;;-1:-1:-1;;;56540:10:0;;;;;;56509:53;56587:5;56572:12;56628:78;56635:9;;56628:78;;56661:8;;56692:2;56684:10;;;;56628:78;;;56716:19;56748:6;56738:17;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;108:14;56738:17:0;87:42:-1;143:17;;-1:-1;56738:17:0;-1:-1:-1;56810:5:0;;-1:-1:-1;56716:39:0;-1:-1:-1;;;56782:10:0;;56826:117;56833:9;;56826:117;;56902:2;56895:4;:9;56890:2;:14;56877:29;;56859:6;56866:7;;;;;;;56859:15;;;;;;;;;;;:47;-1:-1:-1;;;;;56859:47:0;;;;;;;;-1:-1:-1;56929:2:0;56921:10;;;;56826:117;;;-1:-1:-1;56967:6:0;56236:746;-1:-1:-1;;;;56236:746:0:o;53746:151::-;53830:4;53854:35;53864:3;53884;53854:9;:35::i;81495:187::-;81629:45;81656:4;81662:2;81666:7;81629:26;:45::i;8831:137::-;8901:4;8925:35;8933:3;8953:5;8925:7;:35::i;8524:131::-;8591:4;8615:32;8620:3;8640:5;8615:4;:32::i;53169:185::-;53258:4;53282:64;53287:3;53307;-1:-1:-1;;;;;53321:23:0;;53282:4;:64::i;6830:152::-;6900:4;6924:50;6929:3;-1:-1:-1;;;;;6949:23:0;;6924:4;:50::i;4782:204::-;4877:18;;4849:7;;4877:26;-1:-1:-1;4869:73:0;;;;-1:-1:-1;;;4869:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4960:3;:11;;4972:5;4960:18;;;;;;;;;;;;;;;;4953:25;;4782:204;;;;:::o;7158:158::-;7231:4;7255:53;7263:3;-1:-1:-1;;;;;7283:23:0;;7255:7;:53::i;53520:142::-;53597:4;53621:33;53629:3;53649;53621:7;:33::i;51029:279::-;51133:19;;51096:7;;;;51133:27;-1:-1:-1;51125:74:0;;;;-1:-1:-1;;;51125:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51212:22;51237:3;:12;;51250:5;51237:19;;;;;;;;;;;;;;;;;;51212:44;;51275:5;:10;;;51287:5;:12;;;51267:33;;;;;51029:279;;;;;:::o;52526:319::-;52620:7;52659:17;;;:12;;;:17;;;;;;52710:12;52695:13;52687:36;;;;-1:-1:-1;;;52687:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;52687:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52777:3;:12;;52801:1;52790:8;:12;52777:26;;;;;;;;;;;;;;;;;;:33;;;52770:40;;;52526:319;;;;;:::o;68677:250::-;68773:18;68779:2;68783:7;68773:5;:18::i;:::-;68810:54;68841:1;68845:2;68849:7;68858:5;68810:22;:54::i;:::-;68802:117;;;;-1:-1:-1;;;68802:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4114:129;4187:4;4211:19;;;:12;;;;;:19;;;;;;:24;;;4114:129::o;72643:604::-;72764:4;72791:15;:2;-1:-1:-1;;;;;72791:13:0;;:15::i;:::-;72786:60;;-1:-1:-1;72830:4:0;72823:11;;72786:60;72856:23;72882:252;-1:-1:-1;;;72995:12:0;:10;:12::i;:::-;73022:4;73041:7;73063:5;72898:181;;;;;;-1:-1:-1;;;;;72898:181:0;-1:-1:-1;;;;;72898:181:0;;;;;;-1:-1:-1;;;;;72898:181:0;-1:-1:-1;;;;;72898:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;72898:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;72898:181:0;;;;-1:-1:-1;;;;;72898:181:0;;38:4:-1;29:7;25:18;67:10;61:17;-1:-1;;;;;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;72898:181:0;72882:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;72882:15:0;;;:252;;:15;:252;:::i;:::-;72856:278;;73145:13;73172:10;73161:32;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;73161:32:0;-1:-1:-1;;;;;;73212:26:0;-1:-1:-1;;;73212:26:0;;-1:-1:-1;;;72643:604:0;;;;;;:::o;77959:241::-;78069:45;78096:4;78102:2;78106:7;78069:26;:45::i;:::-;78136:8;:6;:8::i;:::-;78135:9;78127:65;;;;-1:-1:-1;;;78127:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2484:1544;2550:4;2689:19;;;:12;;;:19;;;;;;2725:15;;2721:1300;;3160:18;;-1:-1:-1;;3111:14:0;;;;3160:22;;;;3087:21;;3160:3;;:22;;3447;;;;;;;;;;;;;;3427:42;;3593:9;3564:3;:11;;3576:13;3564:26;;;;;;;;;;;;;;;;;;;:38;;;;3670:23;;;3712:1;3670:12;;;:23;;;;;;3696:17;;;3670:43;;3822:17;;3670:3;;3822:17;;;;;;;;;;;;;;;;;;;;;;3917:3;:12;;:19;3930:5;3917:19;;;;;;;;;;;3910:26;;;3960:4;3953:11;;;;;;;;2721:1300;4004:5;3997:12;;;;;1894:414;1957:4;1979:21;1989:3;1994:5;1979:9;:21::i;:::-;1974:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;2017:11:0;:23;;;;;;;;;;;;;2200:18;;2178:19;;;:12;;;:19;;;;;;:40;;;;2233:11;;1974:327;-1:-1:-1;2284:5:0;2277:12;;47844:692;47920:4;48055:17;;;:12;;;:17;;;;;;48089:13;48085:444;;-1:-1:-1;;48174:38:0;;;;;;;;;;;;;;;;;;27:10:-1;;39:1;23:18;;;45:23;;48156:12:0;:57;;;;;;;;;;;;;;;;;;;;;;;;48371:19;;48351:17;;;:12;;;:17;;;;;;;:39;48405:11;;48085:444;48485:5;48449:3;:12;;48473:1;48462:8;:12;48449:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;48512:5;48505:12;;;;;48711:1549;48775:4;48910:17;;;:12;;;:17;;;;;;48944:13;;48940:1313;;49376:19;;-1:-1:-1;;49329:12:0;;;;49376:23;;;;49305:21;;49376:3;;:23;;49673;;;;;;;;;;;;;;;;49644:52;;49821:9;49791:3;:12;;49804:13;49791:27;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;;;;49911:14;;49898:28;;:12;;;:28;;;;;49929:17;;;49898:48;;50055:18;;49898:3;;50055:18;;;;;;;;;;;;;;-1:-1:-1;;50055:18:0;;;;;;;;;;;;;;;;;;;;;50151:17;;;:12;;;:17;;;;;;50144:24;;;;50055:18;-1:-1:-1;50185:11:0;;-1:-1:-1;;;;50185:11:0;10701:422;11068:20;11107:8;;;10701:422::o;13619:195::-;13722:12;13754:52;13776:6;13784:4;13790:1;13793:12;13722;14923:18;14934:6;14923:10;:18::i;:::-;14915:60;;;;;-1:-1:-1;;;14915:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15049:12;15063:23;15090:6;-1:-1:-1;;;;;15090:11:0;15110:5;15118:4;15090:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;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;;;15090:33: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;;15048:75:0;;;;15141:52;15159:7;15168:10;15180:12;15141:17;:52::i;:::-;15134:59;14671:530;-1:-1:-1;;;;;;;14671:530:0:o;17211:742::-;17326:12;17355:7;17351:595;;;-1:-1:-1;17386:10:0;17379:17;;17351:595;17500:17;;:21;17496:439;;17763:10;17757:17;17824:15;17811:10;17807:2;17803:19;17796:44;17711:148;17899:20;;-1:-1:-1;;;17899:20:0;;;;;;;;;;;;;;;;;17906:12;;17899:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;84115:2150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;84115:2150:0;;;-1:-1:-1;84115:2150:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://68582b367884a60b43248fe0f9bd3d22e05dd9c46a1e43977465f15813f612d5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.