Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 136 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 21758059 | 345 days ago | IN | 0 ETH | 0.0000731 | ||||
| Set Approval For... | 19746105 | 626 days ago | IN | 0 ETH | 0.00014761 | ||||
| Set Approval For... | 19608468 | 645 days ago | IN | 0 ETH | 0.0002114 | ||||
| Set Approval For... | 15982894 | 1154 days ago | IN | 0 ETH | 0.00065784 | ||||
| Withdraw | 15819297 | 1176 days ago | IN | 0 ETH | 0.00066284 | ||||
| Mint | 15732259 | 1189 days ago | IN | 0.05 ETH | 0.00283853 | ||||
| Set Approval For... | 15703130 | 1193 days ago | IN | 0 ETH | 0.00040386 | ||||
| Withdraw | 15529917 | 1217 days ago | IN | 0 ETH | 0.00038599 | ||||
| Admin Mint | 15529906 | 1217 days ago | IN | 0 ETH | 0.00183124 | ||||
| Admin Mint | 15529894 | 1217 days ago | IN | 0 ETH | 0.00154012 | ||||
| Admin Mint | 15529894 | 1217 days ago | IN | 0 ETH | 0.00154012 | ||||
| Admin Mint | 15529894 | 1217 days ago | IN | 0 ETH | 0.00154012 | ||||
| Admin Mint | 15529891 | 1217 days ago | IN | 0 ETH | 0.00143236 | ||||
| Admin Mint | 15529888 | 1217 days ago | IN | 0 ETH | 0.00187602 | ||||
| Safe Transfer Fr... | 15489179 | 1224 days ago | IN | 0 ETH | 0.00109769 | ||||
| Set Approval For... | 15444519 | 1231 days ago | IN | 0 ETH | 0.0007242 | ||||
| Safe Transfer Fr... | 15443961 | 1231 days ago | IN | 0 ETH | 0.00114833 | ||||
| Set Approval For... | 15415964 | 1236 days ago | IN | 0 ETH | 0.00115688 | ||||
| Set Approval For... | 15403184 | 1238 days ago | IN | 0 ETH | 0.00051768 | ||||
| Safe Transfer Fr... | 15401052 | 1238 days ago | IN | 0 ETH | 0.00063184 | ||||
| Safe Transfer Fr... | 15356578 | 1245 days ago | IN | 0 ETH | 0.00063316 | ||||
| Set Approval For... | 15337323 | 1248 days ago | IN | 0 ETH | 0.00043442 | ||||
| Mint | 15333616 | 1249 days ago | IN | 0.05 ETH | 0.00154113 | ||||
| Mint | 15330607 | 1249 days ago | IN | 0.05 ETH | 0.00214405 | ||||
| Transfer From | 15313479 | 1252 days ago | IN | 0 ETH | 0.00089141 |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Kurimusu
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-27 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/utils/structs/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(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 from incorrect 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); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) /** * @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/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol) /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol) /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin/contracts/token/common/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol) /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File contracts/utils/Base64.sol /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF) ) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } } // File contracts/Kurimusu.sol /* * Kurimusu.sol * @nuko973663 */ /* ToDo: Token ID繧・ start縺ォ縺吶k */ pragma solidity ^0.8.4; contract Kurimusu is ERC721Enumerable, ERC721Burnable, ERC2981, ERC721Pausable, Ownable, AccessControlEnumerable { using Strings for uint256; struct Attribute { string trait_type; string[] attrStrings; bytes data; } struct DataStorage { uint32 chainId; address contractAddress; } uint256 private _price = 0.05 ether; uint256 private _pricePreSale = 0.05 ether; uint256 public timePreSale = 1651021200; uint256 public timeSale = 1651323600; uint256 public maxMint = 200; string private _baseUri = "ipfs://QmThK5sd3tY4ZB4VgUYRcdem722BVET1sEq3pDpM8covP2"; string _postfix = ".jpg"; string _description; bytes32 private _merkleRoot = 0x1b6ea46a2191f31dfd01a8fb914c2bab05effabec3d5fabbb96f1eb460ff60ae; mapping(address => bool) private _preSaleHolders; bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); Attribute[] private _attrs; DataStorage[] private _dataStorage; string[] private _rareStrings; mapping(uint8 => uint8[]) private _rareData; constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); _setDefaultRoyalty(_msgSender(), 1000); } function tokenURI(uint256 tokenId_) public view override returns (string memory) { require( _exists(tokenId_), "ERC721Metadata: URI query for nonexistent token" ); bytes memory json; json = abi.encodePacked( '{"name":"KURIMUSU #', tokenId_.toString(), '","description":"', _description, '","image":"', _baseUri, "/", tokenId_.toString(), _postfix, '",', getAttribute(tokenId_), "}" ); return string( abi.encodePacked( "data:application/json;base64,", Base64.encode(json) ) ); } function getAttribute(uint256 tokenId_) private view returns (string memory) { uint8 itr; uint256 tokenId = tokenId_ - 1; bytes memory attr = '"attributes": ['; bytes2 comma = " ,"; for (uint8 i = 0; i < _attrs.length; i++) { itr = uint8(_attrs[i].data[tokenId / 2]); if (tokenId % 2 == 0) { itr = itr & 0xf; } else { itr = itr >> 4; } attr = abi.encodePacked( attr, '{"trait_type":"', _attrs[i].trait_type, '","value":"', _attrs[i].attrStrings[itr], '"}', comma[i == _attrs.length - 1 ? 0 : 1] ); } uint8[] memory arr = _rareData[uint8(tokenId_)]; for (uint8 i = 0; i < arr.length; i++) { attr = abi.encodePacked( attr, ',{"trait_type":"rare","value":"', _rareStrings[arr[i]], '"}' ); } attr = abi.encodePacked(attr, "]"); return string(attr); } function onSale() public view returns (bool) { return (block.timestamp >= timePreSale) && (totalSupply() < maxMint); } function onPreSale() public view returns (bool) { return onSale() && (block.timestamp < timeSale); } function price() public view returns (uint256) { return (block.timestamp < timeSale) ? _pricePreSale : _price; } function mint(uint256 tokenId_, bytes32[] calldata _merkleProof) public payable { require(!_exists(tokenId_), "Token has been minted"); require((0 < tokenId_) && (tokenId_ <= maxMint), "TokenId is invalid"); require(onSale() == true, "Not on Sale"); if (block.timestamp < timeSale) { bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require( MerkleProof.verify(_merkleProof, _merkleRoot, leaf), "Invalid Merkle Proof." ); require(!_preSaleHolders[_msgSender()], "Has been minted"); _preSaleHolders[_msgSender()] = true; } require(msg.value == price(), "Price is invalid"); _safeMint(_msgSender(), tokenId_); } function AdminMint(uint256 tokenId_, address to_) public payable { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs admin role"); require(!_exists(tokenId_), "Token has been minted"); require((0 < tokenId_) && (tokenId_ <= maxMint), "TokenId is invalid"); _preSaleHolders[to_] = true; _safeMint(to_, tokenId_); } function mintable(bytes32[] calldata _merkleProof) public view returns (bool) { if (!onSale()) return false; if (onPreSale()) { bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); if (!MerkleProof.verify(_merkleProof, _merkleRoot, leaf)) return false; if (_preSaleHolders[_msgSender()]) return false; } return true; } function withdraw() public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs admin role"); address payable receiver = payable(_msgSender()); receiver.transfer(address(this).balance); emit Withdraw(address(this).balance); } function getCandidates() public view returns (uint256[] memory ret) { require(onSale(), "Not on sale"); uint256 numReturn = 3; uint256[] memory items = new uint256[](maxMint); uint256 num; for (uint256 i = 1; i <= maxMint; i++) { if (!_exists(i)) { items[num] = i; num++; } } numReturn = numReturn < num ? numReturn : num; for (uint256 i = 0; i < numReturn; i++) { uint256 t = rand(num, i); (items[i], items[t]) = (items[t], items[i]); } ret = new uint256[](numReturn); for (uint256 i = 0; i < numReturn; i++) { ret[i] = items[i]; } return ret; } function rand(uint256 mod, uint256 nonce) private view returns (uint256) { return uint256( keccak256(abi.encodePacked(block.number, _msgSender(), nonce)) ) % mod; } function addDataStorage(uint32 chainId_, address addr_) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs admin role"); DataStorage memory ds; ds.chainId = chainId_; ds.contractAddress = addr_; _dataStorage.push(ds); emit AddDataStorage(chainId_, addr_); } function dataStorage() public view returns (DataStorage[] memory) { return _dataStorage; } function setBaseURI(string memory baseURI_) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs minter role"); _baseUri = baseURI_; } function addAttributes( string memory name_, string[] memory attrStrings_, bytes memory data_ ) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs minter role"); Attribute memory attr; attr.trait_type = name_; attr.attrStrings = attrStrings_; attr.data = data_; _attrs.push(attr); } function setAttributes( uint8 num_, string memory name_, string[] memory attrStrings_, bytes memory data_ ) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs minter role"); _attrs[num_].trait_type = name_; _attrs[num_].attrStrings = attrStrings_; _attrs[num_].data = data_; } function setAttributesRare( string[] memory rareStrings_, uint8[] memory data1_, uint8[][] memory data2_ ) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs minter role"); //require(_rareStrings.length == 0, "has been set"); require(rareStrings_.length > 0, "invalid"); for (uint8 i = 0; i < rareStrings_.length; i++) { _rareStrings.push(rareStrings_[i]); } for (uint8 i = 0; i < data1_.length; i++) { _rareData[data1_[i]] = data2_[i]; } } function setMerkleRoot(bytes32 merkleRoot_) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs minter role"); _merkleRoot = merkleRoot_; emit SetMerkleRoot(merkleRoot_); } function setDefaultRoyalty(address receiver_, uint96 feeNumerator_) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs admin role"); _setDefaultRoyalty(receiver_, feeNumerator_); } function setDescription(string memory description_) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs admin role"); _description = description_; } function setPrice(uint256 pricePreSale_, uint256 price_) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs admin role"); _price = price_; _pricePreSale = pricePreSale_; emit SetPrice(pricePreSale_, price_); } function setSaleStartTime(uint256 timePreSale_, uint256 timeSale_) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "needs admin role"); require(timePreSale_ <= timeSale_, "timePreSale <= timeSale"); timePreSale = timePreSale_; timeSale = timeSale_; emit SetSaleStartTime(timePreSale_, timeSale_); } function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "needs pauser role"); _pause(); } function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "needs pauser role"); _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable, ERC2981, AccessControlEnumerable) returns (bool) { return super.supportsInterface(interfaceId); } event SetPrice(uint256 pricePreSale_, uint256 price_); event AddDataStorage(uint32 chainId_, address addr_); event SetSaleStartTime(uint256 timePreSale_, uint256 timeSale_); event Withdraw(uint256 amount_); event SetMerkleRoot(bytes32 merkleRoot_); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"chainId_","type":"uint32"},{"indexed":false,"internalType":"address","name":"addr_","type":"address"}],"name":"AddDataStorage","type":"event"},{"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":false,"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"SetMerkleRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pricePreSale_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price_","type":"uint256"}],"name":"SetPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timePreSale_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timeSale_","type":"uint256"}],"name":"SetSaleStartTime","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"AdminMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string[]","name":"attrStrings_","type":"string[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"addAttributes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"chainId_","type":"uint32"},{"internalType":"address","name":"addr_","type":"address"}],"name":"addDataStorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dataStorage","outputs":[{"components":[{"internalType":"uint32","name":"chainId","type":"uint32"},{"internalType":"address","name":"contractAddress","type":"address"}],"internalType":"struct Kurimusu.DataStorage[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCandidates","outputs":[{"internalType":"uint256[]","name":"ret","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"uint8","name":"num_","type":"uint8"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string[]","name":"attrStrings_","type":"string[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"setAttributes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"rareStrings_","type":"string[]"},{"internalType":"uint8[]","name":"data1_","type":"uint8[]"},{"internalType":"uint8[][]","name":"data2_","type":"uint8[][]"}],"name":"setAttributesRare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver_","type":"address"},{"internalType":"uint96","name":"feeNumerator_","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"description_","type":"string"}],"name":"setDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pricePreSale_","type":"uint256"},{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timePreSale_","type":"uint256"},{"internalType":"uint256","name":"timeSale_","type":"uint256"}],"name":"setSaleStartTime","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":[],"name":"timePreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
66b1a2bc2ec50000600f819055601055636268959060115563626d32d060125560c860135560e06040526035608081815290620051f660a03980516200004e916014916020909101906200042f565b50604080518082019091526004808252632e6a706760e01b60209092019182526200007c916015916200042f565b507f1b6ea46a2191f31dfd01a8fb914c2bab05effabec3d5fabbb96f1eb460ff60ae601755348015620000ae57600080fd5b506040516200522b3803806200522b833981016040819052620000d191620005a2565b815182908290620000ea9060009060208501906200042f565b508051620001009060019060208401906200042f565b5050600c805460ff1916905550620001183362000167565b62000125600033620001c1565b620001517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620001c1565b6200015f336103e8620001d1565b505062000648565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001cd8282620002d6565b5050565b6127106001600160601b0382161115620002455760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200029d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200023c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b620002ed82826200031960201b620022891760201c565b6000828152600e60209081526040909120620003149183906200230f620003bd821b17901c565b505050565b6000828152600d602090815260408083206001600160a01b038516845290915290205460ff16620001cd576000828152600d602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003793390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620003d4836001600160a01b038416620003dd565b90505b92915050565b60008181526001830160205260408120546200042657508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620003d7565b506000620003d7565b8280546200043d906200060c565b90600052602060002090601f016020900481019282620004615760008555620004ac565b82601f106200047c57805160ff1916838001178555620004ac565b82800160010185558215620004ac579182015b82811115620004ac5782518255916020019190600101906200048f565b50620004ba929150620004be565b5090565b5b80821115620004ba5760008155600101620004bf565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620004fd57600080fd5b81516001600160401b03808211156200051a576200051a620004d5565b604051601f8301601f19908116603f01168101908282118183101715620005455762000545620004d5565b816040528381526020925086838588010111156200056257600080fd5b600091505b8382101562000586578582018301518183018401529082019062000567565b83821115620005985760008385830101525b9695505050505050565b60008060408385031215620005b657600080fd5b82516001600160401b0380821115620005ce57600080fd5b620005dc86838701620004eb565b93506020850151915080821115620005f357600080fd5b506200060285828601620004eb565b9150509250929050565b600181811c908216806200062157607f821691505b6020821081036200064257634e487b7160e01b600052602260045260246000fd5b50919050565b614b9e80620006586000396000f3fe6080604052600436106103505760003560e01c80637cb64759116101c6578063a22cb465116100f7578063ca15c87311610095578063e985e9c51161006f578063e985e9c51461098c578063f2fde38b146109d5578063f7d97577146109f5578063fa8cc67314610a1557600080fd5b8063ca15c87314610918578063d547741f14610938578063e63ab1e91461095857600080fd5b8063ba41b0c6116100d1578063ba41b0c6146108b0578063c262099b146108c3578063c6cbb948146108d8578063c87b56dd146108f857600080fd5b8063a22cb46514610850578063a76190be14610870578063b88d4fde1461089057600080fd5b806390c3f38f116101645780639a7453731161013e5780639a745373146107f35780639b6eae2014610813578063a035b1fe14610826578063a217fddf1461083b57600080fd5b806390c3f38f1461079e57806391d14854146107be57806395d89b41146107de57600080fd5b80638456cb59116101a05780638456cb59146107245780638870455f146107395780638da5cb5b1461075b5780639010d07c1461077e57600080fd5b80637cb64759146106d85780637eb9f466146106f857806383f043421461070e57600080fd5b806336568abe116102a057806355f804b31161023e5780636e0b24aa116102185780636e0b24aa1461066d57806370a082311461068d578063715018a6146106ad5780637501f741146106c257600080fd5b806355f804b3146106155780635c975abb146106355780636352211e1461064d57600080fd5b806342842e0e1161027a57806342842e0e1461059557806342966c68146105b55780634f6ccce7146105d557806350d5a4ba146105f557600080fd5b806336568abe1461054b5780633ccfd60b1461056b5780633f4ba83a1461058057600080fd5b806318160ddd1161030d5780632a55205a116102e75780632a55205a146104b75780632f2ff15d146104f65780632f745c5914610516578063326687b91461053657600080fd5b806318160ddd1461044857806323b872dd14610467578063248a9ca31461048757600080fd5b806301ffc9a71461035557806304634d8d1461038a57806306a49fce146103ac57806306fdde03146103ce578063081812fc146103f0578063095ea7b314610428575b600080fd5b34801561036157600080fd5b50610375610370366004613d09565b610a35565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004613d42565b610a46565b005b3480156103b857600080fd5b506103c1610a84565b6040516103819190613d85565b3480156103da57600080fd5b506103e3610cb9565b6040516103819190613e21565b3480156103fc57600080fd5b5061041061040b366004613e34565b610d4b565b6040516001600160a01b039091168152602001610381565b34801561043457600080fd5b506103aa610443366004613e4d565b610dd3565b34801561045457600080fd5b506008545b604051908152602001610381565b34801561047357600080fd5b506103aa610482366004613e77565b610ee8565b34801561049357600080fd5b506104596104a2366004613e34565b6000908152600d602052604090206001015490565b3480156104c357600080fd5b506104d76104d2366004613eb3565b610f1a565b604080516001600160a01b039093168352602083019190915201610381565b34801561050257600080fd5b506103aa610511366004613ed5565b610fc8565b34801561052257600080fd5b50610459610531366004613e4d565b610fee565b34801561054257600080fd5b50610375611084565b34801561055757600080fd5b506103aa610566366004613ed5565b6110a0565b34801561057757600080fd5b506103aa61111a565b34801561058c57600080fd5b506103aa6111a7565b3480156105a157600080fd5b506103aa6105b0366004613e77565b61121b565b3480156105c157600080fd5b506103aa6105d0366004613e34565b611236565b3480156105e157600080fd5b506104596105f0366004613e34565b6112b0565b34801561060157600080fd5b506103aa6106103660046140db565b611343565b34801561062157600080fd5b506103aa6106303660046141d2565b61149e565b34801561064157600080fd5b50600c5460ff16610375565b34801561065957600080fd5b50610410610668366004613e34565b6114d8565b34801561067957600080fd5b506103aa610688366004613eb3565b61154f565b34801561069957600080fd5b506104596106a8366004614206565b61160e565b3480156106b957600080fd5b506103aa611695565b3480156106ce57600080fd5b5061045960135481565b3480156106e457600080fd5b506103aa6106f3366004613e34565b6116ff565b34801561070457600080fd5b5061045960125481565b34801561071a57600080fd5b5061045960115481565b34801561073057600080fd5b506103aa61175b565b34801561074557600080fd5b5061074e6117cd565b6040516103819190614221565b34801561076757600080fd5b50600c5461010090046001600160a01b0316610410565b34801561078a57600080fd5b50610410610799366004613eb3565b611847565b3480156107aa57600080fd5b506103aa6107b93660046141d2565b611866565b3480156107ca57600080fd5b506103756107d9366004613ed5565b6118a0565b3480156107ea57600080fd5b506103e36118cb565b3480156107ff57600080fd5b506103aa61080e36600461427f565b6118da565b6103aa610821366004613ed5565b6119bb565b34801561083257600080fd5b50610459611ab0565b34801561084757600080fd5b50610459600081565b34801561085c57600080fd5b506103aa61086b366004614317565b611ac9565b34801561087c57600080fd5b506103aa61088b366004614348565b611ad4565b34801561089c57600080fd5b506103aa6108ab36600461437d565b611bbd565b6103aa6108be36600461441c565b611bef565b3480156108cf57600080fd5b50610375611e5b565b3480156108e457600080fd5b506103756108f3366004614467565b611e75565b34801561090457600080fd5b506103e3610913366004613e34565b611f48565b34801561092457600080fd5b50610459610933366004613e34565b612030565b34801561094457600080fd5b506103aa610953366004613ed5565b612047565b34801561096457600080fd5b506104597f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b34801561099857600080fd5b506103756109a73660046144a8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e157600080fd5b506103aa6109f0366004614206565b61206d565b348015610a0157600080fd5b506103aa610a10366004613eb3565b61213b565b348015610a2157600080fd5b506103aa610a303660046144c4565b6121a2565b6000610a4082612324565b92915050565b610a516000336118a0565b610a765760405162461bcd60e51b8152600401610a6d9061454b565b60405180910390fd5b610a808282612349565b5050565b6060610a8e611084565b610ac85760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206f6e2073616c6560a81b6044820152606401610a6d565b6013546003906000906001600160401b03811115610ae857610ae8613f01565b604051908082528060200260200182016040528015610b11578160200160208202803683370190505b509050600060015b6013548111610b6d57610b2b81612446565b610b5b5780838381518110610b4257610b42614575565b602090810291909101015281610b57816145a1565b9250505b80610b65816145a1565b915050610b19565b50808310610b7b5780610b7d565b825b925060005b83811015610c19576000610b968383612463565b9050838181518110610baa57610baa614575565b6020026020010151848381518110610bc457610bc4614575565b6020026020010151858481518110610bde57610bde614575565b60200260200101868481518110610bf757610bf7614575565b6020908102919091010191909152525080610c11816145a1565b915050610b82565b50826001600160401b03811115610c3257610c32613f01565b604051908082528060200260200182016040528015610c5b578160200160208202803683370190505b50935060005b83811015610cb257828181518110610c7b57610c7b614575565b6020026020010151858281518110610c9557610c95614575565b602090810291909101015280610caa816145a1565b915050610c61565b5050505090565b606060008054610cc8906145ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf4906145ba565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b5050505050905090565b6000610d5682612446565b610db75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a6d565b506000908152600460205260409020546001600160a01b031690565b6000610dde826114d8565b9050806001600160a01b0316836001600160a01b031603610e4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a6d565b336001600160a01b0382161480610e675750610e6781336109a7565b610ed95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a6d565b610ee383836124b4565b505050565b610ef3335b82612522565b610f0f5760405162461bcd60e51b8152600401610a6d906145f4565b610ee383838361260c565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f8f575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610fae906001600160601b031687614645565b610fb8919061467a565b91519350909150505b9250929050565b6000828152600d6020526040902060010154610fe481336127b3565b610ee38383612817565b6000610ff98361160e565b821061105b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a6d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000601154421015801561109b5750601354600854105b905090565b6001600160a01b03811633146111105760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a6d565b610a808282612839565b6111256000336118a0565b6111415760405162461bcd60e51b8152600401610a6d9061454b565b604051339081904780156108fc02916000818181858888f1935050505015801561116f573d6000803e3d6000fd5b506040514781527f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d906020015b60405180910390a150565b6111d17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336118a0565b6112115760405162461bcd60e51b81526020600482015260116024820152706e656564732070617573657220726f6c6560781b6044820152606401610a6d565b61121961285b565b565b610ee383838360405180602001604052806000815250611bbd565b61123f33610eed565b6112a45760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a6d565b6112ad816128ee565b50565b60006112bb60085490565b821061131e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a6d565b6008828154811061133157611331614575565b90600052602060002001549050919050565b61134e6000336118a0565b61136a5760405162461bcd60e51b8152600401610a6d9061468e565b60008351116113a55760405162461bcd60e51b81526020600482015260076024820152661a5b9d985b1a5960ca1b6044820152606401610a6d565b60005b83518160ff16101561141057601b848260ff16815181106113cb576113cb614575565b602090810291909101810151825460018101845560009384529282902081516113fd9491909101929190910190613b09565b5080611408816146b9565b9150506113a8565b5060005b82518160ff16101561149857818160ff168151811061143557611435614575565b6020026020010151601c6000858460ff168151811061145657611456614575565b602002602001015160ff1660ff1681526020019081526020016000209080519060200190611485929190613b8d565b5080611490816146b9565b915050611414565b50505050565b6114a96000336118a0565b6114c55760405162461bcd60e51b8152600401610a6d9061468e565b8051610a80906014906020840190613b09565b6000818152600260205260408120546001600160a01b031680610a405760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a6d565b61155a6000336118a0565b6115765760405162461bcd60e51b8152600401610a6d9061454b565b808211156115c65760405162461bcd60e51b815260206004820152601760248201527f74696d6550726553616c65203c3d2074696d6553616c650000000000000000006044820152606401610a6d565b6011829055601281905560408051838152602081018390527f43c4edb49dabdf0c50d82b5fb62f464006ac49aeac99bd44dc514d2d19a3a55391015b60405180910390a15050565b60006001600160a01b0382166116795760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a6d565b506001600160a01b031660009081526003602052604090205490565b600c546001600160a01b036101009091041633146116f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6d565b6112196000612995565b61170a6000336118a0565b6117265760405162461bcd60e51b8152600401610a6d9061468e565b60178190556040518181527f914960aef5e033ce5cae8a7992d4b7a6f0f9741227b66acb67c605b7019f8a469060200161119c565b6117857f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336118a0565b6117c55760405162461bcd60e51b81526020600482015260116024820152706e656564732070617573657220726f6c6560781b6044820152606401610a6d565b6112196129ef565b6060601a805480602002602001604051908101604052809291908181526020016000905b8282101561183e576000848152602090819020604080518082019091529084015463ffffffff8116825264010000000090046001600160a01b0316818301528252600190920191016117f1565b50505050905090565b6000828152600e6020526040812061185f9083612a6a565b9392505050565b6118716000336118a0565b61188d5760405162461bcd60e51b8152600401610a6d9061454b565b8051610a80906016906020840190613b09565b6000918252600d602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610cc8906145ba565b6118e56000336118a0565b6119015760405162461bcd60e51b8152600401610a6d9061468e565b8260198560ff168154811061191857611918614575565b9060005260206000209060030201600001908051906020019061193c929190613b09565b508160198560ff168154811061195457611954614575565b90600052602060002090600302016001019080519060200190611978929190613c2e565b508060198560ff168154811061199057611990614575565b906000526020600020906003020160020190805190602001906119b4929190613b09565b5050505050565b6119c66000336118a0565b6119e25760405162461bcd60e51b8152600401610a6d9061454b565b6119eb82612446565b15611a305760405162461bcd60e51b8152602060048201526015602482015274151bdad95b881a185cc81899595b881b5a5b9d1959605a1b6044820152606401610a6d565b816000108015611a4257506013548211155b611a835760405162461bcd60e51b8152602060048201526012602482015271151bdad95b9259081a5cc81a5b9d985b1a5960721b6044820152606401610a6d565b6001600160a01b0381166000908152601860205260409020805460ff19166001179055610a808183612a76565b60006012544210611ac25750600f5490565b5060105490565b610a80338383612a90565b611adf6000336118a0565b611afb5760405162461bcd60e51b8152600401610a6d9061454b565b60408051808201825263ffffffff8481168083526001600160a01b038581166020808601828152601a805460018101825560009190915287517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e90910180549251909516640100000000026001600160c01b03199092169616959095179490941790915584519182529181019190915290917f1778dff4a614fbaf366ec49b3a2c8f624adb1faaf5f583aff68f98407d9ddf4c910160405180910390a1505050565b611bc73383612522565b611be35760405162461bcd60e51b8152600401610a6d906145f4565b61149884848484612b5e565b611bf883612446565b15611c3d5760405162461bcd60e51b8152602060048201526015602482015274151bdad95b881a185cc81899595b881b5a5b9d1959605a1b6044820152606401610a6d565b826000108015611c4f57506013548311155b611c905760405162461bcd60e51b8152602060048201526012602482015271151bdad95b9259081a5cc81a5b9d985b1a5960721b6044820152606401610a6d565b611c98611084565b1515600114611cd75760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206f6e2053616c6560a81b6044820152606401610a6d565b601254421015611e08576040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611d56838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050612b91565b611d9a5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b6044820152606401610a6d565b3360009081526018602052604090205460ff1615611dec5760405162461bcd60e51b815260206004820152600f60248201526e12185cc81899595b881b5a5b9d1959608a1b6044820152606401610a6d565b50336000908152601860205260409020805460ff191660011790555b611e10611ab0565b3414611e515760405162461bcd60e51b815260206004820152601060248201526f141c9a58d9481a5cc81a5b9d985b1a5960821b6044820152606401610a6d565b610ee33384612a76565b6000611e65611084565b801561109b575050601254421090565b6000611e7f611084565b611e8b57506000610a40565b611e93611e5b565b15611f3f576040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611f0d848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050612b91565b611f1b576000915050610a40565b3360009081526018602052604090205460ff1615611f3d576000915050610a40565b505b50600192915050565b6060611f5382612446565b611fb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a6d565b6060611fc283612ba7565b60166014611fcf86612ba7565b6015611fda88612ca7565b604051602001611fef96959493929190614771565b604051602081830303815290604052905061200981612fa8565b6040516020016120199190614852565b604051602081830303815290604052915050919050565b6000818152600e60205260408120610a4090613111565b6000828152600d602052604090206001015461206381336127b3565b610ee38383612839565b600c546001600160a01b036101009091041633146120cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6d565b6001600160a01b0381166121325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6d565b6112ad81612995565b6121466000336118a0565b6121625760405162461bcd60e51b8152600401610a6d9061454b565b600f819055601082905560408051838152602081018390527ff9317dc3bc6dda0e00e43855c2c30847aeafb8dcea9d2ce86e9ce7a83d549f019101611602565b6121ad6000336118a0565b6121c95760405162461bcd60e51b8152600401610a6d9061468e565b6121ed60405180606001604052806060815260200160608152602001606081525090565b8381526020808201849052604082018390526019805460018101825560009190915282518051849360039093027f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695019261224b928492910190613b09565b5060208281015180516122649260018501920190613c2e565b5060408201518051612280916002840191602090910190613b09565b50505050505050565b61229382826118a0565b610a80576000828152600d602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122cb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061185f836001600160a01b03841661311b565b60006001600160e01b03198216635a05180f60e01b1480610a405750610a408261316a565b6127106001600160601b03821611156123b75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a6d565b6001600160a01b03821661240d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a6d565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b6000908152600260205260409020546001600160a01b0316151590565b604080514360208201526001600160601b03193360601b16918101919091526054810182905260009083906074016040516020818303038152906040528051906020012060001c61185f9190614897565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124e9826114d8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061252d82612446565b61258e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a6d565b6000612599836114d8565b9050806001600160a01b0316846001600160a01b031614806125d45750836001600160a01b03166125c984610d4b565b6001600160a01b0316145b8061260457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661261f826114d8565b6001600160a01b0316146126835760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a6d565b6001600160a01b0382166126e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6d565b6126f083838361318f565b6126fb6000826124b4565b6001600160a01b03831660009081526003602052604081208054600192906127249084906148ab565b90915550506001600160a01b03821660009081526003602052604081208054600192906127529084906148c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6127bd82826118a0565b610a80576127d5816001600160a01b0316601461319a565b6127e083602061319a565b6040516020016127f19291906148da565b60408051601f198184030181529082905262461bcd60e51b8252610a6d91600401613e21565b6128218282612289565b6000828152600e60205260409020610ee3908261230f565b6128438282613335565b6000828152600e60205260409020610ee3908261339c565b600c5460ff166128a45760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a6d565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006128f9826114d8565b90506129078160008461318f565b6129126000836124b4565b6001600160a01b038116600090815260036020526040812080546001929061293b9084906148ab565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5460ff1615612a355760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a6d565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128d13390565b600061185f83836133b1565b610a808282604051806020016040528060008152506133db565b816001600160a01b0316836001600160a01b031603612af15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a6d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b6984848461260c565b612b758484848461340e565b6114985760405162461bcd60e51b8152600401610a6d9061494f565b600082612b9e858461350f565b14949350505050565b606081600003612bce5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bf85780612be2816145a1565b9150612bf19050600a8361467a565b9150612bd2565b6000816001600160401b03811115612c1257612c12613f01565b6040519080825280601f01601f191660200182016040528015612c3c576020820181803683370190505b5090505b841561260457612c516001836148ab565b9150612c5e600a86614897565b612c699060306148c2565b60f81b818381518110612c7e57612c7e614575565b60200101906001600160f81b031916908160001a905350612ca0600a8661467a565b9450612c40565b6060600080612cb76001856148ab565b60408051808201909152600f81526e2261747472696275746573223a205b60881b602082015290915061080b60f21b60005b60195460ff82161015612e7a5760198160ff1681548110612d0c57612d0c614575565b9060005260206000209060030201600201600285612d2a919061467a565b8154612d35906145ba565b8110612d4357612d43614575565b815460011615612d625790600052602060002090602091828204019190065b9054600160f81b911a0260f81c9450612d7c600285614897565b600003612d8e5784600f169450612d99565b60048560ff16901c94505b8260198260ff1681548110612db057612db0614575565b906000526020600020906003020160000160198360ff1681548110612dd757612dd7614575565b90600052602060002090600302016001018760ff1681548110612dfc57612dfc614575565b90600052602060002001846001601980549050612e1991906148ab565b8560ff1614612e29576001612e2c565b60005b60ff1660028110612e3f57612e3f614575565b1a60f81b604051602001612e5694939291906149a1565b60405160208183030381529060405292508080612e72906146b9565b915050612ce9565b5060ff86166000908152601c6020908152604080832080548251818502810185019093528083529192909190830182828015612ef357602002820191906000526020600020906000905b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411612ec45790505b5050505050905060005b81518160ff161015612f7b5783601b838360ff1681518110612f2157612f21614575565b602002602001015160ff1681548110612f3c57612f3c614575565b90600052602060002001604051602001612f57929190614a22565b60405160208183030381529060405293508080612f73906146b9565b915050612efd565b5082604051602001612f8d9190614a7c565b60408051601f19818403018152919052979650505050505050565b80516060906000819003612fcc575050604080516020810190915260008152919050565b60006003612fdb8360026148c2565b612fe5919061467a565b612ff0906004614645565b90506000612fff8260206148c2565b6001600160401b0381111561301657613016613f01565b6040519080825280601f01601f191660200182016040528015613040576020820181803683370190505b5090506000604051806060016040528060408152602001614b29604091399050600181016020830160005b868110156130cc576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161306b565b5060038606600181146130e657600281146130f757613103565b613d3d60f01b600119830152613103565b603d60f81b6000198301525b505050918152949350505050565b6000610a40825490565b600081815260018301602052604081205461316257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610a40565b506000610a40565b60006001600160e01b03198216637965db0b60e01b1480610a405750610a4082613583565b610ee38383836135a8565b606060006131a9836002614645565b6131b49060026148c2565b6001600160401b038111156131cb576131cb613f01565b6040519080825280601f01601f1916602001820160405280156131f5576020820181803683370190505b509050600360fc1b8160008151811061321057613210614575565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061323f5761323f614575565b60200101906001600160f81b031916908160001a9053506000613263846002614645565b61326e9060016148c2565b90505b60018111156132e6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106132a2576132a2614575565b1a60f81b8282815181106132b8576132b8614575565b60200101906001600160f81b031916908160001a90535060049490941c936132df81614aa1565b9050613271565b50831561185f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a6d565b61333f82826118a0565b15610a80576000828152600d602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061185f836001600160a01b03841661361a565b60008260000182815481106133c8576133c8614575565b9060005260206000200154905092915050565b6133e5838361370d565b6133f2600084848461340e565b610ee35760405162461bcd60e51b8152600401610a6d9061494f565b60006001600160a01b0384163b1561350457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613452903390899088908890600401614ab8565b6020604051808303816000875af192505050801561348d575060408051601f3d908101601f1916820190925261348a91810190614af5565b60015b6134ea573d8080156134bb576040519150601f19603f3d011682016040523d82523d6000602084013e6134c0565b606091505b5080516000036134e25760405162461bcd60e51b8152600401610a6d9061494f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612604565b506001949350505050565b600081815b845181101561357b57600085828151811061353157613531614575565b602002602001015190508083116135575760008381526020829052604090209250613568565b600081815260208490526040902092505b5080613573816145a1565b915050613514565b509392505050565b60006001600160e01b0319821663152a902d60e11b1480610a405750610a408261384c565b6135b3838383613871565b600c5460ff1615610ee35760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610a6d565b6000818152600183016020526040812054801561370357600061363e6001836148ab565b8554909150600090613652906001906148ab565b90508181146136b757600086600001828154811061367257613672614575565b906000526020600020015490508087600001848154811061369557613695614575565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806136c8576136c8614b12565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610a40565b6000915050610a40565b6001600160a01b0382166137635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a6d565b61376c81612446565b156137b95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a6d565b6137c56000838361318f565b6001600160a01b03821660009081526003602052604081208054600192906137ee9084906148c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b0319821663780e9d6360e01b1480610a405750610a4082613929565b6001600160a01b0383166138cc576138c781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6138ef565b816001600160a01b0316836001600160a01b0316146138ef576138ef8382613979565b6001600160a01b03821661390657610ee381613a16565b826001600160a01b0316826001600160a01b031614610ee357610ee38282613ac5565b60006001600160e01b031982166380ac58cd60e01b148061395a57506001600160e01b03198216635b5e139f60e01b145b80610a4057506301ffc9a760e01b6001600160e01b0319831614610a40565b600060016139868461160e565b61399091906148ab565b6000838152600760205260409020549091508082146139e3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613a28906001906148ab565b60008381526009602052604081205460088054939450909284908110613a5057613a50614575565b906000526020600020015490508060088381548110613a7157613a71614575565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613aa957613aa9614b12565b6001900381819060005260206000200160009055905550505050565b6000613ad08361160e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613b15906145ba565b90600052602060002090601f016020900481019282613b375760008555613b7d565b82601f10613b5057805160ff1916838001178555613b7d565b82800160010185558215613b7d579182015b82811115613b7d578251825591602001919060010190613b62565b50613b89929150613c87565b5090565b82805482825590600052602060002090601f01602090048101928215613b7d5791602002820160005b83821115613bf457835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302613bb6565b8015613c215782816101000a81549060ff0219169055600101602081600001049283019260010302613bf4565b5050613b89929150613c87565b828054828255906000526020600020908101928215613c7b579160200282015b82811115613c7b5782518051613c6b918491602090910190613b09565b5091602001919060010190613c4e565b50613b89929150613c9c565b5b80821115613b895760008155600101613c88565b80821115613b89576000613cb08282613cb9565b50600101613c9c565b508054613cc5906145ba565b6000825580601f10613cd5575050565b601f0160209004906000526020600020908101906112ad9190613c87565b6001600160e01b0319811681146112ad57600080fd5b600060208284031215613d1b57600080fd5b813561185f81613cf3565b80356001600160a01b0381168114613d3d57600080fd5b919050565b60008060408385031215613d5557600080fd5b613d5e83613d26565b915060208301356001600160601b0381168114613d7a57600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613dbd57835183529284019291840191600101613da1565b50909695505050505050565b60005b83811015613de4578181015183820152602001613dcc565b838111156114985750506000910152565b60008151808452613e0d816020860160208601613dc9565b601f01601f19169290920160200192915050565b60208152600061185f6020830184613df5565b600060208284031215613e4657600080fd5b5035919050565b60008060408385031215613e6057600080fd5b613e6983613d26565b946020939093013593505050565b600080600060608486031215613e8c57600080fd5b613e9584613d26565b9250613ea360208501613d26565b9150604084013590509250925092565b60008060408385031215613ec657600080fd5b50508035926020909101359150565b60008060408385031215613ee857600080fd5b82359150613ef860208401613d26565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613f3f57613f3f613f01565b604052919050565b60006001600160401b03821115613f6057613f60613f01565b5060051b60200190565b600082601f830112613f7b57600080fd5b81356001600160401b03811115613f9457613f94613f01565b613fa7601f8201601f1916602001613f17565b818152846020838601011115613fbc57600080fd5b816020850160208301376000918101602001919091529392505050565b600082601f830112613fea57600080fd5b81356020613fff613ffa83613f47565b613f17565b82815260059290921b8401810191818101908684111561401e57600080fd5b8286015b8481101561405d5780356001600160401b038111156140415760008081fd5b61404f8986838b0101613f6a565b845250918301918301614022565b509695505050505050565b803560ff81168114613d3d57600080fd5b600082601f83011261408a57600080fd5b8135602061409a613ffa83613f47565b82815260059290921b840181019181810190868411156140b957600080fd5b8286015b8481101561405d576140ce81614068565b83529183019183016140bd565b6000806000606084860312156140f057600080fd5b83356001600160401b038082111561410757600080fd5b61411387838801613fd9565b945060209150818601358181111561412a57600080fd5b61413688828901614079565b94505060408601358181111561414b57600080fd5b8601601f8101881361415c57600080fd5b803561416a613ffa82613f47565b81815260059190911b8201840190848101908a83111561418957600080fd5b8584015b838110156141c1578035868111156141a55760008081fd5b6141b38d8983890101614079565b84525091860191860161418d565b508096505050505050509250925092565b6000602082840312156141e457600080fd5b81356001600160401b038111156141fa57600080fd5b61260484828501613f6a565b60006020828403121561421857600080fd5b61185f82613d26565b602080825282518282018190526000919060409081850190868401855b82811015614272578151805163ffffffff1685528601516001600160a01b031686850152928401929085019060010161423e565b5091979650505050505050565b6000806000806080858703121561429557600080fd5b61429e85614068565b935060208501356001600160401b03808211156142ba57600080fd5b6142c688838901613f6a565b945060408701359150808211156142dc57600080fd5b6142e888838901613fd9565b935060608701359150808211156142fe57600080fd5b5061430b87828801613f6a565b91505092959194509250565b6000806040838503121561432a57600080fd5b61433383613d26565b915060208301358015158114613d7a57600080fd5b6000806040838503121561435b57600080fd5b823563ffffffff8116811461436f57600080fd5b9150613ef860208401613d26565b6000806000806080858703121561439357600080fd5b61439c85613d26565b93506143aa60208601613d26565b92506040850135915060608501356001600160401b038111156143cc57600080fd5b61430b87828801613f6a565b60008083601f8401126143ea57600080fd5b5081356001600160401b0381111561440157600080fd5b6020830191508360208260051b8501011115610fc157600080fd5b60008060006040848603121561443157600080fd5b8335925060208401356001600160401b0381111561444e57600080fd5b61445a868287016143d8565b9497909650939450505050565b6000806020838503121561447a57600080fd5b82356001600160401b0381111561449057600080fd5b61449c858286016143d8565b90969095509350505050565b600080604083850312156144bb57600080fd5b61436f83613d26565b6000806000606084860312156144d957600080fd5b83356001600160401b03808211156144f057600080fd5b6144fc87838801613f6a565b9450602086013591508082111561451257600080fd5b61451e87838801613fd9565b9350604086013591508082111561453457600080fd5b5061454186828701613f6a565b9150509250925092565b60208082526010908201526f6e656564732061646d696e20726f6c6560801b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016145b3576145b361458b565b5060010190565b600181811c908216806145ce57607f821691505b6020821081036145ee57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600081600019048311821515161561465f5761465f61458b565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261468957614689614664565b500490565b6020808252601190820152706e65656473206d696e74657220726f6c6560781b604082015260600190565b600060ff821660ff81036146cf576146cf61458b565b60010192915050565b8054600090600181811c90808316806146f257607f831692505b6020808410820361471357634e487b7160e01b600052602260045260246000fd5b818015614727576001811461473857614765565b60ff19861689528489019650614765565b60008881526020902060005b8681101561475d5781548b820152908501908301614744565b505084890196505b50505050505092915050565b727b226e616d65223a224b5552494d555355202360681b815286516000906147a0816013850160208c01613dc9565b701116113232b9b1b934b83a34b7b7111d1160791b6013918401918201526147cb60248201896146d8565b6a11161134b6b0b3b2911d1160a91b815290506147eb600b8201886146d8565b9050602f60f81b81528551614807816001840160208a01613dc9565b614816600182840101876146d8565b91505061088b60f21b81528351614834816002840160208801613dc9565b607d60f81b6002929091019182015260030198975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161488a81601d850160208701613dc9565b91909101601d0192915050565b6000826148a6576148a6614664565b500690565b6000828210156148bd576148bd61458b565b500390565b600082198211156148d5576148d561458b565b500190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614912816017850160208801613dc9565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614943816028840160208801613dc9565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600085516149b3818460208a01613dc9565b6e3d913a3930b4ba2fba3cb832911d1160891b9083019081526149d9600f8201876146d8565b6a1116113b30b63ab2911d1160a91b815290506149f9600b8201866146d8565b61227d60f01b81526001600160f81b031994909416600285015250506003909101949350505050565b60008351614a34818460208801613dc9565b7f2c7b2274726169745f74797065223a2272617265222c2276616c7565223a2200908301908152614a68601f8201856146d8565b61227d60f01b815260020195945050505050565b60008251614a8e818460208701613dc9565b605d60f81b920191825250600101919050565b600081614ab057614ab061458b565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614aeb90830184613df5565b9695505050505050565b600060208284031215614b0757600080fd5b815161185f81613cf3565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122045425d0245d944f99fee7cee7e2045ac41114ea92ee58f339a2f0b335b76beb264736f6c634300080d0033697066733a2f2f516d54684b357364337459345a423456675559526364656d3732324256455431734571337044704d38636f7650320000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084b7572696d75737500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b524d5300000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103505760003560e01c80637cb64759116101c6578063a22cb465116100f7578063ca15c87311610095578063e985e9c51161006f578063e985e9c51461098c578063f2fde38b146109d5578063f7d97577146109f5578063fa8cc67314610a1557600080fd5b8063ca15c87314610918578063d547741f14610938578063e63ab1e91461095857600080fd5b8063ba41b0c6116100d1578063ba41b0c6146108b0578063c262099b146108c3578063c6cbb948146108d8578063c87b56dd146108f857600080fd5b8063a22cb46514610850578063a76190be14610870578063b88d4fde1461089057600080fd5b806390c3f38f116101645780639a7453731161013e5780639a745373146107f35780639b6eae2014610813578063a035b1fe14610826578063a217fddf1461083b57600080fd5b806390c3f38f1461079e57806391d14854146107be57806395d89b41146107de57600080fd5b80638456cb59116101a05780638456cb59146107245780638870455f146107395780638da5cb5b1461075b5780639010d07c1461077e57600080fd5b80637cb64759146106d85780637eb9f466146106f857806383f043421461070e57600080fd5b806336568abe116102a057806355f804b31161023e5780636e0b24aa116102185780636e0b24aa1461066d57806370a082311461068d578063715018a6146106ad5780637501f741146106c257600080fd5b806355f804b3146106155780635c975abb146106355780636352211e1461064d57600080fd5b806342842e0e1161027a57806342842e0e1461059557806342966c68146105b55780634f6ccce7146105d557806350d5a4ba146105f557600080fd5b806336568abe1461054b5780633ccfd60b1461056b5780633f4ba83a1461058057600080fd5b806318160ddd1161030d5780632a55205a116102e75780632a55205a146104b75780632f2ff15d146104f65780632f745c5914610516578063326687b91461053657600080fd5b806318160ddd1461044857806323b872dd14610467578063248a9ca31461048757600080fd5b806301ffc9a71461035557806304634d8d1461038a57806306a49fce146103ac57806306fdde03146103ce578063081812fc146103f0578063095ea7b314610428575b600080fd5b34801561036157600080fd5b50610375610370366004613d09565b610a35565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004613d42565b610a46565b005b3480156103b857600080fd5b506103c1610a84565b6040516103819190613d85565b3480156103da57600080fd5b506103e3610cb9565b6040516103819190613e21565b3480156103fc57600080fd5b5061041061040b366004613e34565b610d4b565b6040516001600160a01b039091168152602001610381565b34801561043457600080fd5b506103aa610443366004613e4d565b610dd3565b34801561045457600080fd5b506008545b604051908152602001610381565b34801561047357600080fd5b506103aa610482366004613e77565b610ee8565b34801561049357600080fd5b506104596104a2366004613e34565b6000908152600d602052604090206001015490565b3480156104c357600080fd5b506104d76104d2366004613eb3565b610f1a565b604080516001600160a01b039093168352602083019190915201610381565b34801561050257600080fd5b506103aa610511366004613ed5565b610fc8565b34801561052257600080fd5b50610459610531366004613e4d565b610fee565b34801561054257600080fd5b50610375611084565b34801561055757600080fd5b506103aa610566366004613ed5565b6110a0565b34801561057757600080fd5b506103aa61111a565b34801561058c57600080fd5b506103aa6111a7565b3480156105a157600080fd5b506103aa6105b0366004613e77565b61121b565b3480156105c157600080fd5b506103aa6105d0366004613e34565b611236565b3480156105e157600080fd5b506104596105f0366004613e34565b6112b0565b34801561060157600080fd5b506103aa6106103660046140db565b611343565b34801561062157600080fd5b506103aa6106303660046141d2565b61149e565b34801561064157600080fd5b50600c5460ff16610375565b34801561065957600080fd5b50610410610668366004613e34565b6114d8565b34801561067957600080fd5b506103aa610688366004613eb3565b61154f565b34801561069957600080fd5b506104596106a8366004614206565b61160e565b3480156106b957600080fd5b506103aa611695565b3480156106ce57600080fd5b5061045960135481565b3480156106e457600080fd5b506103aa6106f3366004613e34565b6116ff565b34801561070457600080fd5b5061045960125481565b34801561071a57600080fd5b5061045960115481565b34801561073057600080fd5b506103aa61175b565b34801561074557600080fd5b5061074e6117cd565b6040516103819190614221565b34801561076757600080fd5b50600c5461010090046001600160a01b0316610410565b34801561078a57600080fd5b50610410610799366004613eb3565b611847565b3480156107aa57600080fd5b506103aa6107b93660046141d2565b611866565b3480156107ca57600080fd5b506103756107d9366004613ed5565b6118a0565b3480156107ea57600080fd5b506103e36118cb565b3480156107ff57600080fd5b506103aa61080e36600461427f565b6118da565b6103aa610821366004613ed5565b6119bb565b34801561083257600080fd5b50610459611ab0565b34801561084757600080fd5b50610459600081565b34801561085c57600080fd5b506103aa61086b366004614317565b611ac9565b34801561087c57600080fd5b506103aa61088b366004614348565b611ad4565b34801561089c57600080fd5b506103aa6108ab36600461437d565b611bbd565b6103aa6108be36600461441c565b611bef565b3480156108cf57600080fd5b50610375611e5b565b3480156108e457600080fd5b506103756108f3366004614467565b611e75565b34801561090457600080fd5b506103e3610913366004613e34565b611f48565b34801561092457600080fd5b50610459610933366004613e34565b612030565b34801561094457600080fd5b506103aa610953366004613ed5565b612047565b34801561096457600080fd5b506104597f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b34801561099857600080fd5b506103756109a73660046144a8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e157600080fd5b506103aa6109f0366004614206565b61206d565b348015610a0157600080fd5b506103aa610a10366004613eb3565b61213b565b348015610a2157600080fd5b506103aa610a303660046144c4565b6121a2565b6000610a4082612324565b92915050565b610a516000336118a0565b610a765760405162461bcd60e51b8152600401610a6d9061454b565b60405180910390fd5b610a808282612349565b5050565b6060610a8e611084565b610ac85760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206f6e2073616c6560a81b6044820152606401610a6d565b6013546003906000906001600160401b03811115610ae857610ae8613f01565b604051908082528060200260200182016040528015610b11578160200160208202803683370190505b509050600060015b6013548111610b6d57610b2b81612446565b610b5b5780838381518110610b4257610b42614575565b602090810291909101015281610b57816145a1565b9250505b80610b65816145a1565b915050610b19565b50808310610b7b5780610b7d565b825b925060005b83811015610c19576000610b968383612463565b9050838181518110610baa57610baa614575565b6020026020010151848381518110610bc457610bc4614575565b6020026020010151858481518110610bde57610bde614575565b60200260200101868481518110610bf757610bf7614575565b6020908102919091010191909152525080610c11816145a1565b915050610b82565b50826001600160401b03811115610c3257610c32613f01565b604051908082528060200260200182016040528015610c5b578160200160208202803683370190505b50935060005b83811015610cb257828181518110610c7b57610c7b614575565b6020026020010151858281518110610c9557610c95614575565b602090810291909101015280610caa816145a1565b915050610c61565b5050505090565b606060008054610cc8906145ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf4906145ba565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b5050505050905090565b6000610d5682612446565b610db75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a6d565b506000908152600460205260409020546001600160a01b031690565b6000610dde826114d8565b9050806001600160a01b0316836001600160a01b031603610e4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a6d565b336001600160a01b0382161480610e675750610e6781336109a7565b610ed95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a6d565b610ee383836124b4565b505050565b610ef3335b82612522565b610f0f5760405162461bcd60e51b8152600401610a6d906145f4565b610ee383838361260c565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f8f575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610fae906001600160601b031687614645565b610fb8919061467a565b91519350909150505b9250929050565b6000828152600d6020526040902060010154610fe481336127b3565b610ee38383612817565b6000610ff98361160e565b821061105b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a6d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000601154421015801561109b5750601354600854105b905090565b6001600160a01b03811633146111105760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a6d565b610a808282612839565b6111256000336118a0565b6111415760405162461bcd60e51b8152600401610a6d9061454b565b604051339081904780156108fc02916000818181858888f1935050505015801561116f573d6000803e3d6000fd5b506040514781527f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d906020015b60405180910390a150565b6111d17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336118a0565b6112115760405162461bcd60e51b81526020600482015260116024820152706e656564732070617573657220726f6c6560781b6044820152606401610a6d565b61121961285b565b565b610ee383838360405180602001604052806000815250611bbd565b61123f33610eed565b6112a45760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a6d565b6112ad816128ee565b50565b60006112bb60085490565b821061131e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a6d565b6008828154811061133157611331614575565b90600052602060002001549050919050565b61134e6000336118a0565b61136a5760405162461bcd60e51b8152600401610a6d9061468e565b60008351116113a55760405162461bcd60e51b81526020600482015260076024820152661a5b9d985b1a5960ca1b6044820152606401610a6d565b60005b83518160ff16101561141057601b848260ff16815181106113cb576113cb614575565b602090810291909101810151825460018101845560009384529282902081516113fd9491909101929190910190613b09565b5080611408816146b9565b9150506113a8565b5060005b82518160ff16101561149857818160ff168151811061143557611435614575565b6020026020010151601c6000858460ff168151811061145657611456614575565b602002602001015160ff1660ff1681526020019081526020016000209080519060200190611485929190613b8d565b5080611490816146b9565b915050611414565b50505050565b6114a96000336118a0565b6114c55760405162461bcd60e51b8152600401610a6d9061468e565b8051610a80906014906020840190613b09565b6000818152600260205260408120546001600160a01b031680610a405760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a6d565b61155a6000336118a0565b6115765760405162461bcd60e51b8152600401610a6d9061454b565b808211156115c65760405162461bcd60e51b815260206004820152601760248201527f74696d6550726553616c65203c3d2074696d6553616c650000000000000000006044820152606401610a6d565b6011829055601281905560408051838152602081018390527f43c4edb49dabdf0c50d82b5fb62f464006ac49aeac99bd44dc514d2d19a3a55391015b60405180910390a15050565b60006001600160a01b0382166116795760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a6d565b506001600160a01b031660009081526003602052604090205490565b600c546001600160a01b036101009091041633146116f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6d565b6112196000612995565b61170a6000336118a0565b6117265760405162461bcd60e51b8152600401610a6d9061468e565b60178190556040518181527f914960aef5e033ce5cae8a7992d4b7a6f0f9741227b66acb67c605b7019f8a469060200161119c565b6117857f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336118a0565b6117c55760405162461bcd60e51b81526020600482015260116024820152706e656564732070617573657220726f6c6560781b6044820152606401610a6d565b6112196129ef565b6060601a805480602002602001604051908101604052809291908181526020016000905b8282101561183e576000848152602090819020604080518082019091529084015463ffffffff8116825264010000000090046001600160a01b0316818301528252600190920191016117f1565b50505050905090565b6000828152600e6020526040812061185f9083612a6a565b9392505050565b6118716000336118a0565b61188d5760405162461bcd60e51b8152600401610a6d9061454b565b8051610a80906016906020840190613b09565b6000918252600d602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610cc8906145ba565b6118e56000336118a0565b6119015760405162461bcd60e51b8152600401610a6d9061468e565b8260198560ff168154811061191857611918614575565b9060005260206000209060030201600001908051906020019061193c929190613b09565b508160198560ff168154811061195457611954614575565b90600052602060002090600302016001019080519060200190611978929190613c2e565b508060198560ff168154811061199057611990614575565b906000526020600020906003020160020190805190602001906119b4929190613b09565b5050505050565b6119c66000336118a0565b6119e25760405162461bcd60e51b8152600401610a6d9061454b565b6119eb82612446565b15611a305760405162461bcd60e51b8152602060048201526015602482015274151bdad95b881a185cc81899595b881b5a5b9d1959605a1b6044820152606401610a6d565b816000108015611a4257506013548211155b611a835760405162461bcd60e51b8152602060048201526012602482015271151bdad95b9259081a5cc81a5b9d985b1a5960721b6044820152606401610a6d565b6001600160a01b0381166000908152601860205260409020805460ff19166001179055610a808183612a76565b60006012544210611ac25750600f5490565b5060105490565b610a80338383612a90565b611adf6000336118a0565b611afb5760405162461bcd60e51b8152600401610a6d9061454b565b60408051808201825263ffffffff8481168083526001600160a01b038581166020808601828152601a805460018101825560009190915287517f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e90910180549251909516640100000000026001600160c01b03199092169616959095179490941790915584519182529181019190915290917f1778dff4a614fbaf366ec49b3a2c8f624adb1faaf5f583aff68f98407d9ddf4c910160405180910390a1505050565b611bc73383612522565b611be35760405162461bcd60e51b8152600401610a6d906145f4565b61149884848484612b5e565b611bf883612446565b15611c3d5760405162461bcd60e51b8152602060048201526015602482015274151bdad95b881a185cc81899595b881b5a5b9d1959605a1b6044820152606401610a6d565b826000108015611c4f57506013548311155b611c905760405162461bcd60e51b8152602060048201526012602482015271151bdad95b9259081a5cc81a5b9d985b1a5960721b6044820152606401610a6d565b611c98611084565b1515600114611cd75760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206f6e2053616c6560a81b6044820152606401610a6d565b601254421015611e08576040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611d56838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050612b91565b611d9a5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b6044820152606401610a6d565b3360009081526018602052604090205460ff1615611dec5760405162461bcd60e51b815260206004820152600f60248201526e12185cc81899595b881b5a5b9d1959608a1b6044820152606401610a6d565b50336000908152601860205260409020805460ff191660011790555b611e10611ab0565b3414611e515760405162461bcd60e51b815260206004820152601060248201526f141c9a58d9481a5cc81a5b9d985b1a5960821b6044820152606401610a6d565b610ee33384612a76565b6000611e65611084565b801561109b575050601254421090565b6000611e7f611084565b611e8b57506000610a40565b611e93611e5b565b15611f3f576040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611f0d848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050612b91565b611f1b576000915050610a40565b3360009081526018602052604090205460ff1615611f3d576000915050610a40565b505b50600192915050565b6060611f5382612446565b611fb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a6d565b6060611fc283612ba7565b60166014611fcf86612ba7565b6015611fda88612ca7565b604051602001611fef96959493929190614771565b604051602081830303815290604052905061200981612fa8565b6040516020016120199190614852565b604051602081830303815290604052915050919050565b6000818152600e60205260408120610a4090613111565b6000828152600d602052604090206001015461206381336127b3565b610ee38383612839565b600c546001600160a01b036101009091041633146120cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6d565b6001600160a01b0381166121325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6d565b6112ad81612995565b6121466000336118a0565b6121625760405162461bcd60e51b8152600401610a6d9061454b565b600f819055601082905560408051838152602081018390527ff9317dc3bc6dda0e00e43855c2c30847aeafb8dcea9d2ce86e9ce7a83d549f019101611602565b6121ad6000336118a0565b6121c95760405162461bcd60e51b8152600401610a6d9061468e565b6121ed60405180606001604052806060815260200160608152602001606081525090565b8381526020808201849052604082018390526019805460018101825560009190915282518051849360039093027f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695019261224b928492910190613b09565b5060208281015180516122649260018501920190613c2e565b5060408201518051612280916002840191602090910190613b09565b50505050505050565b61229382826118a0565b610a80576000828152600d602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122cb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061185f836001600160a01b03841661311b565b60006001600160e01b03198216635a05180f60e01b1480610a405750610a408261316a565b6127106001600160601b03821611156123b75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a6d565b6001600160a01b03821661240d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a6d565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b6000908152600260205260409020546001600160a01b0316151590565b604080514360208201526001600160601b03193360601b16918101919091526054810182905260009083906074016040516020818303038152906040528051906020012060001c61185f9190614897565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124e9826114d8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061252d82612446565b61258e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a6d565b6000612599836114d8565b9050806001600160a01b0316846001600160a01b031614806125d45750836001600160a01b03166125c984610d4b565b6001600160a01b0316145b8061260457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661261f826114d8565b6001600160a01b0316146126835760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a6d565b6001600160a01b0382166126e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6d565b6126f083838361318f565b6126fb6000826124b4565b6001600160a01b03831660009081526003602052604081208054600192906127249084906148ab565b90915550506001600160a01b03821660009081526003602052604081208054600192906127529084906148c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6127bd82826118a0565b610a80576127d5816001600160a01b0316601461319a565b6127e083602061319a565b6040516020016127f19291906148da565b60408051601f198184030181529082905262461bcd60e51b8252610a6d91600401613e21565b6128218282612289565b6000828152600e60205260409020610ee3908261230f565b6128438282613335565b6000828152600e60205260409020610ee3908261339c565b600c5460ff166128a45760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a6d565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006128f9826114d8565b90506129078160008461318f565b6129126000836124b4565b6001600160a01b038116600090815260036020526040812080546001929061293b9084906148ab565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5460ff1615612a355760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a6d565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128d13390565b600061185f83836133b1565b610a808282604051806020016040528060008152506133db565b816001600160a01b0316836001600160a01b031603612af15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a6d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b6984848461260c565b612b758484848461340e565b6114985760405162461bcd60e51b8152600401610a6d9061494f565b600082612b9e858461350f565b14949350505050565b606081600003612bce5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bf85780612be2816145a1565b9150612bf19050600a8361467a565b9150612bd2565b6000816001600160401b03811115612c1257612c12613f01565b6040519080825280601f01601f191660200182016040528015612c3c576020820181803683370190505b5090505b841561260457612c516001836148ab565b9150612c5e600a86614897565b612c699060306148c2565b60f81b818381518110612c7e57612c7e614575565b60200101906001600160f81b031916908160001a905350612ca0600a8661467a565b9450612c40565b6060600080612cb76001856148ab565b60408051808201909152600f81526e2261747472696275746573223a205b60881b602082015290915061080b60f21b60005b60195460ff82161015612e7a5760198160ff1681548110612d0c57612d0c614575565b9060005260206000209060030201600201600285612d2a919061467a565b8154612d35906145ba565b8110612d4357612d43614575565b815460011615612d625790600052602060002090602091828204019190065b9054600160f81b911a0260f81c9450612d7c600285614897565b600003612d8e5784600f169450612d99565b60048560ff16901c94505b8260198260ff1681548110612db057612db0614575565b906000526020600020906003020160000160198360ff1681548110612dd757612dd7614575565b90600052602060002090600302016001018760ff1681548110612dfc57612dfc614575565b90600052602060002001846001601980549050612e1991906148ab565b8560ff1614612e29576001612e2c565b60005b60ff1660028110612e3f57612e3f614575565b1a60f81b604051602001612e5694939291906149a1565b60405160208183030381529060405292508080612e72906146b9565b915050612ce9565b5060ff86166000908152601c6020908152604080832080548251818502810185019093528083529192909190830182828015612ef357602002820191906000526020600020906000905b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411612ec45790505b5050505050905060005b81518160ff161015612f7b5783601b838360ff1681518110612f2157612f21614575565b602002602001015160ff1681548110612f3c57612f3c614575565b90600052602060002001604051602001612f57929190614a22565b60405160208183030381529060405293508080612f73906146b9565b915050612efd565b5082604051602001612f8d9190614a7c565b60408051601f19818403018152919052979650505050505050565b80516060906000819003612fcc575050604080516020810190915260008152919050565b60006003612fdb8360026148c2565b612fe5919061467a565b612ff0906004614645565b90506000612fff8260206148c2565b6001600160401b0381111561301657613016613f01565b6040519080825280601f01601f191660200182016040528015613040576020820181803683370190505b5090506000604051806060016040528060408152602001614b29604091399050600181016020830160005b868110156130cc576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161306b565b5060038606600181146130e657600281146130f757613103565b613d3d60f01b600119830152613103565b603d60f81b6000198301525b505050918152949350505050565b6000610a40825490565b600081815260018301602052604081205461316257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610a40565b506000610a40565b60006001600160e01b03198216637965db0b60e01b1480610a405750610a4082613583565b610ee38383836135a8565b606060006131a9836002614645565b6131b49060026148c2565b6001600160401b038111156131cb576131cb613f01565b6040519080825280601f01601f1916602001820160405280156131f5576020820181803683370190505b509050600360fc1b8160008151811061321057613210614575565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061323f5761323f614575565b60200101906001600160f81b031916908160001a9053506000613263846002614645565b61326e9060016148c2565b90505b60018111156132e6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106132a2576132a2614575565b1a60f81b8282815181106132b8576132b8614575565b60200101906001600160f81b031916908160001a90535060049490941c936132df81614aa1565b9050613271565b50831561185f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a6d565b61333f82826118a0565b15610a80576000828152600d602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061185f836001600160a01b03841661361a565b60008260000182815481106133c8576133c8614575565b9060005260206000200154905092915050565b6133e5838361370d565b6133f2600084848461340e565b610ee35760405162461bcd60e51b8152600401610a6d9061494f565b60006001600160a01b0384163b1561350457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613452903390899088908890600401614ab8565b6020604051808303816000875af192505050801561348d575060408051601f3d908101601f1916820190925261348a91810190614af5565b60015b6134ea573d8080156134bb576040519150601f19603f3d011682016040523d82523d6000602084013e6134c0565b606091505b5080516000036134e25760405162461bcd60e51b8152600401610a6d9061494f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612604565b506001949350505050565b600081815b845181101561357b57600085828151811061353157613531614575565b602002602001015190508083116135575760008381526020829052604090209250613568565b600081815260208490526040902092505b5080613573816145a1565b915050613514565b509392505050565b60006001600160e01b0319821663152a902d60e11b1480610a405750610a408261384c565b6135b3838383613871565b600c5460ff1615610ee35760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610a6d565b6000818152600183016020526040812054801561370357600061363e6001836148ab565b8554909150600090613652906001906148ab565b90508181146136b757600086600001828154811061367257613672614575565b906000526020600020015490508087600001848154811061369557613695614575565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806136c8576136c8614b12565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610a40565b6000915050610a40565b6001600160a01b0382166137635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a6d565b61376c81612446565b156137b95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a6d565b6137c56000838361318f565b6001600160a01b03821660009081526003602052604081208054600192906137ee9084906148c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b0319821663780e9d6360e01b1480610a405750610a4082613929565b6001600160a01b0383166138cc576138c781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6138ef565b816001600160a01b0316836001600160a01b0316146138ef576138ef8382613979565b6001600160a01b03821661390657610ee381613a16565b826001600160a01b0316826001600160a01b031614610ee357610ee38282613ac5565b60006001600160e01b031982166380ac58cd60e01b148061395a57506001600160e01b03198216635b5e139f60e01b145b80610a4057506301ffc9a760e01b6001600160e01b0319831614610a40565b600060016139868461160e565b61399091906148ab565b6000838152600760205260409020549091508082146139e3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613a28906001906148ab565b60008381526009602052604081205460088054939450909284908110613a5057613a50614575565b906000526020600020015490508060088381548110613a7157613a71614575565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613aa957613aa9614b12565b6001900381819060005260206000200160009055905550505050565b6000613ad08361160e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613b15906145ba565b90600052602060002090601f016020900481019282613b375760008555613b7d565b82601f10613b5057805160ff1916838001178555613b7d565b82800160010185558215613b7d579182015b82811115613b7d578251825591602001919060010190613b62565b50613b89929150613c87565b5090565b82805482825590600052602060002090601f01602090048101928215613b7d5791602002820160005b83821115613bf457835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302613bb6565b8015613c215782816101000a81549060ff0219169055600101602081600001049283019260010302613bf4565b5050613b89929150613c87565b828054828255906000526020600020908101928215613c7b579160200282015b82811115613c7b5782518051613c6b918491602090910190613b09565b5091602001919060010190613c4e565b50613b89929150613c9c565b5b80821115613b895760008155600101613c88565b80821115613b89576000613cb08282613cb9565b50600101613c9c565b508054613cc5906145ba565b6000825580601f10613cd5575050565b601f0160209004906000526020600020908101906112ad9190613c87565b6001600160e01b0319811681146112ad57600080fd5b600060208284031215613d1b57600080fd5b813561185f81613cf3565b80356001600160a01b0381168114613d3d57600080fd5b919050565b60008060408385031215613d5557600080fd5b613d5e83613d26565b915060208301356001600160601b0381168114613d7a57600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613dbd57835183529284019291840191600101613da1565b50909695505050505050565b60005b83811015613de4578181015183820152602001613dcc565b838111156114985750506000910152565b60008151808452613e0d816020860160208601613dc9565b601f01601f19169290920160200192915050565b60208152600061185f6020830184613df5565b600060208284031215613e4657600080fd5b5035919050565b60008060408385031215613e6057600080fd5b613e6983613d26565b946020939093013593505050565b600080600060608486031215613e8c57600080fd5b613e9584613d26565b9250613ea360208501613d26565b9150604084013590509250925092565b60008060408385031215613ec657600080fd5b50508035926020909101359150565b60008060408385031215613ee857600080fd5b82359150613ef860208401613d26565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613f3f57613f3f613f01565b604052919050565b60006001600160401b03821115613f6057613f60613f01565b5060051b60200190565b600082601f830112613f7b57600080fd5b81356001600160401b03811115613f9457613f94613f01565b613fa7601f8201601f1916602001613f17565b818152846020838601011115613fbc57600080fd5b816020850160208301376000918101602001919091529392505050565b600082601f830112613fea57600080fd5b81356020613fff613ffa83613f47565b613f17565b82815260059290921b8401810191818101908684111561401e57600080fd5b8286015b8481101561405d5780356001600160401b038111156140415760008081fd5b61404f8986838b0101613f6a565b845250918301918301614022565b509695505050505050565b803560ff81168114613d3d57600080fd5b600082601f83011261408a57600080fd5b8135602061409a613ffa83613f47565b82815260059290921b840181019181810190868411156140b957600080fd5b8286015b8481101561405d576140ce81614068565b83529183019183016140bd565b6000806000606084860312156140f057600080fd5b83356001600160401b038082111561410757600080fd5b61411387838801613fd9565b945060209150818601358181111561412a57600080fd5b61413688828901614079565b94505060408601358181111561414b57600080fd5b8601601f8101881361415c57600080fd5b803561416a613ffa82613f47565b81815260059190911b8201840190848101908a83111561418957600080fd5b8584015b838110156141c1578035868111156141a55760008081fd5b6141b38d8983890101614079565b84525091860191860161418d565b508096505050505050509250925092565b6000602082840312156141e457600080fd5b81356001600160401b038111156141fa57600080fd5b61260484828501613f6a565b60006020828403121561421857600080fd5b61185f82613d26565b602080825282518282018190526000919060409081850190868401855b82811015614272578151805163ffffffff1685528601516001600160a01b031686850152928401929085019060010161423e565b5091979650505050505050565b6000806000806080858703121561429557600080fd5b61429e85614068565b935060208501356001600160401b03808211156142ba57600080fd5b6142c688838901613f6a565b945060408701359150808211156142dc57600080fd5b6142e888838901613fd9565b935060608701359150808211156142fe57600080fd5b5061430b87828801613f6a565b91505092959194509250565b6000806040838503121561432a57600080fd5b61433383613d26565b915060208301358015158114613d7a57600080fd5b6000806040838503121561435b57600080fd5b823563ffffffff8116811461436f57600080fd5b9150613ef860208401613d26565b6000806000806080858703121561439357600080fd5b61439c85613d26565b93506143aa60208601613d26565b92506040850135915060608501356001600160401b038111156143cc57600080fd5b61430b87828801613f6a565b60008083601f8401126143ea57600080fd5b5081356001600160401b0381111561440157600080fd5b6020830191508360208260051b8501011115610fc157600080fd5b60008060006040848603121561443157600080fd5b8335925060208401356001600160401b0381111561444e57600080fd5b61445a868287016143d8565b9497909650939450505050565b6000806020838503121561447a57600080fd5b82356001600160401b0381111561449057600080fd5b61449c858286016143d8565b90969095509350505050565b600080604083850312156144bb57600080fd5b61436f83613d26565b6000806000606084860312156144d957600080fd5b83356001600160401b03808211156144f057600080fd5b6144fc87838801613f6a565b9450602086013591508082111561451257600080fd5b61451e87838801613fd9565b9350604086013591508082111561453457600080fd5b5061454186828701613f6a565b9150509250925092565b60208082526010908201526f6e656564732061646d696e20726f6c6560801b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016145b3576145b361458b565b5060010190565b600181811c908216806145ce57607f821691505b6020821081036145ee57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600081600019048311821515161561465f5761465f61458b565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261468957614689614664565b500490565b6020808252601190820152706e65656473206d696e74657220726f6c6560781b604082015260600190565b600060ff821660ff81036146cf576146cf61458b565b60010192915050565b8054600090600181811c90808316806146f257607f831692505b6020808410820361471357634e487b7160e01b600052602260045260246000fd5b818015614727576001811461473857614765565b60ff19861689528489019650614765565b60008881526020902060005b8681101561475d5781548b820152908501908301614744565b505084890196505b50505050505092915050565b727b226e616d65223a224b5552494d555355202360681b815286516000906147a0816013850160208c01613dc9565b701116113232b9b1b934b83a34b7b7111d1160791b6013918401918201526147cb60248201896146d8565b6a11161134b6b0b3b2911d1160a91b815290506147eb600b8201886146d8565b9050602f60f81b81528551614807816001840160208a01613dc9565b614816600182840101876146d8565b91505061088b60f21b81528351614834816002840160208801613dc9565b607d60f81b6002929091019182015260030198975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161488a81601d850160208701613dc9565b91909101601d0192915050565b6000826148a6576148a6614664565b500690565b6000828210156148bd576148bd61458b565b500390565b600082198211156148d5576148d561458b565b500190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614912816017850160208801613dc9565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614943816028840160208801613dc9565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600085516149b3818460208a01613dc9565b6e3d913a3930b4ba2fba3cb832911d1160891b9083019081526149d9600f8201876146d8565b6a1116113b30b63ab2911d1160a91b815290506149f9600b8201866146d8565b61227d60f01b81526001600160f81b031994909416600285015250506003909101949350505050565b60008351614a34818460208801613dc9565b7f2c7b2274726169745f74797065223a2272617265222c2276616c7565223a2200908301908152614a68601f8201856146d8565b61227d60f01b815260020195945050505050565b60008251614a8e818460208701613dc9565b605d60f81b920191825250600101919050565b600081614ab057614ab061458b565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614aeb90830184613df5565b9695505050505050565b600060208284031215614b0757600080fd5b815161185f81613cf3565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122045425d0245d944f99fee7cee7e2045ac41114ea92ee58f339a2f0b335b76beb264736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084b7572696d75737500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b524d5300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Kurimusu
Arg [1] : symbol_ (string): KRMS
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 4b7572696d757375000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4b524d5300000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
89050:11234:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99742:263;;;;;;;;;;-1:-1:-1;99742:263:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;99742:263:0;;;;;;;;98144:219;;;;;;;;;;-1:-1:-1;98144:219:0;;;;;:::i;:::-;;:::i;:::-;;94913:767;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54678:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56237:221::-;;;;;;;;;;-1:-1:-1;56237:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2878:32:1;;;2860:51;;2848:2;2833:18;56237:221:0;2714:203:1;55760:411:0;;;;;;;;;;-1:-1:-1;55760:411:0;;;;;:::i;:::-;;:::i;69544:113::-;;;;;;;;;;-1:-1:-1;69632:10:0;:17;69544:113;;;3327:25:1;;;3315:2;3300:18;69544:113:0;3181:177:1;56987:339:0;;;;;;;;;;-1:-1:-1;56987:339:0;;;;;:::i;:::-;;:::i;15810:131::-;;;;;;;;;;-1:-1:-1;15810:131:0;;;;;:::i;:::-;15884:7;15911:12;;;:6;:12;;;;;:22;;;;15810:131;81722:494;;;;;;;;;;-1:-1:-1;81722:494:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4508:32:1;;;4490:51;;4572:2;4557:18;;4550:34;;;;4463:18;81722:494:0;4316:274:1;16203:147:0;;;;;;;;;;-1:-1:-1;16203:147:0;;;;;:::i;:::-;;:::i;69212:256::-;;;;;;;;;;-1:-1:-1;69212:256:0;;;;;:::i;:::-;;:::i;92556:132::-;;;;;;;;;;;;;:::i;17251:218::-;;;;;;;;;;-1:-1:-1;17251:218:0;;;;;:::i;:::-;;:::i;94632:273::-;;;;;;;;;;;;;:::i;99349:138::-;;;;;;;;;;;;;:::i;57397:185::-;;;;;;;;;;-1:-1:-1;57397:185:0;;;;;:::i;:::-;;:::i;75571:245::-;;;;;;;;;;-1:-1:-1;75571:245:0;;;;;:::i;:::-;;:::i;69734:233::-;;;;;;;;;;-1:-1:-1;69734:233:0;;;;;:::i;:::-;;:::i;97327:582::-;;;;;;;;;;-1:-1:-1;97327:582:0;;;;;:::i;:::-;;:::i;96369:171::-;;;;;;;;;;-1:-1:-1;96369:171:0;;;;;:::i;:::-;;:::i;76938:86::-;;;;;;;;;;-1:-1:-1;77009:7:0;;;;76938:86;;54372:239;;;;;;;;;;-1:-1:-1;54372:239:0;;;;;:::i;:::-;;:::i;98839:360::-;;;;;;;;;;-1:-1:-1;98839:360:0;;;;;:::i;:::-;;:::i;54102:208::-;;;;;;;;;;-1:-1:-1;54102:208:0;;;;;:::i;:::-;;:::i;2690:103::-;;;;;;;;;;;;;:::i;89620:28::-;;;;;;;;;;;;;;;;97917:219;;;;;;;;;;-1:-1:-1;97917:219:0;;;;;:::i;:::-;;:::i;89577:36::-;;;;;;;;;;;;;;;;89531:39;;;;;;;;;;;;;;;;99207:134;;;;;;;;;;;;;:::i;96257:104::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2039:87::-;;;;;;;;;;-1:-1:-1;2112:6:0;;;;;-1:-1:-1;;;;;2112:6:0;2039:87;;33305:153;;;;;;;;;;-1:-1:-1;33305:153:0;;;;;:::i;:::-;;:::i;98371:186::-;;;;;;;;;;-1:-1:-1;98371:186:0;;;;;:::i;:::-;;:::i;14679:147::-;;;;;;;;;;-1:-1:-1;14679:147:0;;;;;:::i;:::-;;:::i;54847:104::-;;;;;;;;;;;;;:::i;96945:374::-;;;;;;;;;;-1:-1:-1;96945:374:0;;;;;:::i;:::-;;:::i;93770:394::-;;;;;;:::i;:::-;;:::i;92818:126::-;;;;;;;;;;;;;:::i;13770:49::-;;;;;;;;;;-1:-1:-1;13770:49:0;13815:4;13770:49;;56530:155;;;;;;;;;;-1:-1:-1;56530:155:0;;;;;:::i;:::-;;:::i;95917:332::-;;;;;;;;;;-1:-1:-1;95917:332:0;;;;;:::i;:::-;;:::i;57653:328::-;;;;;;;;;;-1:-1:-1;57653:328:0;;;;;:::i;:::-;;:::i;92952:810::-;;;;;;:::i;:::-;;:::i;92696:114::-;;;;;;;;;;;;;:::i;94172:452::-;;;;;;;;;;-1:-1:-1;94172:452:0;;;;;:::i;:::-;;:::i;90468:863::-;;;;;;;;;;-1:-1:-1;90468:863:0;;;;;:::i;:::-;;:::i;33632:142::-;;;;;;;;;;-1:-1:-1;33632:142:0;;;;;:::i;:::-;;:::i;16595:149::-;;;;;;;;;;-1:-1:-1;16595:149:0;;;;;:::i;:::-;;:::i;89976:62::-;;;;;;;;;;;;90014:24;89976:62;;56756:164;;;;;;;;;;-1:-1:-1;56756:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;56877:25:0;;;56853:4;56877:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56756:164;2948:201;;;;;;;;;;-1:-1:-1;2948:201:0;;;;;:::i;:::-;;:::i;98565:266::-;;;;;;;;;;-1:-1:-1;98565:266:0;;;;;:::i;:::-;;:::i;96548:389::-;;;;;;;;;;-1:-1:-1;96548:389:0;;;;;:::i;:::-;;:::i;99742:263::-;99932:4;99961:36;99985:11;99961:23;:36::i;:::-;99954:43;99742:263;-1:-1:-1;;99742:263:0:o;98144:219::-;98238:41;13815:4;860:10;14679:147;:::i;98238:41::-;98230:70;;;;-1:-1:-1;;;98230:70:0;;;;;;;:::i;:::-;;;;;;;;;98311:44;98330:9;98341:13;98311:18;:44::i;:::-;98144:219;;:::o;94913:767::-;94959:20;95000:8;:6;:8::i;:::-;94992:32;;;;-1:-1:-1;;;94992:32:0;;16221:2:1;94992:32:0;;;16203:21:1;16260:2;16240:18;;;16233:30;-1:-1:-1;;;16279:18:1;;;16272:41;16330:18;;94992:32:0;16019:335:1;94992:32:0;95106:7;;95055:1;;95035:17;;-1:-1:-1;;;;;95092:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;95092:22:0;-1:-1:-1;95067:47:0;-1:-1:-1;95125:11:0;95164:1;95147:155;95172:7;;95167:1;:12;95147:155;;95206:10;95214:1;95206:7;:10::i;:::-;95201:90;;95250:1;95237:5;95243:3;95237:10;;;;;;;;:::i;:::-;;;;;;;;;;:14;95270:5;;;;:::i;:::-;;;;95201:90;95181:3;;;;:::i;:::-;;;;95147:155;;;;95336:3;95324:9;:15;:33;;95354:3;95324:33;;;95342:9;95324:33;95312:45;;95373:9;95368:149;95392:9;95388:1;:13;95368:149;;;95423:9;95435:12;95440:3;95445:1;95435:4;:12::i;:::-;95423:24;;95486:5;95492:1;95486:8;;;;;;;;:::i;:::-;;;;;;;95496:5;95502:1;95496:8;;;;;;;;:::i;:::-;;;;;;;95463:5;95469:1;95463:8;;;;;;;;:::i;:::-;;;;;;95473:5;95479:1;95473:8;;;;;;;;:::i;:::-;;;;;;;;;;95462:43;;;;;-1:-1:-1;95403:3:0;;;;:::i;:::-;;;;95368:149;;;;95547:9;-1:-1:-1;;;;;95533:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;95533:24:0;;95527:30;;95573:9;95568:84;95592:9;95588:1;:13;95568:84;;;95632:5;95638:1;95632:8;;;;;;;;:::i;:::-;;;;;;;95623:3;95627:1;95623:6;;;;;;;;:::i;:::-;;;;;;;;;;:17;95603:3;;;;:::i;:::-;;;;95568:84;;;;95662:10;;;94913:767;:::o;54678:100::-;54732:13;54765:5;54758:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54678:100;:::o;56237:221::-;56313:7;56341:16;56349:7;56341;:16::i;:::-;56333:73;;;;-1:-1:-1;;;56333:73:0;;17350:2:1;56333:73:0;;;17332:21:1;17389:2;17369:18;;;17362:30;17428:34;17408:18;;;17401:62;-1:-1:-1;;;17479:18:1;;;17472:42;17531:19;;56333:73:0;17148:408:1;56333:73:0;-1:-1:-1;56426:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;56426:24:0;;56237:221::o;55760:411::-;55841:13;55857:23;55872:7;55857:14;:23::i;:::-;55841:39;;55905:5;-1:-1:-1;;;;;55899:11:0;:2;-1:-1:-1;;;;;55899:11:0;;55891:57;;;;-1:-1:-1;;;55891:57:0;;17763:2:1;55891:57:0;;;17745:21:1;17802:2;17782:18;;;17775:30;17841:34;17821:18;;;17814:62;-1:-1:-1;;;17892:18:1;;;17885:31;17933:19;;55891:57:0;17561:397:1;55891:57:0;860:10;-1:-1:-1;;;;;55983:21:0;;;;:62;;-1:-1:-1;56008:37:0;56025:5;860:10;56756:164;:::i;56008:37::-;55961:168;;;;-1:-1:-1;;;55961:168:0;;18165:2:1;55961:168:0;;;18147:21:1;18204:2;18184:18;;;18177:30;18243:34;18223:18;;;18216:62;18314:26;18294:18;;;18287:54;18358:19;;55961:168:0;17963:420:1;55961:168:0;56142:21;56151:2;56155:7;56142:8;:21::i;:::-;55830:341;55760:411;;:::o;56987:339::-;57182:41;860:10;57201:12;57215:7;57182:18;:41::i;:::-;57174:103;;;;-1:-1:-1;;;57174:103:0;;;;;;;:::i;:::-;57290:28;57300:4;57306:2;57310:7;57290:9;:28::i;81722:494::-;81866:7;81929:27;;;:17;:27;;;;;;;;81900:56;;;;;;;;;-1:-1:-1;;;;;81900:56:0;;;;;-1:-1:-1;;;81900:56:0;;;-1:-1:-1;;;;;81900:56:0;;;;;;;;81866:7;;81969:92;;-1:-1:-1;82020:29:0;;;;;;;;;82030:19;82020:29;-1:-1:-1;;;;;82020:29:0;;;;-1:-1:-1;;;82020:29:0;;-1:-1:-1;;;;;82020:29:0;;;;;81969:92;82111:23;;;;82073:21;;82582:5;;82098:36;;-1:-1:-1;;;;;82098:36:0;:10;:36;:::i;:::-;82097:58;;;;:::i;:::-;82176:16;;;-1:-1:-1;82073:82:0;;-1:-1:-1;;81722:494:0;;;;;;:::o;16203:147::-;15884:7;15911:12;;;:6;:12;;;;;:22;;;14261:30;14272:4;860:10;14261;:30::i;:::-;16317:25:::1;16328:4;16334:7;16317:10;:25::i;69212:256::-:0;69309:7;69345:23;69362:5;69345:16;:23::i;:::-;69337:5;:31;69329:87;;;;-1:-1:-1;;;69329:87:0;;19438:2:1;69329:87:0;;;19420:21:1;19477:2;19457:18;;;19450:30;19516:34;19496:18;;;19489:62;-1:-1:-1;;;19567:18:1;;;19560:41;19618:19;;69329:87:0;19236:407:1;69329:87:0;-1:-1:-1;;;;;;69434:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;69212:256::o;92556:132::-;92595:4;92639:11;;92620:15;:30;;92619:61;;;;-1:-1:-1;92672:7:0;;69632:10;:17;92656:23;92619:61;92612:68;;92556:132;:::o;17251:218::-;-1:-1:-1;;;;;17347:23:0;;860:10;17347:23;17339:83;;;;-1:-1:-1;;;17339:83:0;;19850:2:1;17339:83:0;;;19832:21:1;19889:2;19869:18;;;19862:30;19928:34;19908:18;;;19901:62;-1:-1:-1;;;19979:18:1;;;19972:45;20034:19;;17339:83:0;19648:411:1;17339:83:0;17435:26;17447:4;17453:7;17435:11;:26::i;94632:273::-;94678:41;13815:4;860:10;14679:147;:::i;94678:41::-;94670:70;;;;-1:-1:-1;;;94670:70:0;;;;;;;:::i;:::-;94810:40;;860:10;;;;94828:21;94810:40;;;;;94751:24;94810:40;94751:24;94810:40;94828:21;860:10;94810:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;94866:31:0;;94875:21;3327:25:1;;94866:31:0;;3315:2:1;3300:18;94866:31:0;;;;;;;;94659:246;94632:273::o;99349:138::-;99402:34;90014:24;860:10;14679:147;:::i;99402:34::-;99394:64;;;;-1:-1:-1;;;99394:64:0;;20266:2:1;99394:64:0;;;20248:21:1;20305:2;20285:18;;;20278:30;-1:-1:-1;;;20324:18:1;;;20317:47;20381:18;;99394:64:0;20064:341:1;99394:64:0;99469:10;:8;:10::i;:::-;99349:138::o;57397:185::-;57535:39;57552:4;57558:2;57562:7;57535:39;;;;;;;;;;;;:16;:39::i;75571:245::-;75689:41;860:10;75708:12;780:98;75689:41;75681:102;;;;-1:-1:-1;;;75681:102:0;;20612:2:1;75681:102:0;;;20594:21:1;20651:2;20631:18;;;20624:30;20690:34;20670:18;;;20663:62;-1:-1:-1;;;20741:18:1;;;20734:46;20797:19;;75681:102:0;20410:412:1;75681:102:0;75794:14;75800:7;75794:5;:14::i;:::-;75571:245;:::o;69734:233::-;69809:7;69845:30;69632:10;:17;;69544:113;69845:30;69837:5;:38;69829:95;;;;-1:-1:-1;;;69829:95:0;;21029:2:1;69829:95:0;;;21011:21:1;21068:2;21048:18;;;21041:30;21107:34;21087:18;;;21080:62;-1:-1:-1;;;21158:18:1;;;21151:42;21210:19;;69829:95:0;20827:408:1;69829:95:0;69942:10;69953:5;69942:17;;;;;;;;:::i;:::-;;;;;;;;;69935:24;;69734:233;;;:::o;97327:582::-;97492:41;13815:4;860:10;14679:147;:::i;97492:41::-;97484:71;;;;-1:-1:-1;;;97484:71:0;;;;;;;:::i;:::-;97658:1;97636:12;:19;:23;97628:43;;;;-1:-1:-1;;;97628:43:0;;21788:2:1;97628:43:0;;;21770:21:1;21827:1;21807:18;;;21800:29;-1:-1:-1;;;21845:18:1;;;21838:37;21892:18;;97628:43:0;21586:330:1;97628:43:0;97687:7;97682:109;97704:12;:19;97700:1;:23;;;97682:109;;;97745:12;97763;97776:1;97763:15;;;;;;;;;;:::i;:::-;;;;;;;;;;;;97745:34;;;;;;;-1:-1:-1;97745:34:0;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;97725:3:0;;;;:::i;:::-;;;;97682:109;;;;97806:7;97801:101;97823:6;:13;97819:1;:17;;;97801:101;;;97881:6;97888:1;97881:9;;;;;;;;;;:::i;:::-;;;;;;;97858;:20;97868:6;97875:1;97868:9;;;;;;;;;;:::i;:::-;;;;;;;97858:20;;;;;;;;;;;;;;;:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;97838:3:0;;;;:::i;:::-;;;;97801:101;;;;97327:582;;;:::o;96369:171::-;96439:41;13815:4;860:10;14679:147;:::i;96439:41::-;96431:71;;;;-1:-1:-1;;;96431:71:0;;;;;;;:::i;:::-;96513:19;;;;:8;;:19;;;;;:::i;54372:239::-;54444:7;54480:16;;;:7;:16;;;;;;-1:-1:-1;;;;;54480:16:0;;54507:73;;;;-1:-1:-1;;;54507:73:0;;22303:2:1;54507:73:0;;;22285:21:1;22342:2;22322:18;;;22315:30;22381:34;22361:18;;;22354:62;-1:-1:-1;;;22432:18:1;;;22425:39;22481:19;;54507:73:0;22101:405:1;98839:360:0;98932:41;13815:4;860:10;14679:147;:::i;98932:41::-;98924:70;;;;-1:-1:-1;;;98924:70:0;;;;;;;:::i;:::-;99029:9;99013:12;:25;;99005:61;;;;-1:-1:-1;;;99005:61:0;;22713:2:1;99005:61:0;;;22695:21:1;22752:2;22732:18;;;22725:30;22791:25;22771:18;;;22764:53;22834:18;;99005:61:0;22511:347:1;99005:61:0;99077:11;:26;;;99114:8;:20;;;99150:41;;;23037:25:1;;;23093:2;23078:18;;23071:34;;;99150:41:0;;23010:18:1;99150:41:0;;;;;;;;98839:360;;:::o;54102:208::-;54174:7;-1:-1:-1;;;;;54202:19:0;;54194:74;;;;-1:-1:-1;;;54194:74:0;;23318:2:1;54194:74:0;;;23300:21:1;23357:2;23337:18;;;23330:30;23396:34;23376:18;;;23369:62;-1:-1:-1;;;23447:18:1;;;23440:40;23497:19;;54194:74:0;23116:406:1;54194:74:0;-1:-1:-1;;;;;;54286:16:0;;;;;:9;:16;;;;;;;54102:208::o;2690:103::-;2112:6;;-1:-1:-1;;;;;2112:6:0;;;;;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;23729:2:1;2251:68:0;;;23711:21:1;;;23748:18;;;23741:30;23807:34;23787:18;;;23780:62;23859:18;;2251:68:0;23527:356:1;2251:68:0;2755:30:::1;2782:1;2755:18;:30::i;97917:219::-:0;97987:41;13815:4;860:10;14679:147;:::i;97987:41::-;97979:71;;;;-1:-1:-1;;;97979:71:0;;;;;;;:::i;:::-;98061:11;:25;;;98102:26;;3327:25:1;;;98102:26:0;;3315:2:1;3300:18;98102:26:0;3181:177:1;99207:134:0;99258:34;90014:24;860:10;14679:147;:::i;99258:34::-;99250:64;;;;-1:-1:-1;;;99250:64:0;;20266:2:1;99250:64:0;;;20248:21:1;20305:2;20285:18;;;20278:30;-1:-1:-1;;;20324:18:1;;;20317:47;20381:18;;99250:64:0;20064:341:1;99250:64:0;99325:8;:6;:8::i;96257:104::-;96301:20;96341:12;96334:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;96334:19:0;;;;;;;;;;;;;;;;;;;;;;96257:104;:::o;33305:153::-;33395:7;33422:18;;;:12;:18;;;;;:28;;33444:5;33422:21;:28::i;:::-;33415:35;33305:153;-1:-1:-1;;;33305:153:0:o;98371:186::-;98449:41;13815:4;860:10;14679:147;:::i;98449:41::-;98441:70;;;;-1:-1:-1;;;98441:70:0;;;;;;;:::i;:::-;98522:27;;;;:12;;:27;;;;;:::i;14679:147::-;14765:4;14789:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14789:29:0;;;;;;;;;;;;;;;14679:147::o;54847:104::-;54903:13;54936:7;54929:14;;;;;:::i;96945:374::-;97120:41;13815:4;860:10;14679:147;:::i;97120:41::-;97112:71;;;;-1:-1:-1;;;97112:71:0;;;;;;;:::i;:::-;97220:5;97194:6;97201:4;97194:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;:31;;;;;;;;;;;;:::i;:::-;;97263:12;97236:6;97243:4;97236:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;:39;;;;;;;;;;;;:::i;:::-;;97306:5;97286:6;97293:4;97286:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;:17;;:25;;;;;;;;;;;;:::i;:::-;;96945:374;;;;:::o;93770:394::-;93877:41;13815:4;860:10;14679:147;:::i;93877:41::-;93869:70;;;;-1:-1:-1;;;93869:70:0;;;;;;;:::i;:::-;93959:17;93967:8;93959:7;:17::i;:::-;93958:18;93950:52;;;;-1:-1:-1;;;93950:52:0;;24090:2:1;93950:52:0;;;24072:21:1;24129:2;24109:18;;;24102:30;-1:-1:-1;;;24148:18:1;;;24141:51;24209:18;;93950:52:0;23888:345:1;93950:52:0;94026:8;94022:1;:12;94021:39;;;;;94052:7;;94040:8;:19;;94021:39;94013:70;;;;-1:-1:-1;;;94013:70:0;;24440:2:1;94013:70:0;;;24422:21:1;24479:2;24459:18;;;24452:30;-1:-1:-1;;;24498:18:1;;;24491:48;24556:18;;94013:70:0;24238:342:1;94013:70:0;-1:-1:-1;;;;;94094:20:0;;;;;;:15;:20;;;;;:27;;-1:-1:-1;;94094:27:0;94117:4;94094:27;;;94132:24;94110:3;94147:8;94132:9;:24::i;92818:126::-;92856:7;92902:8;;92884:15;:26;92883:53;;-1:-1:-1;92930:6:0;;;92556:132::o;92883:53::-;-1:-1:-1;92914:13:0;;;92818:126::o;56530:155::-;56625:52;860:10;56658:8;56668;56625:18;:52::i;95917:332::-;95999:41;13815:4;860:10;14679:147;:::i;95999:41::-;95991:70;;;;-1:-1:-1;;;95991:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;96104:21:0;;;;;;;-1:-1:-1;;;;;96136:26:0;;;-1:-1:-1;;;;96136:26:0;;;96173:12;:21;;;;;;;-1:-1:-1;96173:21:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;96173:21:0;;;;;;;;;;;;;;;;96210:31;;24757:42:1;;;24815:18;;;24808:60;;;;-1:-1:-1;;96210:31:0;;24730:18:1;96210:31:0;;;;;;;95980:269;95917:332;;:::o;57653:328::-;57828:41;860:10;57861:7;57828:18;:41::i;:::-;57820:103;;;;-1:-1:-1;;;57820:103:0;;;;;;;:::i;:::-;57934:39;57948:4;57954:2;57958:7;57967:5;57934:13;:39::i;92952:810::-;93075:17;93083:8;93075:7;:17::i;:::-;93074:18;93066:52;;;;-1:-1:-1;;;93066:52:0;;24090:2:1;93066:52:0;;;24072:21:1;24129:2;24109:18;;;24102:30;-1:-1:-1;;;24148:18:1;;;24141:51;24209:18;;93066:52:0;23888:345:1;93066:52:0;93142:8;93138:1;:12;93137:39;;;;;93168:7;;93156:8;:19;;93137:39;93129:70;;;;-1:-1:-1;;;93129:70:0;;24440:2:1;93129:70:0;;;24422:21:1;24479:2;24459:18;;;24452:30;-1:-1:-1;;;24498:18:1;;;24491:48;24556:18;;93129:70:0;24238:342:1;93129:70:0;93218:8;:6;:8::i;:::-;:16;;93230:4;93218:16;93210:40;;;;-1:-1:-1;;;93210:40:0;;25081:2:1;93210:40:0;;;25063:21:1;25120:2;25100:18;;;25093:30;-1:-1:-1;;;25139:18:1;;;25132:41;25190:18;;93210:40:0;24879:335:1;93210:40:0;93283:8;;93265:15;:26;93261:388;;;93333:30;;-1:-1:-1;;;;;;860:10:0;25368:2:1;25364:15;25360:53;93333:30:0;;;25348:66:1;93308:12:0;;25430::1;;93333:30:0;;;;;;;;;;;;93323:41;;;;;;93308:56;;93405:51;93424:12;;93405:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;93438:11:0;;;-1:-1:-1;93451:4:0;;-1:-1:-1;93405:18:0;:51::i;:::-;93379:134;;;;-1:-1:-1;;;93379:134:0;;25655:2:1;93379:134:0;;;25637:21:1;25694:2;25674:18;;;25667:30;-1:-1:-1;;;25713:18:1;;;25706:51;25774:18;;93379:134:0;25453:345:1;93379:134:0;860:10;93537:29;;;;:15;:29;;;;;;;;93536:30;93528:58;;;;-1:-1:-1;;;93528:58:0;;26005:2:1;93528:58:0;;;25987:21:1;26044:2;26024:18;;;26017:30;-1:-1:-1;;;26063:18:1;;;26056:45;26118:18;;93528:58:0;25803:339:1;93528:58:0;-1:-1:-1;860:10:0;93601:29;;;;:15;:29;;;;;:36;;-1:-1:-1;;93601:36:0;93633:4;93601:36;;;93261:388;93680:7;:5;:7::i;:::-;93667:9;:20;93659:49;;;;-1:-1:-1;;;93659:49:0;;26349:2:1;93659:49:0;;;26331:21:1;26388:2;26368:18;;;26361:30;-1:-1:-1;;;26407:18:1;;;26400:46;26463:18;;93659:49:0;26147:340:1;93659:49:0;93721:33;860:10;93745:8;93721:9;:33::i;92696:114::-;92738:4;92762:8;:6;:8::i;:::-;:40;;;;-1:-1:-1;;92793:8:0;;92775:15;:26;;92696:114::o;94172:452::-;94271:4;94298:8;:6;:8::i;:::-;94293:27;;-1:-1:-1;94315:5:0;94308:12;;94293:27;94335:11;:9;:11::i;:::-;94331:264;;;94388:30;;-1:-1:-1;;;;;;860:10:0;25368:2:1;25364:15;25360:53;94388:30:0;;;25348:66:1;94363:12:0;;25430::1;;94388:30:0;;;;;;;;;;;;94378:41;;;;;;94363:56;;94439:51;94458:12;;94439:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;94472:11:0;;;-1:-1:-1;94485:4:0;;-1:-1:-1;94439:18:0;:51::i;:::-;94434:87;;94516:5;94509:12;;;;;94434:87;860:10;94540:29;;;;:15;:29;;;;;;;;94536:47;;;94578:5;94571:12;;;;;94536:47;94348:247;94331:264;-1:-1:-1;94612:4:0;94172:452;;;;:::o;90468:863::-;90570:13;90623:17;90631:8;90623:7;:17::i;:::-;90601:114;;;;-1:-1:-1;;;90601:114:0;;26694:2:1;90601:114:0;;;26676:21:1;26733:2;26713:18;;;26706:30;26772:34;26752:18;;;26745:62;-1:-1:-1;;;26823:18:1;;;26816:45;26878:19;;90601:114:0;26492:411:1;90601:114:0;90726:17;90828:19;:8;:17;:19::i;:::-;90896:12;90951:8;90992:19;:8;:17;:19::i;:::-;91026:8;91068:22;91081:8;91068:12;:22::i;:::-;90761:358;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90754:365;;91270:19;91284:4;91270:13;:19::i;:::-;91177:131;;;;;;;;:::i;:::-;;;;;;;;;;;;;91132:191;;;90468:863;;;:::o;33632:142::-;33712:7;33739:18;;;:12;:18;;;;;:27;;:25;:27::i;16595:149::-;15884:7;15911:12;;;:6;:12;;;;;:22;;;14261:30;14272:4;860:10;14261;:30::i;:::-;16710:26:::1;16722:4;16728:7;16710:11;:26::i;2948:201::-:0;2112:6;;-1:-1:-1;;;;;2112:6:0;;;;;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;23729:2:1;2251:68:0;;;23711:21:1;;;23748:18;;;23741:30;23807:34;23787:18;;;23780:62;23859:18;;2251:68:0;23527:356:1;2251:68:0;-1:-1:-1;;;;;3037:22:0;::::1;3029:73;;;::::0;-1:-1:-1;;;3029:73:0;;30580:2:1;3029:73:0::1;::::0;::::1;30562:21:1::0;30619:2;30599:18;;;30592:30;30658:34;30638:18;;;30631:62;-1:-1:-1;;;30709:18:1;;;30702:36;30755:19;;3029:73:0::1;30378:402:1::0;3029:73:0::1;3113:28;3132:8;3113:18;:28::i;98565:266::-:0;98648:41;13815:4;860:10;14679:147;:::i;98648:41::-;98640:70;;;;-1:-1:-1;;;98640:70:0;;;;;;;:::i;:::-;98721:6;:15;;;98747:13;:29;;;98792:31;;;23037:25:1;;;23093:2;23078:18;;23071:34;;;98792:31:0;;23010:18:1;98792:31:0;22863:248:1;96548:389:0;96702:41;13815:4;860:10;14679:147;:::i;96702:41::-;96694:71;;;;-1:-1:-1;;;96694:71:0;;;;;;;:::i;:::-;96776:21;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;96776:21:0;96808:23;;;96842:16;;;;:31;;;96884:9;;;:17;;;96912:6;:17;;;;;;;96808:15;96912:17;;;;;;;;96808:4;;96912:17;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;96912:17:0;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;96912:17:0;;;;;;;;;;;;;;;;;;:::i;:::-;;;;96683:254;96548:389;;;:::o;18752:238::-;18836:22;18844:4;18850:7;18836;:22::i;:::-;18831:152;;18875:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;18875:29:0;;;;;;;;;:36;;-1:-1:-1;;18875:36:0;18907:4;18875:36;;;18958:12;860:10;;780:98;18958:12;-1:-1:-1;;;;;18931:40:0;18949:7;-1:-1:-1;;;;;18931:40:0;18943:4;18931:40;;;;;;;;;;18752:238;;:::o;27225:152::-;27295:4;27319:50;27324:3;-1:-1:-1;;;;;27344:23:0;;27319:4;:50::i;32492:214::-;32577:4;-1:-1:-1;;;;;;32601:57:0;;-1:-1:-1;;;32601:57:0;;:97;;;32662:36;32686:11;32662:23;:36::i;82866:332::-;82582:5;-1:-1:-1;;;;;82969:33:0;;;;82961:88;;;;-1:-1:-1;;;82961:88:0;;30987:2:1;82961:88:0;;;30969:21:1;31026:2;31006:18;;;30999:30;31065:34;31045:18;;;31038:62;-1:-1:-1;;;31116:18:1;;;31109:40;31166:19;;82961:88:0;30785:406:1;82961:88:0;-1:-1:-1;;;;;83068:22:0;;83060:60;;;;-1:-1:-1;;;83060:60:0;;31398:2:1;83060:60:0;;;31380:21:1;31437:2;31417:18;;;31410:30;31476:27;31456:18;;;31449:55;31521:18;;83060:60:0;31196:349:1;83060:60:0;83155:35;;;;;;;;;-1:-1:-1;;;;;83155:35:0;;;;;;-1:-1:-1;;;;;83155:35:0;;;;;;;;;;-1:-1:-1;;;83133:57:0;;;;:19;:57;82866:332::o;59491:127::-;59556:4;59580:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59580:16:0;:30;;;59491:127::o;95688:221::-;95828:51;;;95845:12;95828:51;;;31735:19:1;-1:-1:-1;;;;;;860:10:0;31792:2:1;31788:15;31784:53;31770:12;;;31763:75;;;;31854:12;;;31847:28;;;95752:7:0;;95898:3;;31891:12:1;;95828:51:0;;;;;;;;;;;;95818:62;;;;;;95792:103;;:109;;;;:::i;63637:174::-;63712:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63712:29:0;-1:-1:-1;;;;;63712:29:0;;;;;;;;:24;;63766:23;63712:24;63766:14;:23::i;:::-;-1:-1:-1;;;;;63757:46:0;;;;;;;;;;;63637:174;;:::o;59785:348::-;59878:4;59903:16;59911:7;59903;:16::i;:::-;59895:73;;;;-1:-1:-1;;;59895:73:0;;32233:2:1;59895:73:0;;;32215:21:1;32272:2;32252:18;;;32245:30;32311:34;32291:18;;;32284:62;-1:-1:-1;;;32362:18:1;;;32355:42;32414:19;;59895:73:0;32031:408:1;59895:73:0;59979:13;59995:23;60010:7;59995:14;:23::i;:::-;59979:39;;60048:5;-1:-1:-1;;;;;60037:16:0;:7;-1:-1:-1;;;;;60037:16:0;;:51;;;;60081:7;-1:-1:-1;;;;;60057:31:0;:20;60069:7;60057:11;:20::i;:::-;-1:-1:-1;;;;;60057:31:0;;60037:51;:87;;;-1:-1:-1;;;;;;56877:25:0;;;56853:4;56877:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;60092:32;60029:96;59785:348;-1:-1:-1;;;;59785:348:0:o;62894:625::-;63053:4;-1:-1:-1;;;;;63026:31:0;:23;63041:7;63026:14;:23::i;:::-;-1:-1:-1;;;;;63026:31:0;;63018:81;;;;-1:-1:-1;;;63018:81:0;;32646:2:1;63018:81:0;;;32628:21:1;32685:2;32665:18;;;32658:30;32724:34;32704:18;;;32697:62;-1:-1:-1;;;32775:18:1;;;32768:35;32820:19;;63018:81:0;32444:401:1;63018:81:0;-1:-1:-1;;;;;63118:16:0;;63110:65;;;;-1:-1:-1;;;63110:65:0;;33052:2:1;63110:65:0;;;33034:21:1;33091:2;33071:18;;;33064:30;33130:34;33110:18;;;33103:62;-1:-1:-1;;;33181:18:1;;;33174:34;33225:19;;63110:65:0;32850:400:1;63110:65:0;63188:39;63209:4;63215:2;63219:7;63188:20;:39::i;:::-;63292:29;63309:1;63313:7;63292:8;:29::i;:::-;-1:-1:-1;;;;;63334:15:0;;;;;;:9;:15;;;;;:20;;63353:1;;63334:15;:20;;63353:1;;63334:20;:::i;:::-;;;;-1:-1:-1;;;;;;;63365:13:0;;;;;;:9;:13;;;;;:18;;63382:1;;63365:13;:18;;63382:1;;63365:18;:::i;:::-;;;;-1:-1:-1;;63394:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;63394:21:0;-1:-1:-1;;;;;63394:21:0;;;;;;;;;63433:27;;63394:16;;63433:27;;;;;;;55830:341;55760:411;;:::o;15116:505::-;15205:22;15213:4;15219:7;15205;:22::i;:::-;15200:414;;15393:41;15421:7;-1:-1:-1;;;;;15393:41:0;15431:2;15393:19;:41::i;:::-;15507:38;15535:4;15542:2;15507:19;:38::i;:::-;15298:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;15298:270:0;;;;;;;;;;-1:-1:-1;;;15244:358:0;;;;;;;:::i;33867:169::-;33955:31;33972:4;33978:7;33955:16;:31::i;:::-;33997:18;;;;:12;:18;;;;;:31;;34020:7;33997:22;:31::i;34130:174::-;34219:32;34237:4;34243:7;34219:17;:32::i;:::-;34262:18;;;;:12;:18;;;;;:34;;34288:7;34262:25;:34::i;77997:120::-;77009:7;;;;77533:41;;;;-1:-1:-1;;;77533:41:0;;34511:2:1;77533:41:0;;;34493:21:1;34550:2;34530:18;;;34523:30;-1:-1:-1;;;34569:18:1;;;34562:50;34629:18;;77533:41:0;34309:344:1;77533:41:0;78056:7:::1;:15:::0;;-1:-1:-1;;78056:15:0::1;::::0;;78087:22:::1;860:10:::0;78096:12:::1;78087:22;::::0;-1:-1:-1;;;;;2878:32:1;;;2860:51;;2848:2;2833:18;78087:22:0::1;;;;;;;77997:120::o:0;62137:420::-;62197:13;62213:23;62228:7;62213:14;:23::i;:::-;62197:39;;62249:48;62270:5;62285:1;62289:7;62249:20;:48::i;:::-;62338:29;62355:1;62359:7;62338:8;:29::i;:::-;-1:-1:-1;;;;;62380:16:0;;;;;;:9;:16;;;;;:21;;62400:1;;62380:16;:21;;62400:1;;62380:21;:::i;:::-;;;;-1:-1:-1;;62419:16:0;;;;:7;:16;;;;;;62412:23;;-1:-1:-1;;;;;;62412:23:0;;;62453:36;62427:7;;62419:16;-1:-1:-1;;;;;62453:36:0;;;;;62419:16;;62453:36;98144:219;;:::o;3309:191::-;3402:6;;;-1:-1:-1;;;;;3419:17:0;;;3402:6;3419:17;;;-1:-1:-1;;;;;;3419:17:0;;;;;;3452:40;;3402:6;;;;;;;;3452:40;;3383:16;;3452:40;3372:128;3309:191;:::o;77738:118::-;77009:7;;;;77263:9;77255:38;;;;-1:-1:-1;;;77255:38:0;;34860:2:1;77255:38:0;;;34842:21:1;34899:2;34879:18;;;34872:30;-1:-1:-1;;;34918:18:1;;;34911:46;34974:18;;77255:38:0;34658:340:1;77255:38:0;77798:7:::1;:14:::0;;-1:-1:-1;;77798:14:0::1;77808:4;77798:14;::::0;;77828:20:::1;77835:12;860:10:::0;;780:98;28521:158;28595:7;28646:22;28650:3;28662:5;28646:3;:22::i;60475:110::-;60551:26;60561:2;60565:7;60551:26;;;;;;;;;;;;:9;:26::i;63953:315::-;64108:8;-1:-1:-1;;;;;64099:17:0;:5;-1:-1:-1;;;;;64099:17:0;;64091:55;;;;-1:-1:-1;;;64091:55:0;;35205:2:1;64091:55:0;;;35187:21:1;35244:2;35224:18;;;35217:30;35283:27;35263:18;;;35256:55;35328:18;;64091:55:0;35003:349:1;64091:55:0;-1:-1:-1;;;;;64157:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;64157:46:0;;;;;;;;;;64219:41;;540::1;;;64219::0;;513:18:1;64219:41:0;;;;;;;63953:315;;;:::o;58863:::-;59020:28;59030:4;59036:2;59040:7;59020:9;:28::i;:::-;59067:48;59090:4;59096:2;59100:7;59109:5;59067:22;:48::i;:::-;59059:111;;;;-1:-1:-1;;;59059:111:0;;;;;;;:::i;85223:190::-;85348:4;85401;85372:25;85385:5;85392:4;85372:12;:25::i;:::-;:33;;85223:190;-1:-1:-1;;;;85223:190:0:o;8136:723::-;8192:13;8413:5;8422:1;8413:10;8409:53;;-1:-1:-1;;8440:10:0;;;;;;;;;;;;-1:-1:-1;;;8440:10:0;;;;;8136:723::o;8409:53::-;8487:5;8472:12;8528:78;8535:9;;8528:78;;8561:8;;;;:::i;:::-;;-1:-1:-1;8584:10:0;;-1:-1:-1;8592:2:0;8584:10;;:::i;:::-;;;8528:78;;;8616:19;8648:6;-1:-1:-1;;;;;8638:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8638:17:0;;8616:39;;8666:154;8673:10;;8666:154;;8700:11;8710:1;8700:11;;:::i;:::-;;-1:-1:-1;8769:10:0;8777:2;8769:5;:10;:::i;:::-;8756:24;;:2;:24;:::i;:::-;8743:39;;8726:6;8733;8726:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8726:56:0;;;;;;;;-1:-1:-1;8797:11:0;8806:2;8797:11;;:::i;:::-;;;8666:154;;91339:1209;91428:13;91459:9;;91497:12;91508:1;91497:8;:12;:::i;:::-;91520:37;;;;;;;;;;;;-1:-1:-1;;;91520:37:0;;;;91479:30;;-1:-1:-1;;;;91520:17:0;91598:557;91620:6;:13;91616:17;;;;91598:557;;;91667:6;91674:1;91667:9;;;;;;;;;;:::i;:::-;;;;;;;;;;;:14;;91692:1;91682:7;:11;;;;:::i;:::-;91667:27;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;91667:27:0;;;91661:34;;;-1:-1:-1;91714:11:0;91724:1;91714:7;:11;:::i;:::-;91729:1;91714:16;91710:127;;91757:3;91763;91757:9;91751:15;;91710:127;;;91820:1;91813:3;:8;;;;91807:14;;91710:127;91893:4;91952:6;91959:1;91952:9;;;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;92023:6;92030:1;92023:9;;;;;;;;;;:::i;:::-;;;;;;;;;;;:21;;92045:3;92023:26;;;;;;;;;;:::i;:::-;;;;;;;;92091:5;92118:1;92102:6;:13;;;;:17;;;;:::i;:::-;92097:1;:22;;;:30;;92126:1;92097:30;;;92122:1;92097:30;92091:37;;;;;;;;;:::i;:::-;;;;91858:285;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91851:292;;91635:3;;;;;:::i;:::-;;;;91598:557;;;-1:-1:-1;92188:26:0;;;92167:18;92188:26;;;:9;:26;;;;;;;;92167:47;;;;;;;;;;;;;;;;;;;92188:26;;92167:47;;;92188:26;92167:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92230:7;92225:241;92247:3;:10;92243:1;:14;;;92225:241;;;92321:4;92396:12;92409:3;92413:1;92409:6;;;;;;;;;;:::i;:::-;;;;;;;92396:20;;;;;;;;;;:::i;:::-;;;;;;;;92286:168;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92279:175;;92259:3;;;;;:::i;:::-;;;;92225:241;;;;92500:4;92483:27;;;;;;;;:::i;:::-;;;;-1:-1:-1;;92483:27:0;;;;;;;;;;91339:1209;-1:-1:-1;;;;;;;91339:1209:0:o;87091:1790::-;87189:11;;87149:13;;87175:11;87215:8;;;87211:23;;-1:-1:-1;;87225:9:0;;;;;;;;;-1:-1:-1;87225:9:0;;;87091:1790;-1:-1:-1;87091:1790:0:o;87211:23::-;87286:18;87324:1;87313:7;:3;87319:1;87313:7;:::i;:::-;87312:13;;;;:::i;:::-;87307:19;;:1;:19;:::i;:::-;87286:40;-1:-1:-1;87384:19:0;87416:15;87286:40;87429:2;87416:15;:::i;:::-;-1:-1:-1;;;;;87406:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87406:26:0;;87384:48;;87445:18;87466:5;;;;;;;;;;;;;;;;;87445:26;;87535:1;87528:5;87524:13;87580:2;87572:6;87568:15;87631:1;87599:960;87654:3;87651:1;87648:10;87599:960;;;87709:1;87752:12;;;;;87746:19;87847:4;87835:2;87831:14;;;;;87813:40;;87807:47;87999:2;87995:14;;;87991:25;;87977:40;;87971:47;88189:1;88185:13;;;88181:24;;88167:39;;88161:46;88370:16;;;;88356:31;;88350:38;87883:1;87879:11;;;88020:4;87967:58;;;87915:129;88069:11;;88157:57;;;88105:128;;;;88258:11;;88346:49;;88294:120;88443:3;88439:13;88472:22;;88542:1;88527:17;;;;87702:9;87599:960;;;87603:44;88591:1;88586:3;88582:11;88612:1;88607:84;;;;88710:1;88705:82;;;;88575:212;;88607:84;-1:-1:-1;;;;;88640:17:0;;88633:43;88607:84;;88705:82;-1:-1:-1;;;;;88738:17:0;;88731:41;88575:212;-1:-1:-1;;;88803:26:0;;;88810:6;87091:1790;-1:-1:-1;;;;87091:1790:0:o;28050:117::-;28113:7;28140:19;28148:3;23534:18;;23451:109;21140:414;21203:4;23333:19;;;:12;;;:19;;;;;;21220:327;;-1:-1:-1;21263:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;21446:18;;21424:19;;;:12;;;:19;;;;;;:40;;;;21479:11;;21220:327;-1:-1:-1;21530:5:0;21523:12;;14383:204;14468:4;-1:-1:-1;;;;;;14492:47:0;;-1:-1:-1;;;14492:47:0;;:87;;;14543:36;14567:11;14543:23;:36::i;99495:239::-;99681:45;99708:4;99714:2;99718:7;99681:26;:45::i;9437:451::-;9512:13;9538:19;9570:10;9574:6;9570:1;:10;:::i;:::-;:14;;9583:1;9570:14;:::i;:::-;-1:-1:-1;;;;;9560:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9560:25:0;;9538:47;;-1:-1:-1;;;9596:6:0;9603:1;9596:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;9596:15:0;;;;;;;;;-1:-1:-1;;;9622:6:0;9629:1;9622:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;9622:15:0;;;;;;;;-1:-1:-1;9653:9:0;9665:10;9669:6;9665:1;:10;:::i;:::-;:14;;9678:1;9665:14;:::i;:::-;9653:26;;9648:135;9685:1;9681;:5;9648:135;;;-1:-1:-1;;;9733:5:0;9741:3;9733:11;9720:25;;;;;;;:::i;:::-;;;;9708:6;9715:1;9708:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;9708:37:0;;;;;;;;-1:-1:-1;9770:1:0;9760:11;;;;;9688:3;;;:::i;:::-;;;9648:135;;;-1:-1:-1;9801:10:0;;9793:55;;;;-1:-1:-1;;;9793:55:0;;38386:2:1;9793:55:0;;;38368:21:1;;;38405:18;;;38398:30;38464:34;38444:18;;;38437:62;38516:18;;9793:55:0;38184:356:1;19122:239:0;19206:22;19214:4;19220:7;19206;:22::i;:::-;19202:152;;;19277:5;19245:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;19245:29:0;;;;;;;;;;:37;;-1:-1:-1;;19245:37:0;;;19302:40;860:10;;19245:12;;19302:40;;19277:5;19302:40;19122:239;;:::o;27553:158::-;27626:4;27650:53;27658:3;-1:-1:-1;;;;;27678:23:0;;27650:7;:53::i;23914:120::-;23981:7;24008:3;:11;;24020:5;24008:18;;;;;;;;:::i;:::-;;;;;;;;;24001:25;;23914:120;;;;:::o;60812:321::-;60942:18;60948:2;60952:7;60942:5;:18::i;:::-;60993:54;61024:1;61028:2;61032:7;61041:5;60993:22;:54::i;:::-;60971:154;;;;-1:-1:-1;;;60971:154:0;;;;;;;:::i;64833:799::-;64988:4;-1:-1:-1;;;;;65009:13:0;;45368:19;:23;65005:620;;65045:72;;-1:-1:-1;;;65045:72:0;;-1:-1:-1;;;;;65045:36:0;;;;;:72;;860:10;;65096:4;;65102:7;;65111:5;;65045:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65045:72:0;;;;;;;;-1:-1:-1;;65045:72:0;;;;;;;;;;;;:::i;:::-;;;65041:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65287:6;:13;65304:1;65287:18;65283:272;;65330:60;;-1:-1:-1;;;65330:60:0;;;;;;;:::i;65283:272::-;65505:6;65499:13;65490:6;65486:2;65482:15;65475:38;65041:529;-1:-1:-1;;;;;;65168:51:0;-1:-1:-1;;;65168:51:0;;-1:-1:-1;65161:58:0;;65005:620;-1:-1:-1;65609:4:0;64833:799;;;;;;:::o;85775:675::-;85858:7;85901:4;85858:7;85916:497;85940:5;:12;85936:1;:16;85916:497;;;85974:20;85997:5;86003:1;85997:8;;;;;;;;:::i;:::-;;;;;;;85974:31;;86040:12;86024;:28;86020:382;;86526:13;86576:15;;;86612:4;86605:15;;;86659:4;86643:21;;86152:57;;86020:382;;;86526:13;86576:15;;;86612:4;86605:15;;;86659:4;86643:21;;86329:57;;86020:382;-1:-1:-1;85954:3:0;;;;:::i;:::-;;;;85916:497;;;-1:-1:-1;86430:12:0;85775:675;-1:-1:-1;;;85775:675:0:o;81452:215::-;81554:4;-1:-1:-1;;;;;;81578:41:0;;-1:-1:-1;;;81578:41:0;;:81;;;81623:36;81647:11;81623:23;:36::i;78785:275::-;78929:45;78956:4;78962:2;78966:7;78929:26;:45::i;:::-;77009:7;;;;78995:9;78987:65;;;;-1:-1:-1;;;78987:65:0;;39495:2:1;78987:65:0;;;39477:21:1;39534:2;39514:18;;;39507:30;39573:34;39553:18;;;39546:62;-1:-1:-1;;;39624:18:1;;;39617:41;39675:19;;78987:65:0;39293:407:1;21730:1420:0;21796:4;21935:19;;;:12;;;:19;;;;;;21971:15;;21967:1176;;22346:21;22370:14;22383:1;22370:10;:14;:::i;:::-;22419:18;;22346:38;;-1:-1:-1;22399:17:0;;22419:22;;22440:1;;22419:22;:::i;:::-;22399:42;;22475:13;22462:9;:26;22458:405;;22509:17;22529:3;:11;;22541:9;22529:22;;;;;;;;:::i;:::-;;;;;;;;;22509:42;;22683:9;22654:3;:11;;22666:13;22654:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;22768:23;;;:12;;;:23;;;;;:36;;;22458:405;22944:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;23039:3;:12;;:19;23052:5;23039:19;;;;;;;;;;;23032:26;;;23082:4;23075:11;;;;;;;21967:1176;23126:5;23119:12;;;;;61469:439;-1:-1:-1;;;;;61549:16:0;;61541:61;;;;-1:-1:-1;;;61541:61:0;;40039:2:1;61541:61:0;;;40021:21:1;;;40058:18;;;40051:30;40117:34;40097:18;;;40090:62;40169:18;;61541:61:0;39837:356:1;61541:61:0;61622:16;61630:7;61622;:16::i;:::-;61621:17;61613:58;;;;-1:-1:-1;;;61613:58:0;;40400:2:1;61613:58:0;;;40382:21:1;40439:2;40419:18;;;40412:30;40478;40458:18;;;40451:58;40526:18;;61613:58:0;40198:352:1;61613:58:0;61684:45;61713:1;61717:2;61721:7;61684:20;:45::i;:::-;-1:-1:-1;;;;;61742:13:0;;;;;;:9;:13;;;;;:18;;61759:1;;61742:13;:18;;61759:1;;61742:18;:::i;:::-;;;;-1:-1:-1;;61771:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;61771:21:0;-1:-1:-1;;;;;61771:21:0;;;;;;;;61810:33;;61771:16;;;61810:33;;61771:16;;61810:33;98144:219;;:::o;68904:224::-;69006:4;-1:-1:-1;;;;;;69030:50:0;;-1:-1:-1;;;69030:50:0;;:90;;;69084:36;69108:11;69084:23;:36::i;70580:589::-;-1:-1:-1;;;;;70786:18:0;;70782:187;;70821:40;70853:7;71996:10;:17;;71969:24;;;;:15;:24;;;;;:44;;;72024:24;;;;;;;;;;;;71892:164;70821:40;70782:187;;;70891:2;-1:-1:-1;;;;;70883:10:0;:4;-1:-1:-1;;;;;70883:10:0;;70879:90;;70910:47;70943:4;70949:7;70910:32;:47::i;:::-;-1:-1:-1;;;;;70983:16:0;;70979:183;;71016:45;71053:7;71016:36;:45::i;70979:183::-;71089:4;-1:-1:-1;;;;;71083:10:0;:2;-1:-1:-1;;;;;71083:10:0;;71079:83;;71110:40;71138:2;71142:7;71110:27;:40::i;53733:305::-;53835:4;-1:-1:-1;;;;;;53872:40:0;;-1:-1:-1;;;53872:40:0;;:105;;-1:-1:-1;;;;;;;53929:48:0;;-1:-1:-1;;;53929:48:0;53872:105;:158;;;-1:-1:-1;;;;;;;;;;11754:40:0;;;53994:36;11645:157;72683:988;72949:22;72999:1;72974:22;72991:4;72974:16;:22::i;:::-;:26;;;;:::i;:::-;73011:18;73032:26;;;:17;:26;;;;;;72949:51;;-1:-1:-1;73165:28:0;;;73161:328;;-1:-1:-1;;;;;73232:18:0;;73210:19;73232:18;;;:12;:18;;;;;;;;:34;;;;;;;;;73283:30;;;;;;:44;;;73400:30;;:17;:30;;;;;:43;;;73161:328;-1:-1:-1;73585:26:0;;;;:17;:26;;;;;;;;73578:33;;;-1:-1:-1;;;;;73629:18:0;;;;;:12;:18;;;;;:34;;;;;;;73622:41;72683:988::o;73966:1079::-;74244:10;:17;74219:22;;74244:21;;74264:1;;74244:21;:::i;:::-;74276:18;74297:24;;;:15;:24;;;;;;74670:10;:26;;74219:46;;-1:-1:-1;74297:24:0;;74219:46;;74670:26;;;;;;:::i;:::-;;;;;;;;;74648:48;;74734:11;74709:10;74720;74709:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;74814:28;;;:15;:28;;;;;;;:41;;;74986:24;;;;;74979:31;75021:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;74037:1008;;;73966:1079;:::o;71470:221::-;71555:14;71572:20;71589:2;71572:16;:20::i;:::-;-1:-1:-1;;;;;71603:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;71648:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;71470:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:632::-;1312:2;1364:21;;;1434:13;;1337:18;;;1456:22;;;1283:4;;1312:2;1535:15;;;;1509:2;1494:18;;;1283:4;1578:169;1592:6;1589:1;1586:13;1578:169;;;1653:13;;1641:26;;1722:15;;;;1687:12;;;;1614:1;1607:9;1578:169;;;-1:-1:-1;1764:3:1;;1141:632;-1:-1:-1;;;;;;1141:632:1:o;1778:258::-;1850:1;1860:113;1874:6;1871:1;1868:13;1860:113;;;1950:11;;;1944:18;1931:11;;;1924:39;1896:2;1889:10;1860:113;;;1991:6;1988:1;1985:13;1982:48;;;-1:-1:-1;;2026:1:1;2008:16;;2001:27;1778:258::o;2041:::-;2083:3;2121:5;2115:12;2148:6;2143:3;2136:19;2164:63;2220:6;2213:4;2208:3;2204:14;2197:4;2190:5;2186:16;2164:63;:::i;:::-;2281:2;2260:15;-1:-1:-1;;2256:29:1;2247:39;;;;2288:4;2243:50;;2041:258;-1:-1:-1;;2041:258:1:o;2304:220::-;2453:2;2442:9;2435:21;2416:4;2473:45;2514:2;2503:9;2499:18;2491:6;2473:45;:::i;2529:180::-;2588:6;2641:2;2629:9;2620:7;2616:23;2612:32;2609:52;;;2657:1;2654;2647:12;2609:52;-1:-1:-1;2680:23:1;;2529:180;-1:-1:-1;2529:180:1:o;2922:254::-;2990:6;2998;3051:2;3039:9;3030:7;3026:23;3022:32;3019:52;;;3067:1;3064;3057:12;3019:52;3090:29;3109:9;3090:29;:::i;:::-;3080:39;3166:2;3151:18;;;;3138:32;;-1:-1:-1;;;2922:254:1:o;3363:328::-;3440:6;3448;3456;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3548:29;3567:9;3548:29;:::i;:::-;3538:39;;3596:38;3630:2;3619:9;3615:18;3596:38;:::i;:::-;3586:48;;3681:2;3670:9;3666:18;3653:32;3643:42;;3363:328;;;;;:::o;4063:248::-;4131:6;4139;4192:2;4180:9;4171:7;4167:23;4163:32;4160:52;;;4208:1;4205;4198:12;4160:52;-1:-1:-1;;4231:23:1;;;4301:2;4286:18;;;4273:32;;-1:-1:-1;4063:248:1:o;4595:254::-;4663:6;4671;4724:2;4712:9;4703:7;4699:23;4695:32;4692:52;;;4740:1;4737;4730:12;4692:52;4776:9;4763:23;4753:33;;4805:38;4839:2;4828:9;4824:18;4805:38;:::i;:::-;4795:48;;4595:254;;;;;:::o;4854:127::-;4915:10;4910:3;4906:20;4903:1;4896:31;4946:4;4943:1;4936:15;4970:4;4967:1;4960:15;4986:275;5057:2;5051:9;5122:2;5103:13;;-1:-1:-1;;5099:27:1;5087:40;;-1:-1:-1;;;;;5142:34:1;;5178:22;;;5139:62;5136:88;;;5204:18;;:::i;:::-;5240:2;5233:22;4986:275;;-1:-1:-1;4986:275:1:o;5266:182::-;5325:4;-1:-1:-1;;;;;5350:6:1;5347:30;5344:56;;;5380:18;;:::i;:::-;-1:-1:-1;5425:1:1;5421:14;5437:4;5417:25;;5266:182::o;5453:531::-;5496:5;5549:3;5542:4;5534:6;5530:17;5526:27;5516:55;;5567:1;5564;5557:12;5516:55;5603:6;5590:20;-1:-1:-1;;;;;5625:2:1;5622:26;5619:52;;;5651:18;;:::i;:::-;5695:55;5738:2;5719:13;;-1:-1:-1;;5715:27:1;5744:4;5711:38;5695:55;:::i;:::-;5775:2;5766:7;5759:19;5821:3;5814:4;5809:2;5801:6;5797:15;5793:26;5790:35;5787:55;;;5838:1;5835;5828:12;5787:55;5903:2;5896:4;5888:6;5884:17;5877:4;5868:7;5864:18;5851:55;5951:1;5926:16;;;5944:4;5922:27;5915:38;;;;5930:7;5453:531;-1:-1:-1;;;5453:531:1:o;5989:887::-;6042:5;6095:3;6088:4;6080:6;6076:17;6072:27;6062:55;;6113:1;6110;6103:12;6062:55;6149:6;6136:20;6175:4;6199:59;6215:42;6254:2;6215:42;:::i;:::-;6199:59;:::i;:::-;6292:15;;;6378:1;6374:10;;;;6362:23;;6358:32;;;6323:12;;;;6402:15;;;6399:35;;;6430:1;6427;6420:12;6399:35;6466:2;6458:6;6454:15;6478:369;6494:6;6489:3;6486:15;6478:369;;;6580:3;6567:17;-1:-1:-1;;;;;6603:11:1;6600:35;6597:125;;;6676:1;6705:2;6701;6694:14;6597:125;6747:57;6800:3;6795:2;6781:11;6773:6;6769:24;6765:33;6747:57;:::i;:::-;6735:70;;-1:-1:-1;6825:12:1;;;;6511;;6478:369;;;-1:-1:-1;6865:5:1;5989:887;-1:-1:-1;;;;;;5989:887:1:o;6881:156::-;6947:20;;7007:4;6996:16;;6986:27;;6976:55;;7027:1;7024;7017:12;7042:663;7094:5;7147:3;7140:4;7132:6;7128:17;7124:27;7114:55;;7165:1;7162;7155:12;7114:55;7201:6;7188:20;7227:4;7251:59;7267:42;7306:2;7267:42;:::i;7251:59::-;7344:15;;;7430:1;7426:10;;;;7414:23;;7410:32;;;7375:12;;;;7454:15;;;7451:35;;;7482:1;7479;7472:12;7451:35;7518:2;7510:6;7506:15;7530:146;7546:6;7541:3;7538:15;7530:146;;;7612:21;7629:3;7612:21;:::i;:::-;7600:34;;7654:12;;;;7563;;7530:146;;7710:1611;7893:6;7901;7909;7962:2;7950:9;7941:7;7937:23;7933:32;7930:52;;;7978:1;7975;7968:12;7930:52;8018:9;8005:23;-1:-1:-1;;;;;8088:2:1;8080:6;8077:14;8074:34;;;8104:1;8101;8094:12;8074:34;8127:60;8179:7;8170:6;8159:9;8155:22;8127:60;:::i;:::-;8117:70;;8206:2;8196:12;;8261:2;8250:9;8246:18;8233:32;8290:2;8280:8;8277:16;8274:36;;;8306:1;8303;8296:12;8274:36;8329:61;8382:7;8371:8;8360:9;8356:24;8329:61;:::i;:::-;8319:71;;;8443:2;8432:9;8428:18;8415:32;8472:2;8462:8;8459:16;8456:36;;;8488:1;8485;8478:12;8456:36;8511:24;;8566:4;8558:13;;8554:27;-1:-1:-1;8544:55:1;;8595:1;8592;8585:12;8544:55;8631:2;8618:16;8654:59;8670:42;8709:2;8670:42;:::i;8654:59::-;8747:15;;;8829:1;8825:10;;;;8817:19;;8813:28;;;8778:12;;;;8853:19;;;8850:39;;;8885:1;8882;8875:12;8850:39;8917:2;8913;8909:11;8929:362;8945:6;8940:3;8937:15;8929:362;;;9031:3;9018:17;9067:2;9054:11;9051:19;9048:109;;;9111:1;9140:2;9136;9129:14;9048:109;9182:66;9240:7;9235:2;9221:11;9217:2;9213:20;9209:29;9182:66;:::i;:::-;9170:79;;-1:-1:-1;9269:12:1;;;;8962;;8929:362;;;8933:3;9310:5;9300:15;;;;;;;;7710:1611;;;;;:::o;9326:322::-;9395:6;9448:2;9436:9;9427:7;9423:23;9419:32;9416:52;;;9464:1;9461;9454:12;9416:52;9504:9;9491:23;-1:-1:-1;;;;;9529:6:1;9526:30;9523:50;;;9569:1;9566;9559:12;9523:50;9592;9634:7;9625:6;9614:9;9610:22;9592:50;:::i;9653:186::-;9712:6;9765:2;9753:9;9744:7;9740:23;9736:32;9733:52;;;9781:1;9778;9771:12;9733:52;9804:29;9823:9;9804:29;:::i;9844:839::-;10073:2;10125:21;;;10195:13;;10098:18;;;10217:22;;;10044:4;;10073:2;10258;;10276:18;;;;10317:15;;;10044:4;10360:297;10374:6;10371:1;10368:13;10360:297;;;10433:13;;10475:9;;10486:10;10471:26;10459:39;;10542:11;;10536:18;-1:-1:-1;;;;;10532:44:1;10518:12;;;10511:66;10597:12;;;;10632:15;;;;10573:1;10389:9;10360:297;;;-1:-1:-1;10674:3:1;;9844:839;-1:-1:-1;;;;;;;9844:839:1:o;10941:848::-;11079:6;11087;11095;11103;11156:3;11144:9;11135:7;11131:23;11127:33;11124:53;;;11173:1;11170;11163:12;11124:53;11196:27;11213:9;11196:27;:::i;:::-;11186:37;;11274:2;11263:9;11259:18;11246:32;-1:-1:-1;;;;;11338:2:1;11330:6;11327:14;11324:34;;;11354:1;11351;11344:12;11324:34;11377:50;11419:7;11410:6;11399:9;11395:22;11377:50;:::i;:::-;11367:60;;11480:2;11469:9;11465:18;11452:32;11436:48;;11509:2;11499:8;11496:16;11493:36;;;11525:1;11522;11515:12;11493:36;11548:62;11602:7;11591:8;11580:9;11576:24;11548:62;:::i;:::-;11538:72;;11663:2;11652:9;11648:18;11635:32;11619:48;;11692:2;11682:8;11679:16;11676:36;;;11708:1;11705;11698:12;11676:36;;11731:52;11775:7;11764:8;11753:9;11749:24;11731:52;:::i;:::-;11721:62;;;10941:848;;;;;;;:::o;12053:347::-;12118:6;12126;12179:2;12167:9;12158:7;12154:23;12150:32;12147:52;;;12195:1;12192;12185:12;12147:52;12218:29;12237:9;12218:29;:::i;:::-;12208:39;;12297:2;12286:9;12282:18;12269:32;12344:5;12337:13;12330:21;12323:5;12320:32;12310:60;;12366:1;12363;12356:12;12405:350;12472:6;12480;12533:2;12521:9;12512:7;12508:23;12504:32;12501:52;;;12549:1;12546;12539:12;12501:52;12588:9;12575:23;12638:10;12631:5;12627:22;12620:5;12617:33;12607:61;;12664:1;12661;12654:12;12607:61;12687:5;-1:-1:-1;12711:38:1;12745:2;12730:18;;12711:38;:::i;12760:538::-;12855:6;12863;12871;12879;12932:3;12920:9;12911:7;12907:23;12903:33;12900:53;;;12949:1;12946;12939:12;12900:53;12972:29;12991:9;12972:29;:::i;:::-;12962:39;;13020:38;13054:2;13043:9;13039:18;13020:38;:::i;:::-;13010:48;;13105:2;13094:9;13090:18;13077:32;13067:42;;13160:2;13149:9;13145:18;13132:32;-1:-1:-1;;;;;13179:6:1;13176:30;13173:50;;;13219:1;13216;13209:12;13173:50;13242;13284:7;13275:6;13264:9;13260:22;13242:50;:::i;13303:367::-;13366:8;13376:6;13430:3;13423:4;13415:6;13411:17;13407:27;13397:55;;13448:1;13445;13438:12;13397:55;-1:-1:-1;13471:20:1;;-1:-1:-1;;;;;13503:30:1;;13500:50;;;13546:1;13543;13536:12;13500:50;13583:4;13575:6;13571:17;13559:29;;13643:3;13636:4;13626:6;13623:1;13619:14;13611:6;13607:27;13603:38;13600:47;13597:67;;;13660:1;13657;13650:12;13675:505;13770:6;13778;13786;13839:2;13827:9;13818:7;13814:23;13810:32;13807:52;;;13855:1;13852;13845:12;13807:52;13891:9;13878:23;13868:33;;13952:2;13941:9;13937:18;13924:32;-1:-1:-1;;;;;13971:6:1;13968:30;13965:50;;;14011:1;14008;14001:12;13965:50;14050:70;14112:7;14103:6;14092:9;14088:22;14050:70;:::i;:::-;13675:505;;14139:8;;-1:-1:-1;14024:96:1;;-1:-1:-1;;;;13675:505:1:o;14185:437::-;14271:6;14279;14332:2;14320:9;14311:7;14307:23;14303:32;14300:52;;;14348:1;14345;14338:12;14300:52;14388:9;14375:23;-1:-1:-1;;;;;14413:6:1;14410:30;14407:50;;;14453:1;14450;14443:12;14407:50;14492:70;14554:7;14545:6;14534:9;14530:22;14492:70;:::i;:::-;14581:8;;14466:96;;-1:-1:-1;14185:437:1;-1:-1:-1;;;;14185:437:1:o;14627:260::-;14695:6;14703;14756:2;14744:9;14735:7;14731:23;14727:32;14724:52;;;14772:1;14769;14762:12;14724:52;14795:29;14814:9;14795:29;:::i;14892:777::-;15023:6;15031;15039;15092:2;15080:9;15071:7;15067:23;15063:32;15060:52;;;15108:1;15105;15098:12;15060:52;15148:9;15135:23;-1:-1:-1;;;;;15218:2:1;15210:6;15207:14;15204:34;;;15234:1;15231;15224:12;15204:34;15257:50;15299:7;15290:6;15279:9;15275:22;15257:50;:::i;:::-;15247:60;;15360:2;15349:9;15345:18;15332:32;15316:48;;15389:2;15379:8;15376:16;15373:36;;;15405:1;15402;15395:12;15373:36;15428:62;15482:7;15471:8;15460:9;15456:24;15428:62;:::i;:::-;15418:72;;15543:2;15532:9;15528:18;15515:32;15499:48;;15572:2;15562:8;15559:16;15556:36;;;15588:1;15585;15578:12;15556:36;;15611:52;15655:7;15644:8;15633:9;15629:24;15611:52;:::i;:::-;15601:62;;;14892:777;;;;;:::o;15674:340::-;15876:2;15858:21;;;15915:2;15895:18;;;15888:30;-1:-1:-1;;;15949:2:1;15934:18;;15927:46;16005:2;15990:18;;15674:340::o;16359:127::-;16420:10;16415:3;16411:20;16408:1;16401:31;16451:4;16448:1;16441:15;16475:4;16472:1;16465:15;16491:127;16552:10;16547:3;16543:20;16540:1;16533:31;16583:4;16580:1;16573:15;16607:4;16604:1;16597:15;16623:135;16662:3;16683:17;;;16680:43;;16703:18;;:::i;:::-;-1:-1:-1;16750:1:1;16739:13;;16623:135::o;16763:380::-;16842:1;16838:12;;;;16885;;;16906:61;;16960:4;16952:6;16948:17;16938:27;;16906:61;17013:2;17005:6;17002:14;16982:18;16979:38;16976:161;;17059:10;17054:3;17050:20;17047:1;17040:31;17094:4;17091:1;17084:15;17122:4;17119:1;17112:15;16976:161;;16763:380;;;:::o;18388:413::-;18590:2;18572:21;;;18629:2;18609:18;;;18602:30;18668:34;18663:2;18648:18;;18641:62;-1:-1:-1;;;18734:2:1;18719:18;;18712:47;18791:3;18776:19;;18388:413::o;18806:168::-;18846:7;18912:1;18908;18904:6;18900:14;18897:1;18894:21;18889:1;18882:9;18875:17;18871:45;18868:71;;;18919:18;;:::i;:::-;-1:-1:-1;18959:9:1;;18806:168::o;18979:127::-;19040:10;19035:3;19031:20;19028:1;19021:31;19071:4;19068:1;19061:15;19095:4;19092:1;19085:15;19111:120;19151:1;19177;19167:35;;19182:18;;:::i;:::-;-1:-1:-1;19216:9:1;;19111:120::o;21240:341::-;21442:2;21424:21;;;21481:2;21461:18;;;21454:30;-1:-1:-1;;;21515:2:1;21500:18;;21493:47;21572:2;21557:18;;21240:341::o;21921:175::-;21958:3;22002:4;21995:5;21991:16;22031:4;22022:7;22019:17;22016:43;;22039:18;;:::i;:::-;22088:1;22075:15;;21921:175;-1:-1:-1;;21921:175:1:o;27034:973::-;27119:12;;27084:3;;27174:1;27194:18;;;;27247;;;;27274:61;;27328:4;27320:6;27316:17;27306:27;;27274:61;27354:2;27402;27394:6;27391:14;27371:18;27368:38;27365:161;;27448:10;27443:3;27439:20;27436:1;27429:31;27483:4;27480:1;27473:15;27511:4;27508:1;27501:15;27365:161;27542:18;27569:104;;;;27687:1;27682:319;;;;27535:466;;27569:104;-1:-1:-1;;27602:24:1;;27590:37;;27647:16;;;;-1:-1:-1;27569:104:1;;27682:319;26981:1;26974:14;;;27018:4;27005:18;;27776:1;27790:165;27804:6;27801:1;27798:13;27790:165;;;27882:14;;27869:11;;;27862:35;27925:16;;;;27819:10;;27790:165;;;27794:3;;27984:6;27979:3;27975:16;27968:23;;27535:466;;;;;;;27034:973;;;;:::o;28012:1908::-;-1:-1:-1;;;28998:63:1;;29084:13;;28980:3;;29106:62;29084:13;29156:2;29147:12;;29140:4;29128:17;;29106:62;:::i;:::-;-1:-1:-1;;;29227:2:1;29187:16;;;29219:11;;;29212:67;29298:46;29340:2;29332:11;;29324:6;29298:46;:::i;:::-;-1:-1:-1;;;29353:46:1;;29288:56;-1:-1:-1;29418:46:1;29460:2;29452:11;;29444:6;29418:46;:::i;:::-;29408:56;;-1:-1:-1;;;29480:2:1;29473:15;29519:6;29513:13;29535:62;29588:8;29584:1;29580:2;29576:10;29569:4;29561:6;29557:17;29535:62;:::i;:::-;29616:60;29673:1;29662:8;29658:2;29654:17;29650:25;29642:6;29616:60;:::i;:::-;29606:70;;;29705:4;29700:3;29696:14;29692:2;29685:26;29742:6;29736:13;29758:62;29811:8;29807:1;29803:2;29799:10;29792:4;29784:6;29780:17;29758:62;:::i;:::-;-1:-1:-1;;;29880:1:1;29839:17;;;;29872:10;;;29865:23;29912:1;29904:10;;28012:1908;-1:-1:-1;;;;;;;;28012:1908:1:o;29925:448::-;30187:31;30182:3;30175:44;30157:3;30248:6;30242:13;30264:62;30319:6;30314:2;30309:3;30305:12;30298:4;30290:6;30286:17;30264:62;:::i;:::-;30346:16;;;;30364:2;30342:25;;29925:448;-1:-1:-1;;29925:448:1:o;31914:112::-;31946:1;31972;31962:35;;31977:18;;:::i;:::-;-1:-1:-1;32011:9:1;;31914:112::o;33255:125::-;33295:4;33323:1;33320;33317:8;33314:34;;;33328:18;;:::i;:::-;-1:-1:-1;33365:9:1;;33255:125::o;33385:128::-;33425:3;33456:1;33452:6;33449:1;33446:13;33443:39;;;33462:18;;:::i;:::-;-1:-1:-1;33498:9:1;;33385:128::o;33518:786::-;33929:25;33924:3;33917:38;33899:3;33984:6;33978:13;34000:62;34055:6;34050:2;34045:3;34041:12;34034:4;34026:6;34022:17;34000:62;:::i;:::-;-1:-1:-1;;;34121:2:1;34081:16;;;34113:11;;;34106:40;34171:13;;34193:63;34171:13;34242:2;34234:11;;34227:4;34215:17;;34193:63;:::i;:::-;34276:17;34295:2;34272:26;;33518:786;-1:-1:-1;;;;33518:786:1:o;35357:414::-;35559:2;35541:21;;;35598:2;35578:18;;;35571:30;35637:34;35632:2;35617:18;;35610:62;-1:-1:-1;;;35703:2:1;35688:18;;35681:48;35761:3;35746:19;;35357:414::o;35776:1069::-;36324:3;36362:6;36356:13;36378:53;36424:6;36419:3;36412:4;36404:6;36400:17;36378:53;:::i;:::-;-1:-1:-1;;;36453:16:1;;;36478:57;;;36554:49;36599:2;36588:14;;36580:6;36554:49;:::i;:::-;-1:-1:-1;;;36612:46:1;;36544:59;-1:-1:-1;36677:46:1;36719:2;36711:11;;36703:6;36677:46;:::i;:::-;-1:-1:-1;;;36732:26:1;;-1:-1:-1;;;;;;36786:26:1;;;;36782:1;36774:10;;36767:46;-1:-1:-1;;36837:1:1;36829:10;;;;35776:1069;-1:-1:-1;;;;35776:1069:1:o;36850:746::-;37226:3;37264:6;37258:13;37280:53;37326:6;37321:3;37314:4;37306:6;37302:17;37280:53;:::i;:::-;37394:66;37355:16;;;37380:81;;;37480:49;37525:2;37514:14;;37506:6;37480:49;:::i;:::-;-1:-1:-1;;;37538:26:1;;37588:1;37580:10;;36850:746;-1:-1:-1;;;;;36850:746:1:o;37601:437::-;37831:3;37869:6;37863:13;37885:53;37931:6;37926:3;37919:4;37911:6;37907:17;37885:53;:::i;:::-;-1:-1:-1;;;37960:16:1;;37985:18;;;-1:-1:-1;38030:1:1;38019:13;;37601:437;-1:-1:-1;37601:437:1:o;38043:136::-;38082:3;38110:5;38100:39;;38119:18;;:::i;:::-;-1:-1:-1;;;38155:18:1;;38043:136::o;38545:489::-;-1:-1:-1;;;;;38814:15:1;;;38796:34;;38866:15;;38861:2;38846:18;;38839:43;38913:2;38898:18;;38891:34;;;38961:3;38956:2;38941:18;;38934:31;;;38739:4;;38982:46;;39008:19;;39000:6;38982:46;:::i;:::-;38974:54;38545:489;-1:-1:-1;;;;;;38545:489:1:o;39039:249::-;39108:6;39161:2;39149:9;39140:7;39136:23;39132:32;39129:52;;;39177:1;39174;39167:12;39129:52;39209:9;39203:16;39228:30;39252:5;39228:30;:::i;39705:127::-;39766:10;39761:3;39757:20;39754:1;39747:31;39797:4;39794:1;39787:15;39821:4;39818:1;39811:15
Swarm Source
ipfs://45425d0245d944f99fee7cee7e2045ac41114ea92ee58f339a2f0b335b76beb2
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.