ERC-721
Overview
Max Total Supply
165 BURN2
Holders
92
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BURN2Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheSecondBurn
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-16 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; 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/utils/Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @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/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/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (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/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _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); } /** * @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); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); 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); } /** * @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 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 {} } // File: contracts/TheSecondBurn.sol pragma solidity ^0.8.0; interface BurnablesInterface { function ownerOf(uint256 tokenId) external view returns (address owner); } contract TheSecondBurn is ERC721, ReentrancyGuard, Ownable { using Strings for uint256; using SafeMath for uint256; using Counters for Counters.Counter; using EnumerableSet for EnumerableSet.UintSet; Counters.Counter private _tokenIdTracker; Counters.Counter private _burnedTracker; // Enumerable set of burnable ids that have minted EnumerableSet.UintSet private _burnableMinters; // burnables Contract // mainnet address public burnablesAddress = 0xF9b8E02A97780381ea1FbDd41D7706ACD163dd9A; // rinkeby // address public burnablesAddress = 0x54490f800df2E2A654CfdE8C9eB966C6A55771B1; BurnablesInterface burnablesContract = BurnablesInterface(burnablesAddress); string public baseTokenURI; uint256 public constant MAX_ELEMENTS = 4999; uint256 public constant MAX_PUBLIC_ELEMENTS = 4000; uint256 public constant MINT_PRICE = 8 * 10**16; event CreateBurnable(uint256 indexed id); constructor() public ERC721("TheSecondBurn", "BURN2") {} modifier saleIsOpen { require(_totalSupply() <= MAX_PUBLIC_ELEMENTS, "Sale end"); _; } function totalSupply() public view returns (uint256) { return _totalSupply() - _totalBurned(); } function _totalSupply() internal view returns (uint256) { return _tokenIdTracker.current(); } function _totalBurned() internal view returns (uint256) { return _burnedTracker.current(); } function totalBurned() public view returns (uint256) { return _totalBurned(); } function totalMint() public view returns (uint256) { return _totalSupply(); } function getBurnablesOwner(uint256 burnablesId) public view returns (address) { return burnablesContract.ownerOf(burnablesId); } // Minting reserved for burnables owners function mintWithBurnable(uint256 burnablesId) public nonReentrant { require(burnablesContract.ownerOf(burnablesId) == msg.sender, "Not the owner of this burnable"); require(!_burnableMinters.contains(burnablesId), "This burnable already has minted a second burn."); _burnableMinters.add(burnablesId); _mintAnElement(msg.sender); } function mintPublic(uint256 _count) public payable saleIsOpen { uint256 total = _totalSupply(); require(total + _count <= MAX_PUBLIC_ELEMENTS, "Max limit"); require(total <= MAX_PUBLIC_ELEMENTS, "Sale end"); require(msg.value >= price(_count), "Value below price"); for (uint256 i = 0; i < _count; i++) { _mintAnElement(msg.sender); } } function price(uint256 _count) public pure returns (uint256) { return MINT_PRICE.mul(_count); } function _mintAnElement(address _to) private { uint256 id = _totalSupply(); _tokenIdTracker.increment(); _safeMint(_to, id); emit CreateBurnable(id); } // Send ETH to make the burn value higher function sendEther() public payable { uint256 supply = totalSupply(); require(supply > 0); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } /** * @dev Returns an URI for a given token ID */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { return string(abi.encodePacked(baseTokenURI, _tokenId.toString())); } /** * @dev Burns and pays the mint price to the token owner. * @param _tokenId The token to burn. */ function burn(uint256 _tokenId) public { require(ownerOf(_tokenId) == msg.sender); uint256 balance = address(this).balance; require(balance > 0); //Burn token _transfer( msg.sender, 0x000000000000000000000000000000000000dEaD, _tokenId ); // pay token owner uint256 supply = totalSupply(); _widthdraw(msg.sender, balance.div(supply)); // increment burn _burnedTracker.increment(); } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateBurnable","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnablesAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnablesId","type":"uint256"}],"name":"getBurnablesOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnablesId","type":"uint256"}],"name":"mintWithBurnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendEther","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
608060405273f9b8e02a97780381ea1fbdd41d7706acd163dd9a600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c957600080fd5b506040518060400160405280600d81526020017f5468655365636f6e644275726e000000000000000000000000000000000000008152506040518060400160405280600581526020017f4255524e3200000000000000000000000000000000000000000000000000000081525081600090805190602001906200014e92919062000266565b5080600190805190602001906200016792919062000266565b505050600160068190555062000192620001866200019860201b60201c565b620001a060201b60201c565b6200037b565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002749062000316565b90600052602060002090601f016020900481019282620002985760008555620002e4565b82601f10620002b357805160ff1916838001178555620002e4565b82800160010185558215620002e4579182015b82811115620002e3578251825591602001919060010190620002c6565b5b509050620002f39190620002f7565b5090565b5b8082111562000312576000816000905550600101620002f8565b5090565b600060028204905060018216806200032f57607f821691505b602082108114156200034657620003456200034c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c97806200038b6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063c002d23d11610095578063e985e9c511610064578063e985e9c51461069f578063efd0cbf9146106dc578063f2fde38b146106f8578063f8ff678214610721576101d8565b8063c002d23d146105e1578063c87b56dd1461060c578063d547cfb714610649578063d89135cd14610674576101d8565b806391934915116100d1578063919349151461052757806395d89b4114610564578063a22cb4651461058f578063b88d4fde146105b8576101d8565b806370a082311461047d578063715018a6146104ba5780637c11a47b146104d15780638da5cb5b146104fc576101d8565b806326a49e371161017a578063500674ad11610149578063500674ad146103c357806355f804b3146103ec57806359a7715a146104155780636352211e14610440576101d8565b806326a49e37146103095780633502a7161461034657806342842e0e1461037157806342966c681461039a576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780630e29df22146102ab57806318160ddd146102b557806323b872dd146102e0576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612916565b61074c565b6040516102119190612efa565b60405180910390f35b34801561022657600080fd5b5061022f61082e565b60405161023c9190612f15565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906129b9565b6108c0565b6040516102799190612e93565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906128d6565b610945565b005b6102b3610a5d565b005b3480156102c157600080fd5b506102ca610a79565b6040516102d791906131f7565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906127c0565b610a9a565b005b34801561031557600080fd5b50610330600480360381019061032b91906129b9565b610afa565b60405161033d91906131f7565b60405180910390f35b34801561035257600080fd5b5061035b610b1e565b60405161036891906131f7565b60405180910390f35b34801561037d57600080fd5b50610398600480360381019061039391906127c0565b610b24565b005b3480156103a657600080fd5b506103c160048036038101906103bc91906129b9565b610b44565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906129b9565b610bda565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612970565b610dbd565b005b34801561042157600080fd5b5061042a610e53565b60405161043791906131f7565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906129b9565b610e62565b6040516104749190612e93565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190612726565b610f14565b6040516104b191906131f7565b60405180910390f35b3480156104c657600080fd5b506104cf610fcc565b005b3480156104dd57600080fd5b506104e6611054565b6040516104f39190612e93565b60405180910390f35b34801561050857600080fd5b5061051161107a565b60405161051e9190612e93565b60405180910390f35b34801561053357600080fd5b5061054e600480360381019061054991906129b9565b6110a4565b60405161055b9190612e93565b60405180910390f35b34801561057057600080fd5b50610579611158565b6040516105869190612f15565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190612896565b6111ea565b005b3480156105c457600080fd5b506105df60048036038101906105da9190612813565b61136b565b005b3480156105ed57600080fd5b506105f66113cd565b60405161060391906131f7565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e91906129b9565b6113d9565b6040516106409190612f15565b60405180910390f35b34801561065557600080fd5b5061065e61140d565b60405161066b9190612f15565b60405180910390f35b34801561068057600080fd5b5061068961149b565b60405161069691906131f7565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612780565b6114aa565b6040516106d39190612efa565b60405180910390f35b6106f660048036038101906106f191906129b9565b61153e565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612726565b6116a2565b005b34801561072d57600080fd5b5061073661179a565b60405161074391906131f7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108275750610826826117a0565b5b9050919050565b60606000805461083d906134c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610869906134c7565b80156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108cb8261180a565b61090a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610901906130f7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095082610e62565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890613177565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e0611876565b73ffffffffffffffffffffffffffffffffffffffff161480610a0f5750610a0e81610a09611876565b6114aa565b5b610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4590613037565b60405180910390fd5b610a58838361187e565b505050565b6000610a67610a79565b905060008111610a7657600080fd5b50565b6000610a83611937565b610a8b611948565b610a9591906133dd565b905090565b610aab610aa5611876565b82611959565b610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906131b7565b60405180910390fd5b610af5838383611a37565b505050565b6000610b178267011c37937e080000611c9390919063ffffffff16565b9050919050565b61138781565b610b3f8383836040518060200160405280600081525061136b565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610b6482610e62565b73ffffffffffffffffffffffffffffffffffffffff1614610b8457600080fd5b600047905060008111610b9657600080fd5b610ba33361dead84611a37565b6000610bad610a79565b9050610bcb33610bc68385611ca990919063ffffffff16565b611cbf565b610bd56009611d70565b505050565b60026006541415610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906131d7565b60405180910390fd5b60026006819055503373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610c9a91906131f7565b60206040518083038186803b158015610cb257600080fd5b505afa158015610cc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cea9190612753565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3790613057565b60405180910390fd5b610d5481600a611d8690919063ffffffff16565b15610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90612fd7565b60405180910390fd5b610da881600a611da090919063ffffffff16565b50610db233611dba565b600160068190555050565b610dc5611876565b73ffffffffffffffffffffffffffffffffffffffff16610de361107a565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613117565b60405180910390fd5b80600e9080519060200190610e4f929190612525565b5050565b6000610e5d611948565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613097565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613077565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fd4611876565b73ffffffffffffffffffffffffffffffffffffffff16610ff261107a565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613117565b60405180910390fd5b6110526000611e0b565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161110191906131f7565b60206040518083038186803b15801561111957600080fd5b505afa15801561112d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111519190612753565b9050919050565b606060018054611167906134c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611193906134c7565b80156111e05780601f106111b5576101008083540402835291602001916111e0565b820191906000526020600020905b8154815290600101906020018083116111c357829003601f168201915b5050505050905090565b6111f2611876565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790612fb7565b60405180910390fd5b806005600061126d611876565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661131a611876565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135f9190612efa565b60405180910390a35050565b61137c611376611876565b83611959565b6113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b2906131b7565b60405180910390fd5b6113c784848484611ed1565b50505050565b67011c37937e08000081565b6060600e6113e683611f2d565b6040516020016113f7929190612e5a565b6040516020818303038152906040529050919050565b600e805461141a906134c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611446906134c7565b80156114935780601f1061146857610100808354040283529160200191611493565b820191906000526020600020905b81548152906001019060200180831161147657829003601f168201915b505050505081565b60006114a5611937565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fa0611549611948565b111561158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906130d7565b60405180910390fd5b6000611594611948565b9050610fa082826115a591906132fc565b11156115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90612ff7565b60405180910390fd5b610fa081111561162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611622906130d7565b60405180910390fd5b61163482610afa565b341015611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90613157565b60405180910390fd5b60005b8281101561169d5761168a33611dba565b80806116959061352a565b915050611679565b505050565b6116aa611876565b73ffffffffffffffffffffffffffffffffffffffff166116c861107a565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590613117565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590612f57565b60405180910390fd5b61179781611e0b565b50565b610fa081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118f183610e62565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611943600961208e565b905090565b6000611954600861208e565b905090565b60006119648261180a565b6119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90613017565b60405180910390fd5b60006119ae83610e62565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a1d57508373ffffffffffffffffffffffffffffffffffffffff16611a05846108c0565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a2e5750611a2d81856114aa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a5782610e62565b73ffffffffffffffffffffffffffffffffffffffff1614611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613137565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490612f97565b60405180910390fd5b611b2883838361209c565b611b3360008261187e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8391906133dd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bda91906132fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611ca19190613383565b905092915050565b60008183611cb79190613352565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ce590612e7e565b60006040518083038185875af1925050503d8060008114611d22576040519150601f19603f3d011682016040523d82523d6000602084013e611d27565b606091505b5050905080611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290613197565b60405180910390fd5b505050565b6001816000016000828254019250508190555050565b6000611d98836000018360001b6120a1565b905092915050565b6000611db2836000018360001b6120c4565b905092915050565b6000611dc4611948565b9050611dd06008611d70565b611dda8282612134565b807f70aa49f36189c865708acd69ac2f094018a8c228abe3fc99fe28dbdd6c9a5b8960405160405180910390a25050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611edc848484611a37565b611ee884848484612152565b611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90612f37565b60405180910390fd5b50505050565b60606000821415611f75576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612089565b600082905060005b60008214611fa7578080611f909061352a565b915050600a82611fa09190613352565b9150611f7d565b60008167ffffffffffffffff811115611fc357611fc2613660565b5b6040519080825280601f01601f191660200182016040528015611ff55781602001600182028036833780820191505090505b5090505b600085146120825760018261200e91906133dd565b9150600a8561201d9190613573565b603061202991906132fc565b60f81b81838151811061203f5761203e613631565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561207b9190613352565b9450611ff9565b8093505050505b919050565b600081600001549050919050565b505050565b600080836001016000848152602001908152602001600020541415905092915050565b60006120d083836120a1565b61212957826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061212e565b600090505b92915050565b61214e8282604051806020016040528060008152506122e9565b5050565b60006121738473ffffffffffffffffffffffffffffffffffffffff16612344565b156122dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261219c611876565b8786866040518563ffffffff1660e01b81526004016121be9493929190612eae565b602060405180830381600087803b1580156121d857600080fd5b505af192505050801561220957506040513d601f19601f820116820180604052508101906122069190612943565b60015b61228c573d8060008114612239576040519150601f19603f3d011682016040523d82523d6000602084013e61223e565b606091505b50600081511415612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b90612f37565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122e1565b600190505b949350505050565b6122f38383612357565b6123006000848484612152565b61233f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233690612f37565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be906130b7565b60405180910390fd5b6123d08161180a565b15612410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240790612f77565b60405180910390fd5b61241c6000838361209c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246c91906132fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612531906134c7565b90600052602060002090601f016020900481019282612553576000855561259a565b82601f1061256c57805160ff191683800117855561259a565b8280016001018555821561259a579182015b8281111561259957825182559160200191906001019061257e565b5b5090506125a791906125ab565b5090565b5b808211156125c45760008160009055506001016125ac565b5090565b60006125db6125d684613237565b613212565b9050828152602081018484840111156125f7576125f6613694565b5b612602848285613485565b509392505050565b600061261d61261884613268565b613212565b90508281526020810184848401111561263957612638613694565b5b612644848285613485565b509392505050565b60008135905061265b81613c05565b92915050565b60008151905061267081613c05565b92915050565b60008135905061268581613c1c565b92915050565b60008135905061269a81613c33565b92915050565b6000815190506126af81613c33565b92915050565b600082601f8301126126ca576126c961368f565b5b81356126da8482602086016125c8565b91505092915050565b600082601f8301126126f8576126f761368f565b5b813561270884826020860161260a565b91505092915050565b60008135905061272081613c4a565b92915050565b60006020828403121561273c5761273b61369e565b5b600061274a8482850161264c565b91505092915050565b6000602082840312156127695761276861369e565b5b600061277784828501612661565b91505092915050565b600080604083850312156127975761279661369e565b5b60006127a58582860161264c565b92505060206127b68582860161264c565b9150509250929050565b6000806000606084860312156127d9576127d861369e565b5b60006127e78682870161264c565b93505060206127f88682870161264c565b925050604061280986828701612711565b9150509250925092565b6000806000806080858703121561282d5761282c61369e565b5b600061283b8782880161264c565b945050602061284c8782880161264c565b935050604061285d87828801612711565b925050606085013567ffffffffffffffff81111561287e5761287d613699565b5b61288a878288016126b5565b91505092959194509250565b600080604083850312156128ad576128ac61369e565b5b60006128bb8582860161264c565b92505060206128cc85828601612676565b9150509250929050565b600080604083850312156128ed576128ec61369e565b5b60006128fb8582860161264c565b925050602061290c85828601612711565b9150509250929050565b60006020828403121561292c5761292b61369e565b5b600061293a8482850161268b565b91505092915050565b6000602082840312156129595761295861369e565b5b6000612967848285016126a0565b91505092915050565b6000602082840312156129865761298561369e565b5b600082013567ffffffffffffffff8111156129a4576129a3613699565b5b6129b0848285016126e3565b91505092915050565b6000602082840312156129cf576129ce61369e565b5b60006129dd84828501612711565b91505092915050565b6129ef81613411565b82525050565b6129fe81613423565b82525050565b6000612a0f826132ae565b612a1981856132c4565b9350612a29818560208601613494565b612a32816136a3565b840191505092915050565b6000612a48826132b9565b612a5281856132e0565b9350612a62818560208601613494565b612a6b816136a3565b840191505092915050565b6000612a81826132b9565b612a8b81856132f1565b9350612a9b818560208601613494565b80840191505092915050565b60008154612ab4816134c7565b612abe81866132f1565b94506001821660008114612ad95760018114612aea57612b1d565b60ff19831686528186019350612b1d565b612af385613299565b60005b83811015612b1557815481890152600182019150602081019050612af6565b838801955050505b50505092915050565b6000612b336032836132e0565b9150612b3e826136b4565b604082019050919050565b6000612b566026836132e0565b9150612b6182613703565b604082019050919050565b6000612b79601c836132e0565b9150612b8482613752565b602082019050919050565b6000612b9c6024836132e0565b9150612ba78261377b565b604082019050919050565b6000612bbf6019836132e0565b9150612bca826137ca565b602082019050919050565b6000612be2602f836132e0565b9150612bed826137f3565b604082019050919050565b6000612c056009836132e0565b9150612c1082613842565b602082019050919050565b6000612c28602c836132e0565b9150612c338261386b565b604082019050919050565b6000612c4b6038836132e0565b9150612c56826138ba565b604082019050919050565b6000612c6e601e836132e0565b9150612c7982613909565b602082019050919050565b6000612c91602a836132e0565b9150612c9c82613932565b604082019050919050565b6000612cb46029836132e0565b9150612cbf82613981565b604082019050919050565b6000612cd76020836132e0565b9150612ce2826139d0565b602082019050919050565b6000612cfa6008836132e0565b9150612d05826139f9565b602082019050919050565b6000612d1d602c836132e0565b9150612d2882613a22565b604082019050919050565b6000612d406020836132e0565b9150612d4b82613a71565b602082019050919050565b6000612d636029836132e0565b9150612d6e82613a9a565b604082019050919050565b6000612d866011836132e0565b9150612d9182613ae9565b602082019050919050565b6000612da96021836132e0565b9150612db482613b12565b604082019050919050565b6000612dcc6000836132d5565b9150612dd782613b61565b600082019050919050565b6000612def6010836132e0565b9150612dfa82613b64565b602082019050919050565b6000612e126031836132e0565b9150612e1d82613b8d565b604082019050919050565b6000612e35601f836132e0565b9150612e4082613bdc565b602082019050919050565b612e548161347b565b82525050565b6000612e668285612aa7565b9150612e728284612a76565b91508190509392505050565b6000612e8982612dbf565b9150819050919050565b6000602082019050612ea860008301846129e6565b92915050565b6000608082019050612ec360008301876129e6565b612ed060208301866129e6565b612edd6040830185612e4b565b8181036060830152612eef8184612a04565b905095945050505050565b6000602082019050612f0f60008301846129f5565b92915050565b60006020820190508181036000830152612f2f8184612a3d565b905092915050565b60006020820190508181036000830152612f5081612b26565b9050919050565b60006020820190508181036000830152612f7081612b49565b9050919050565b60006020820190508181036000830152612f9081612b6c565b9050919050565b60006020820190508181036000830152612fb081612b8f565b9050919050565b60006020820190508181036000830152612fd081612bb2565b9050919050565b60006020820190508181036000830152612ff081612bd5565b9050919050565b6000602082019050818103600083015261301081612bf8565b9050919050565b6000602082019050818103600083015261303081612c1b565b9050919050565b6000602082019050818103600083015261305081612c3e565b9050919050565b6000602082019050818103600083015261307081612c61565b9050919050565b6000602082019050818103600083015261309081612c84565b9050919050565b600060208201905081810360008301526130b081612ca7565b9050919050565b600060208201905081810360008301526130d081612cca565b9050919050565b600060208201905081810360008301526130f081612ced565b9050919050565b6000602082019050818103600083015261311081612d10565b9050919050565b6000602082019050818103600083015261313081612d33565b9050919050565b6000602082019050818103600083015261315081612d56565b9050919050565b6000602082019050818103600083015261317081612d79565b9050919050565b6000602082019050818103600083015261319081612d9c565b9050919050565b600060208201905081810360008301526131b081612de2565b9050919050565b600060208201905081810360008301526131d081612e05565b9050919050565b600060208201905081810360008301526131f081612e28565b9050919050565b600060208201905061320c6000830184612e4b565b92915050565b600061321c61322d565b905061322882826134f9565b919050565b6000604051905090565b600067ffffffffffffffff82111561325257613251613660565b5b61325b826136a3565b9050602081019050919050565b600067ffffffffffffffff82111561328357613282613660565b5b61328c826136a3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133078261347b565b91506133128361347b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613347576133466135a4565b5b828201905092915050565b600061335d8261347b565b91506133688361347b565b925082613378576133776135d3565b5b828204905092915050565b600061338e8261347b565b91506133998361347b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d2576133d16135a4565b5b828202905092915050565b60006133e88261347b565b91506133f38361347b565b925082821015613406576134056135a4565b5b828203905092915050565b600061341c8261345b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134b2578082015181840152602081019050613497565b838111156134c1576000848401525b50505050565b600060028204905060018216806134df57607f821691505b602082108114156134f3576134f2613602565b5b50919050565b613502826136a3565b810181811067ffffffffffffffff8211171561352157613520613660565b5b80604052505050565b60006135358261347b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613568576135676135a4565b5b600182019050919050565b600061357e8261347b565b91506135898361347b565b925082613599576135986135d3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f54686973206275726e61626c6520616c726561647920686173206d696e74656460008201527f2061207365636f6e64206275726e2e0000000000000000000000000000000000602082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f7420746865206f776e6572206f662074686973206275726e61626c650000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613c0e81613411565b8114613c1957600080fd5b50565b613c2581613423565b8114613c3057600080fd5b50565b613c3c8161342f565b8114613c4757600080fd5b50565b613c538161347b565b8114613c5e57600080fd5b5056fea2646970667358221220ecba40d5732c97dc404ac8b28d8b2b4827aefee5d087d34bb1aef578e5ec800d64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a0823111610102578063c002d23d11610095578063e985e9c511610064578063e985e9c51461069f578063efd0cbf9146106dc578063f2fde38b146106f8578063f8ff678214610721576101d8565b8063c002d23d146105e1578063c87b56dd1461060c578063d547cfb714610649578063d89135cd14610674576101d8565b806391934915116100d1578063919349151461052757806395d89b4114610564578063a22cb4651461058f578063b88d4fde146105b8576101d8565b806370a082311461047d578063715018a6146104ba5780637c11a47b146104d15780638da5cb5b146104fc576101d8565b806326a49e371161017a578063500674ad11610149578063500674ad146103c357806355f804b3146103ec57806359a7715a146104155780636352211e14610440576101d8565b806326a49e37146103095780633502a7161461034657806342842e0e1461037157806342966c681461039a576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780630e29df22146102ab57806318160ddd146102b557806323b872dd146102e0576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612916565b61074c565b6040516102119190612efa565b60405180910390f35b34801561022657600080fd5b5061022f61082e565b60405161023c9190612f15565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906129b9565b6108c0565b6040516102799190612e93565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906128d6565b610945565b005b6102b3610a5d565b005b3480156102c157600080fd5b506102ca610a79565b6040516102d791906131f7565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906127c0565b610a9a565b005b34801561031557600080fd5b50610330600480360381019061032b91906129b9565b610afa565b60405161033d91906131f7565b60405180910390f35b34801561035257600080fd5b5061035b610b1e565b60405161036891906131f7565b60405180910390f35b34801561037d57600080fd5b50610398600480360381019061039391906127c0565b610b24565b005b3480156103a657600080fd5b506103c160048036038101906103bc91906129b9565b610b44565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906129b9565b610bda565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612970565b610dbd565b005b34801561042157600080fd5b5061042a610e53565b60405161043791906131f7565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906129b9565b610e62565b6040516104749190612e93565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190612726565b610f14565b6040516104b191906131f7565b60405180910390f35b3480156104c657600080fd5b506104cf610fcc565b005b3480156104dd57600080fd5b506104e6611054565b6040516104f39190612e93565b60405180910390f35b34801561050857600080fd5b5061051161107a565b60405161051e9190612e93565b60405180910390f35b34801561053357600080fd5b5061054e600480360381019061054991906129b9565b6110a4565b60405161055b9190612e93565b60405180910390f35b34801561057057600080fd5b50610579611158565b6040516105869190612f15565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190612896565b6111ea565b005b3480156105c457600080fd5b506105df60048036038101906105da9190612813565b61136b565b005b3480156105ed57600080fd5b506105f66113cd565b60405161060391906131f7565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e91906129b9565b6113d9565b6040516106409190612f15565b60405180910390f35b34801561065557600080fd5b5061065e61140d565b60405161066b9190612f15565b60405180910390f35b34801561068057600080fd5b5061068961149b565b60405161069691906131f7565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612780565b6114aa565b6040516106d39190612efa565b60405180910390f35b6106f660048036038101906106f191906129b9565b61153e565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612726565b6116a2565b005b34801561072d57600080fd5b5061073661179a565b60405161074391906131f7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108275750610826826117a0565b5b9050919050565b60606000805461083d906134c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610869906134c7565b80156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108cb8261180a565b61090a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610901906130f7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095082610e62565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890613177565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e0611876565b73ffffffffffffffffffffffffffffffffffffffff161480610a0f5750610a0e81610a09611876565b6114aa565b5b610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4590613037565b60405180910390fd5b610a58838361187e565b505050565b6000610a67610a79565b905060008111610a7657600080fd5b50565b6000610a83611937565b610a8b611948565b610a9591906133dd565b905090565b610aab610aa5611876565b82611959565b610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906131b7565b60405180910390fd5b610af5838383611a37565b505050565b6000610b178267011c37937e080000611c9390919063ffffffff16565b9050919050565b61138781565b610b3f8383836040518060200160405280600081525061136b565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610b6482610e62565b73ffffffffffffffffffffffffffffffffffffffff1614610b8457600080fd5b600047905060008111610b9657600080fd5b610ba33361dead84611a37565b6000610bad610a79565b9050610bcb33610bc68385611ca990919063ffffffff16565b611cbf565b610bd56009611d70565b505050565b60026006541415610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906131d7565b60405180910390fd5b60026006819055503373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610c9a91906131f7565b60206040518083038186803b158015610cb257600080fd5b505afa158015610cc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cea9190612753565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3790613057565b60405180910390fd5b610d5481600a611d8690919063ffffffff16565b15610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90612fd7565b60405180910390fd5b610da881600a611da090919063ffffffff16565b50610db233611dba565b600160068190555050565b610dc5611876565b73ffffffffffffffffffffffffffffffffffffffff16610de361107a565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613117565b60405180910390fd5b80600e9080519060200190610e4f929190612525565b5050565b6000610e5d611948565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613097565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613077565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fd4611876565b73ffffffffffffffffffffffffffffffffffffffff16610ff261107a565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613117565b60405180910390fd5b6110526000611e0b565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161110191906131f7565b60206040518083038186803b15801561111957600080fd5b505afa15801561112d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111519190612753565b9050919050565b606060018054611167906134c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611193906134c7565b80156111e05780601f106111b5576101008083540402835291602001916111e0565b820191906000526020600020905b8154815290600101906020018083116111c357829003601f168201915b5050505050905090565b6111f2611876565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790612fb7565b60405180910390fd5b806005600061126d611876565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661131a611876565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135f9190612efa565b60405180910390a35050565b61137c611376611876565b83611959565b6113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b2906131b7565b60405180910390fd5b6113c784848484611ed1565b50505050565b67011c37937e08000081565b6060600e6113e683611f2d565b6040516020016113f7929190612e5a565b6040516020818303038152906040529050919050565b600e805461141a906134c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611446906134c7565b80156114935780601f1061146857610100808354040283529160200191611493565b820191906000526020600020905b81548152906001019060200180831161147657829003601f168201915b505050505081565b60006114a5611937565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fa0611549611948565b111561158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906130d7565b60405180910390fd5b6000611594611948565b9050610fa082826115a591906132fc565b11156115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90612ff7565b60405180910390fd5b610fa081111561162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611622906130d7565b60405180910390fd5b61163482610afa565b341015611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90613157565b60405180910390fd5b60005b8281101561169d5761168a33611dba565b80806116959061352a565b915050611679565b505050565b6116aa611876565b73ffffffffffffffffffffffffffffffffffffffff166116c861107a565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590613117565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590612f57565b60405180910390fd5b61179781611e0b565b50565b610fa081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118f183610e62565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611943600961208e565b905090565b6000611954600861208e565b905090565b60006119648261180a565b6119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90613017565b60405180910390fd5b60006119ae83610e62565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a1d57508373ffffffffffffffffffffffffffffffffffffffff16611a05846108c0565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a2e5750611a2d81856114aa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a5782610e62565b73ffffffffffffffffffffffffffffffffffffffff1614611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613137565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490612f97565b60405180910390fd5b611b2883838361209c565b611b3360008261187e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8391906133dd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bda91906132fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611ca19190613383565b905092915050565b60008183611cb79190613352565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ce590612e7e565b60006040518083038185875af1925050503d8060008114611d22576040519150601f19603f3d011682016040523d82523d6000602084013e611d27565b606091505b5050905080611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290613197565b60405180910390fd5b505050565b6001816000016000828254019250508190555050565b6000611d98836000018360001b6120a1565b905092915050565b6000611db2836000018360001b6120c4565b905092915050565b6000611dc4611948565b9050611dd06008611d70565b611dda8282612134565b807f70aa49f36189c865708acd69ac2f094018a8c228abe3fc99fe28dbdd6c9a5b8960405160405180910390a25050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611edc848484611a37565b611ee884848484612152565b611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90612f37565b60405180910390fd5b50505050565b60606000821415611f75576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612089565b600082905060005b60008214611fa7578080611f909061352a565b915050600a82611fa09190613352565b9150611f7d565b60008167ffffffffffffffff811115611fc357611fc2613660565b5b6040519080825280601f01601f191660200182016040528015611ff55781602001600182028036833780820191505090505b5090505b600085146120825760018261200e91906133dd565b9150600a8561201d9190613573565b603061202991906132fc565b60f81b81838151811061203f5761203e613631565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561207b9190613352565b9450611ff9565b8093505050505b919050565b600081600001549050919050565b505050565b600080836001016000848152602001908152602001600020541415905092915050565b60006120d083836120a1565b61212957826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061212e565b600090505b92915050565b61214e8282604051806020016040528060008152506122e9565b5050565b60006121738473ffffffffffffffffffffffffffffffffffffffff16612344565b156122dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261219c611876565b8786866040518563ffffffff1660e01b81526004016121be9493929190612eae565b602060405180830381600087803b1580156121d857600080fd5b505af192505050801561220957506040513d601f19601f820116820180604052508101906122069190612943565b60015b61228c573d8060008114612239576040519150601f19603f3d011682016040523d82523d6000602084013e61223e565b606091505b50600081511415612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b90612f37565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122e1565b600190505b949350505050565b6122f38383612357565b6123006000848484612152565b61233f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233690612f37565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be906130b7565b60405180910390fd5b6123d08161180a565b15612410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240790612f77565b60405180910390fd5b61241c6000838361209c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246c91906132fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612531906134c7565b90600052602060002090601f016020900481019282612553576000855561259a565b82601f1061256c57805160ff191683800117855561259a565b8280016001018555821561259a579182015b8281111561259957825182559160200191906001019061257e565b5b5090506125a791906125ab565b5090565b5b808211156125c45760008160009055506001016125ac565b5090565b60006125db6125d684613237565b613212565b9050828152602081018484840111156125f7576125f6613694565b5b612602848285613485565b509392505050565b600061261d61261884613268565b613212565b90508281526020810184848401111561263957612638613694565b5b612644848285613485565b509392505050565b60008135905061265b81613c05565b92915050565b60008151905061267081613c05565b92915050565b60008135905061268581613c1c565b92915050565b60008135905061269a81613c33565b92915050565b6000815190506126af81613c33565b92915050565b600082601f8301126126ca576126c961368f565b5b81356126da8482602086016125c8565b91505092915050565b600082601f8301126126f8576126f761368f565b5b813561270884826020860161260a565b91505092915050565b60008135905061272081613c4a565b92915050565b60006020828403121561273c5761273b61369e565b5b600061274a8482850161264c565b91505092915050565b6000602082840312156127695761276861369e565b5b600061277784828501612661565b91505092915050565b600080604083850312156127975761279661369e565b5b60006127a58582860161264c565b92505060206127b68582860161264c565b9150509250929050565b6000806000606084860312156127d9576127d861369e565b5b60006127e78682870161264c565b93505060206127f88682870161264c565b925050604061280986828701612711565b9150509250925092565b6000806000806080858703121561282d5761282c61369e565b5b600061283b8782880161264c565b945050602061284c8782880161264c565b935050604061285d87828801612711565b925050606085013567ffffffffffffffff81111561287e5761287d613699565b5b61288a878288016126b5565b91505092959194509250565b600080604083850312156128ad576128ac61369e565b5b60006128bb8582860161264c565b92505060206128cc85828601612676565b9150509250929050565b600080604083850312156128ed576128ec61369e565b5b60006128fb8582860161264c565b925050602061290c85828601612711565b9150509250929050565b60006020828403121561292c5761292b61369e565b5b600061293a8482850161268b565b91505092915050565b6000602082840312156129595761295861369e565b5b6000612967848285016126a0565b91505092915050565b6000602082840312156129865761298561369e565b5b600082013567ffffffffffffffff8111156129a4576129a3613699565b5b6129b0848285016126e3565b91505092915050565b6000602082840312156129cf576129ce61369e565b5b60006129dd84828501612711565b91505092915050565b6129ef81613411565b82525050565b6129fe81613423565b82525050565b6000612a0f826132ae565b612a1981856132c4565b9350612a29818560208601613494565b612a32816136a3565b840191505092915050565b6000612a48826132b9565b612a5281856132e0565b9350612a62818560208601613494565b612a6b816136a3565b840191505092915050565b6000612a81826132b9565b612a8b81856132f1565b9350612a9b818560208601613494565b80840191505092915050565b60008154612ab4816134c7565b612abe81866132f1565b94506001821660008114612ad95760018114612aea57612b1d565b60ff19831686528186019350612b1d565b612af385613299565b60005b83811015612b1557815481890152600182019150602081019050612af6565b838801955050505b50505092915050565b6000612b336032836132e0565b9150612b3e826136b4565b604082019050919050565b6000612b566026836132e0565b9150612b6182613703565b604082019050919050565b6000612b79601c836132e0565b9150612b8482613752565b602082019050919050565b6000612b9c6024836132e0565b9150612ba78261377b565b604082019050919050565b6000612bbf6019836132e0565b9150612bca826137ca565b602082019050919050565b6000612be2602f836132e0565b9150612bed826137f3565b604082019050919050565b6000612c056009836132e0565b9150612c1082613842565b602082019050919050565b6000612c28602c836132e0565b9150612c338261386b565b604082019050919050565b6000612c4b6038836132e0565b9150612c56826138ba565b604082019050919050565b6000612c6e601e836132e0565b9150612c7982613909565b602082019050919050565b6000612c91602a836132e0565b9150612c9c82613932565b604082019050919050565b6000612cb46029836132e0565b9150612cbf82613981565b604082019050919050565b6000612cd76020836132e0565b9150612ce2826139d0565b602082019050919050565b6000612cfa6008836132e0565b9150612d05826139f9565b602082019050919050565b6000612d1d602c836132e0565b9150612d2882613a22565b604082019050919050565b6000612d406020836132e0565b9150612d4b82613a71565b602082019050919050565b6000612d636029836132e0565b9150612d6e82613a9a565b604082019050919050565b6000612d866011836132e0565b9150612d9182613ae9565b602082019050919050565b6000612da96021836132e0565b9150612db482613b12565b604082019050919050565b6000612dcc6000836132d5565b9150612dd782613b61565b600082019050919050565b6000612def6010836132e0565b9150612dfa82613b64565b602082019050919050565b6000612e126031836132e0565b9150612e1d82613b8d565b604082019050919050565b6000612e35601f836132e0565b9150612e4082613bdc565b602082019050919050565b612e548161347b565b82525050565b6000612e668285612aa7565b9150612e728284612a76565b91508190509392505050565b6000612e8982612dbf565b9150819050919050565b6000602082019050612ea860008301846129e6565b92915050565b6000608082019050612ec360008301876129e6565b612ed060208301866129e6565b612edd6040830185612e4b565b8181036060830152612eef8184612a04565b905095945050505050565b6000602082019050612f0f60008301846129f5565b92915050565b60006020820190508181036000830152612f2f8184612a3d565b905092915050565b60006020820190508181036000830152612f5081612b26565b9050919050565b60006020820190508181036000830152612f7081612b49565b9050919050565b60006020820190508181036000830152612f9081612b6c565b9050919050565b60006020820190508181036000830152612fb081612b8f565b9050919050565b60006020820190508181036000830152612fd081612bb2565b9050919050565b60006020820190508181036000830152612ff081612bd5565b9050919050565b6000602082019050818103600083015261301081612bf8565b9050919050565b6000602082019050818103600083015261303081612c1b565b9050919050565b6000602082019050818103600083015261305081612c3e565b9050919050565b6000602082019050818103600083015261307081612c61565b9050919050565b6000602082019050818103600083015261309081612c84565b9050919050565b600060208201905081810360008301526130b081612ca7565b9050919050565b600060208201905081810360008301526130d081612cca565b9050919050565b600060208201905081810360008301526130f081612ced565b9050919050565b6000602082019050818103600083015261311081612d10565b9050919050565b6000602082019050818103600083015261313081612d33565b9050919050565b6000602082019050818103600083015261315081612d56565b9050919050565b6000602082019050818103600083015261317081612d79565b9050919050565b6000602082019050818103600083015261319081612d9c565b9050919050565b600060208201905081810360008301526131b081612de2565b9050919050565b600060208201905081810360008301526131d081612e05565b9050919050565b600060208201905081810360008301526131f081612e28565b9050919050565b600060208201905061320c6000830184612e4b565b92915050565b600061321c61322d565b905061322882826134f9565b919050565b6000604051905090565b600067ffffffffffffffff82111561325257613251613660565b5b61325b826136a3565b9050602081019050919050565b600067ffffffffffffffff82111561328357613282613660565b5b61328c826136a3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133078261347b565b91506133128361347b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613347576133466135a4565b5b828201905092915050565b600061335d8261347b565b91506133688361347b565b925082613378576133776135d3565b5b828204905092915050565b600061338e8261347b565b91506133998361347b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d2576133d16135a4565b5b828202905092915050565b60006133e88261347b565b91506133f38361347b565b925082821015613406576134056135a4565b5b828203905092915050565b600061341c8261345b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134b2578082015181840152602081019050613497565b838111156134c1576000848401525b50505050565b600060028204905060018216806134df57607f821691505b602082108114156134f3576134f2613602565b5b50919050565b613502826136a3565b810181811067ffffffffffffffff8211171561352157613520613660565b5b80604052505050565b60006135358261347b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613568576135676135a4565b5b600182019050919050565b600061357e8261347b565b91506135898361347b565b925082613599576135986135d3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f54686973206275726e61626c6520616c726561647920686173206d696e74656460008201527f2061207365636f6e64206275726e2e0000000000000000000000000000000000602082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f7420746865206f776e6572206f662074686973206275726e61626c650000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613c0e81613411565b8114613c1957600080fd5b50565b613c2581613423565b8114613c3057600080fd5b50565b613c3c8161342f565b8114613c4757600080fd5b50565b613c538161347b565b8114613c5e57600080fd5b5056fea2646970667358221220ecba40d5732c97dc404ac8b28d8b2b4827aefee5d087d34bb1aef578e5ec800d64736f6c63430008070033
Deployed Bytecode Sourcemap
58851:4469:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46530:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47475:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49034:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48557:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61988:115;;;:::i;:::-;;60041:111;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49924:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61620:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59634:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50334:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62589:539;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60801:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62111:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60498:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47169:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46899:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28165:94;;;;;;;;;;;;;:::i;:::-;;59332:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27514:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60601:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47644:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49327:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50590:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59749:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62287:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59599:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60397:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49693:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61198:410;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28414:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59688:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46530:305;46632:4;46684:25;46669:40;;;:11;:40;;;;:105;;;;46741:33;46726:48;;;:11;:48;;;;46669:105;:158;;;;46791:36;46815:11;46791:23;:36::i;:::-;46669:158;46649:178;;46530:305;;;:::o;47475:100::-;47529:13;47562:5;47555:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47475:100;:::o;49034:221::-;49110:7;49138:16;49146:7;49138;:16::i;:::-;49130:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49223:15;:24;49239:7;49223:24;;;;;;;;;;;;;;;;;;;;;49216:31;;49034:221;;;:::o;48557:411::-;48638:13;48654:23;48669:7;48654:14;:23::i;:::-;48638:39;;48702:5;48696:11;;:2;:11;;;;48688:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;48796:5;48780:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;48805:37;48822:5;48829:12;:10;:12::i;:::-;48805:16;:37::i;:::-;48780:62;48758:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;48939:21;48948:2;48952:7;48939:8;:21::i;:::-;48627:341;48557:411;;:::o;61988:115::-;62035:14;62052:13;:11;:13::i;:::-;62035:30;;62093:1;62084:6;:10;62076:19;;;;;;62024:79;61988:115::o;60041:111::-;60085:7;60130:14;:12;:14::i;:::-;60113;:12;:14::i;:::-;:31;;;;:::i;:::-;60105:39;;60041:111;:::o;49924:339::-;50119:41;50138:12;:10;:12::i;:::-;50152:7;50119:18;:41::i;:::-;50111:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50227:28;50237:4;50243:2;50247:7;50227:9;:28::i;:::-;49924:339;;;:::o;61620:109::-;61672:7;61699:22;61714:6;59786:10;61699:14;;:22;;;;:::i;:::-;61692:29;;61620:109;;;:::o;59634:43::-;59673:4;59634:43;:::o;50334:185::-;50472:39;50489:4;50495:2;50499:7;50472:39;;;;;;;;;;;;:16;:39::i;:::-;50334:185;;;:::o;62589:539::-;62668:10;62647:31;;:17;62655:8;62647:7;:17::i;:::-;:31;;;62639:40;;;;;;62690:15;62708:21;62690:39;;62758:1;62748:7;:11;62740:20;;;;;;62795:125;62819:10;62844:42;62901:8;62795:9;:125::i;:::-;62962:14;62979:13;:11;:13::i;:::-;62962:30;;63003:43;63014:10;63026:19;63038:6;63026:7;:11;;:19;;;;:::i;:::-;63003:10;:43::i;:::-;63094:26;:14;:24;:26::i;:::-;62628:500;;62589:539;:::o;60801:385::-;22662:1;23258:7;;:19;;23250:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22662:1;23391:7;:18;;;;60929:10:::1;60887:52;;:17;;;;;;;;;;;:25;;;60913:11;60887:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;;;60879:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;60994:38;61020:11;60994:16;:25;;:38;;;;:::i;:::-;60993:39;60985:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61106:33;61127:11;61106:16;:20;;:33;;;;:::i;:::-;;61152:26;61167:10;61152:14;:26::i;:::-;22618:1:::0;23570:7;:22;;;;60801:385;:::o;62111:101::-;27745:12;:10;:12::i;:::-;27734:23;;:7;:5;:7::i;:::-;:23;;;27726:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62197:7:::1;62182:12;:22;;;;;;;;;;;;:::i;:::-;;62111:101:::0;:::o;60498:91::-;60540:7;60567:14;:12;:14::i;:::-;60560:21;;60498:91;:::o;47169:239::-;47241:7;47261:13;47277:7;:16;47285:7;47277:16;;;;;;;;;;;;;;;;;;;;;47261:32;;47329:1;47312:19;;:5;:19;;;;47304:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47395:5;47388:12;;;47169:239;;;:::o;46899:208::-;46971:7;47016:1;46999:19;;:5;:19;;;;46991:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47083:9;:16;47093:5;47083:16;;;;;;;;;;;;;;;;47076:23;;46899:208;;;:::o;28165:94::-;27745:12;:10;:12::i;:::-;27734:23;;:7;:5;:7::i;:::-;:23;;;27726:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28230:21:::1;28248:1;28230:9;:21::i;:::-;28165:94::o:0;59332:76::-;;;;;;;;;;;;;:::o;27514:87::-;27560:7;27587:6;;;;;;;;;;;27580:13;;27514:87;:::o;60601:142::-;60670:7;60697:17;;;;;;;;;;;:25;;;60723:11;60697:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60690:45;;60601:142;;;:::o;47644:104::-;47700:13;47733:7;47726:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47644:104;:::o;49327:295::-;49442:12;:10;:12::i;:::-;49430:24;;:8;:24;;;;49422:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49542:8;49497:18;:32;49516:12;:10;:12::i;:::-;49497:32;;;;;;;;;;;;;;;:42;49530:8;49497:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;49595:8;49566:48;;49581:12;:10;:12::i;:::-;49566:48;;;49605:8;49566:48;;;;;;:::i;:::-;;;;;;;;49327:295;;:::o;50590:328::-;50765:41;50784:12;:10;:12::i;:::-;50798:7;50765:18;:41::i;:::-;50757:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50871:39;50885:4;50891:2;50895:7;50904:5;50871:13;:39::i;:::-;50590:328;;;;:::o;59749:47::-;59786:10;59749:47;:::o;62287:166::-;62353:13;62410:12;62424:19;:8;:17;:19::i;:::-;62393:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62379:66;;62287:166;;;:::o;59599:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60397:93::-;60441:7;60468:14;:12;:14::i;:::-;60461:21;;60397:93;:::o;49693:164::-;49790:4;49814:18;:25;49833:5;49814:25;;;;;;;;;;;;;;;:35;49840:8;49814:35;;;;;;;;;;;;;;;;;;;;;;;;;49807:42;;49693:164;;;;:::o;61198:410::-;59734:4;59963:14;:12;:14::i;:::-;:37;;59955:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61271:13:::1;61287:14;:12;:14::i;:::-;61271:30;;59734:4;61328:6;61320:5;:14;;;;:::i;:::-;:37;;61312:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;59734:4;61390:5;:28;;61382:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;61463:13;61469:6;61463:5;:13::i;:::-;61450:9;:26;;61442:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;61516:9;61511:90;61535:6;61531:1;:10;61511:90;;;61563:26;61578:10;61563:14;:26::i;:::-;61543:3;;;;;:::i;:::-;;;;61511:90;;;;61260:348;61198:410:::0;:::o;28414:192::-;27745:12;:10;:12::i;:::-;27734:23;;:7;:5;:7::i;:::-;:23;;;27726:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28523:1:::1;28503:22;;:8;:22;;;;28495:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28579:19;28589:8;28579:9;:19::i;:::-;28414:192:::0;:::o;59688:50::-;59734:4;59688:50;:::o;39500:157::-;39585:4;39624:25;39609:40;;;:11;:40;;;;39602:47;;39500:157;;;:::o;52428:127::-;52493:4;52545:1;52517:30;;:7;:16;52525:7;52517:16;;;;;;;;;;;;;;;;;;;;;:30;;;;52510:37;;52428:127;;;:::o;26302:98::-;26355:7;26382:10;26375:17;;26302:98;:::o;56410:174::-;56512:2;56485:15;:24;56501:7;56485:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56568:7;56564:2;56530:46;;56539:23;56554:7;56539:14;:23::i;:::-;56530:46;;;;;;;;;;;;56410:174;;:::o;60279:106::-;60326:7;60353:24;:14;:22;:24::i;:::-;60346:31;;60279:106;:::o;60160:107::-;60207:7;60234:25;:15;:23;:25::i;:::-;60227:32;;60160:107;:::o;52722:348::-;52815:4;52840:16;52848:7;52840;:16::i;:::-;52832:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52916:13;52932:23;52947:7;52932:14;:23::i;:::-;52916:39;;52985:5;52974:16;;:7;:16;;;:51;;;;53018:7;52994:31;;:20;53006:7;52994:11;:20::i;:::-;:31;;;52974:51;:87;;;;53029:32;53046:5;53053:7;53029:16;:32::i;:::-;52974:87;52966:96;;;52722:348;;;;:::o;55714:578::-;55873:4;55846:31;;:23;55861:7;55846:14;:23::i;:::-;:31;;;55838:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;55956:1;55942:16;;:2;:16;;;;55934:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56012:39;56033:4;56039:2;56043:7;56012:20;:39::i;:::-;56116:29;56133:1;56137:7;56116:8;:29::i;:::-;56177:1;56158:9;:15;56168:4;56158:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;56206:1;56189:9;:13;56199:2;56189:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;56237:2;56218:7;:16;56226:7;56218:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56276:7;56272:2;56257:27;;56266:4;56257:27;;;;;;;;;;;;55714:578;;;:::o;17488:98::-;17546:7;17577:1;17573;:5;;;;:::i;:::-;17566:12;;17488:98;;;;:::o;17887:::-;17945:7;17976:1;17972;:5;;;;:::i;:::-;17965:12;;17887:98;;;;:::o;63136:181::-;63211:12;63229:8;:13;;63250:7;63229:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63210:52;;;63281:7;63273:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63199:118;63136:181;;:::o;13487:127::-;13594:1;13576:7;:14;;;:19;;;;;;;;;;;13487:127;:::o;10891:146::-;10968:4;10992:37;11002:3;:10;;11022:5;11014:14;;10992:9;:37::i;:::-;10985:44;;10891:146;;;;:::o;10361:131::-;10428:4;10452:32;10457:3;:10;;10477:5;10469:14;;10452:4;:32::i;:::-;10445:39;;10361:131;;;;:::o;61737:192::-;61793:10;61806:14;:12;:14::i;:::-;61793:27;;61831;:15;:25;:27::i;:::-;61869:18;61879:3;61884:2;61869:9;:18::i;:::-;61918:2;61903:18;;;;;;;;;;61782:147;61737:192;:::o;28614:173::-;28670:16;28689:6;;;;;;;;;;;28670:25;;28715:8;28706:6;;:17;;;;;;;;;;;;;;;;;;28770:8;28739:40;;28760:8;28739:40;;;;;;;;;;;;28659:128;28614:173;:::o;51800:315::-;51957:28;51967:4;51973:2;51977:7;51957:9;:28::i;:::-;52004:48;52027:4;52033:2;52037:7;52046:5;52004:22;:48::i;:::-;51996:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;51800:315;;;;:::o;23918:723::-;23974:13;24204:1;24195:5;:10;24191:53;;;24222:10;;;;;;;;;;;;;;;;;;;;;24191:53;24254:12;24269:5;24254:20;;24285:14;24310:78;24325:1;24317:4;:9;24310:78;;24343:8;;;;;:::i;:::-;;;;24374:2;24366:10;;;;;:::i;:::-;;;24310:78;;;24398:19;24430:6;24420:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24398:39;;24448:154;24464:1;24455:5;:10;24448:154;;24492:1;24482:11;;;;;:::i;:::-;;;24559:2;24551:5;:10;;;;:::i;:::-;24538:2;:24;;;;:::i;:::-;24525:39;;24508:6;24515;24508:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;24588:2;24579:11;;;;;:::i;:::-;;;24448:154;;;24626:6;24612:21;;;;;23918:723;;;;:::o;13365:114::-;13430:7;13457;:14;;;13450:21;;13365:114;;;:::o;58520:126::-;;;;:::o;3854:129::-;3927:4;3974:1;3951:3;:12;;:19;3964:5;3951:19;;;;;;;;;;;;:24;;3944:31;;3854:129;;;;:::o;1758:414::-;1821:4;1843:21;1853:3;1858:5;1843:9;:21::i;:::-;1838:327;;1881:3;:11;;1898:5;1881:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2064:3;:11;;:18;;;;2042:3;:12;;:19;2055:5;2042:19;;;;;;;;;;;:40;;;;2104:4;2097:11;;;;1838:327;2148:5;2141:12;;1758:414;;;;;:::o;53412:110::-;53488:26;53498:2;53502:7;53488:26;;;;;;;;;;;;:9;:26::i;:::-;53412:110;;:::o;57149:799::-;57304:4;57325:15;:2;:13;;;:15::i;:::-;57321:620;;;57377:2;57361:36;;;57398:12;:10;:12::i;:::-;57412:4;57418:7;57427:5;57361:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57357:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57620:1;57603:6;:13;:18;57599:272;;;57646:60;;;;;;;;;;:::i;:::-;;;;;;;;57599:272;57821:6;57815:13;57806:6;57802:2;57798:15;57791:38;57357:529;57494:41;;;57484:51;;;:6;:51;;;;57477:58;;;;;57321:620;57925:4;57918:11;;57149:799;;;;;;;:::o;53749:321::-;53879:18;53885:2;53889:7;53879:5;:18::i;:::-;53930:54;53961:1;53965:2;53969:7;53978:5;53930:22;:54::i;:::-;53908:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;53749:321;;;:::o;29560:387::-;29620:4;29828:12;29895:7;29883:20;29875:28;;29938:1;29931:4;:8;29924:15;;;29560:387;;;:::o;54406:382::-;54500:1;54486:16;;:2;:16;;;;54478:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;54559:16;54567:7;54559;:16::i;:::-;54558:17;54550:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;54621:45;54650:1;54654:2;54658:7;54621:20;:45::i;:::-;54696:1;54679:9;:13;54689:2;54679:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;54727:2;54708:7;:16;54716:7;54708:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;54772:7;54768:2;54747:33;;54764:1;54747:33;;;;;;;;;;;;54406:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6126:327;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:119;;;6583:79;;:::i;:::-;6545:119;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6459:349;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:117;;;7138:79;;:::i;:::-;7102:117;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6814:509;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7329:329;;;;:::o;7664:118::-;7751:24;7769:5;7751:24;:::i;:::-;7746:3;7739:37;7664:118;;:::o;7788:109::-;7869:21;7884:5;7869:21;:::i;:::-;7864:3;7857:34;7788:109;;:::o;7903:360::-;7989:3;8017:38;8049:5;8017:38;:::i;:::-;8071:70;8134:6;8129:3;8071:70;:::i;:::-;8064:77;;8150:52;8195:6;8190:3;8183:4;8176:5;8172:16;8150:52;:::i;:::-;8227:29;8249:6;8227:29;:::i;:::-;8222:3;8218:39;8211:46;;7993:270;7903:360;;;;:::o;8269:364::-;8357:3;8385:39;8418:5;8385:39;:::i;:::-;8440:71;8504:6;8499:3;8440:71;:::i;:::-;8433:78;;8520:52;8565:6;8560:3;8553:4;8546:5;8542:16;8520:52;:::i;:::-;8597:29;8619:6;8597:29;:::i;:::-;8592:3;8588:39;8581:46;;8361:272;8269:364;;;;:::o;8639:377::-;8745:3;8773:39;8806:5;8773:39;:::i;:::-;8828:89;8910:6;8905:3;8828:89;:::i;:::-;8821:96;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:6;8998:3;8994:16;8987:23;;8749:267;8639:377;;;;:::o;9046:845::-;9149:3;9186:5;9180:12;9215:36;9241:9;9215:36;:::i;:::-;9267:89;9349:6;9344:3;9267:89;:::i;:::-;9260:96;;9387:1;9376:9;9372:17;9403:1;9398:137;;;;9549:1;9544:341;;;;9365:520;;9398:137;9482:4;9478:9;9467;9463:25;9458:3;9451:38;9518:6;9513:3;9509:16;9502:23;;9398:137;;9544:341;9611:38;9643:5;9611:38;:::i;:::-;9671:1;9685:154;9699:6;9696:1;9693:13;9685:154;;;9773:7;9767:14;9763:1;9758:3;9754:11;9747:35;9823:1;9814:7;9810:15;9799:26;;9721:4;9718:1;9714:12;9709:17;;9685:154;;;9868:6;9863:3;9859:16;9852:23;;9551:334;;9365:520;;9153:738;;9046:845;;;;:::o;9897:366::-;10039:3;10060:67;10124:2;10119:3;10060:67;:::i;:::-;10053:74;;10136:93;10225:3;10136:93;:::i;:::-;10254:2;10249:3;10245:12;10238:19;;9897:366;;;:::o;10269:::-;10411:3;10432:67;10496:2;10491:3;10432:67;:::i;:::-;10425:74;;10508:93;10597:3;10508:93;:::i;:::-;10626:2;10621:3;10617:12;10610:19;;10269:366;;;:::o;10641:::-;10783:3;10804:67;10868:2;10863:3;10804:67;:::i;:::-;10797:74;;10880:93;10969:3;10880:93;:::i;:::-;10998:2;10993:3;10989:12;10982:19;;10641:366;;;:::o;11013:::-;11155:3;11176:67;11240:2;11235:3;11176:67;:::i;:::-;11169:74;;11252:93;11341:3;11252:93;:::i;:::-;11370:2;11365:3;11361:12;11354:19;;11013:366;;;:::o;11385:::-;11527:3;11548:67;11612:2;11607:3;11548:67;:::i;:::-;11541:74;;11624:93;11713:3;11624:93;:::i;:::-;11742:2;11737:3;11733:12;11726:19;;11385:366;;;:::o;11757:::-;11899:3;11920:67;11984:2;11979:3;11920:67;:::i;:::-;11913:74;;11996:93;12085:3;11996:93;:::i;:::-;12114:2;12109:3;12105:12;12098:19;;11757:366;;;:::o;12129:365::-;12271:3;12292:66;12356:1;12351:3;12292:66;:::i;:::-;12285:73;;12367:93;12456:3;12367:93;:::i;:::-;12485:2;12480:3;12476:12;12469:19;;12129:365;;;:::o;12500:366::-;12642:3;12663:67;12727:2;12722:3;12663:67;:::i;:::-;12656:74;;12739:93;12828:3;12739:93;:::i;:::-;12857:2;12852:3;12848:12;12841:19;;12500:366;;;:::o;12872:::-;13014:3;13035:67;13099:2;13094:3;13035:67;:::i;:::-;13028:74;;13111:93;13200:3;13111:93;:::i;:::-;13229:2;13224:3;13220:12;13213:19;;12872:366;;;:::o;13244:::-;13386:3;13407:67;13471:2;13466:3;13407:67;:::i;:::-;13400:74;;13483:93;13572:3;13483:93;:::i;:::-;13601:2;13596:3;13592:12;13585:19;;13244:366;;;:::o;13616:::-;13758:3;13779:67;13843:2;13838:3;13779:67;:::i;:::-;13772:74;;13855:93;13944:3;13855:93;:::i;:::-;13973:2;13968:3;13964:12;13957:19;;13616:366;;;:::o;13988:::-;14130:3;14151:67;14215:2;14210:3;14151:67;:::i;:::-;14144:74;;14227:93;14316:3;14227:93;:::i;:::-;14345:2;14340:3;14336:12;14329:19;;13988:366;;;:::o;14360:::-;14502:3;14523:67;14587:2;14582:3;14523:67;:::i;:::-;14516:74;;14599:93;14688:3;14599:93;:::i;:::-;14717:2;14712:3;14708:12;14701:19;;14360:366;;;:::o;14732:365::-;14874:3;14895:66;14959:1;14954:3;14895:66;:::i;:::-;14888:73;;14970:93;15059:3;14970:93;:::i;:::-;15088:2;15083:3;15079:12;15072:19;;14732:365;;;:::o;15103:366::-;15245:3;15266:67;15330:2;15325:3;15266:67;:::i;:::-;15259:74;;15342:93;15431:3;15342:93;:::i;:::-;15460:2;15455:3;15451:12;15444:19;;15103:366;;;:::o;15475:::-;15617:3;15638:67;15702:2;15697:3;15638:67;:::i;:::-;15631:74;;15714:93;15803:3;15714:93;:::i;:::-;15832:2;15827:3;15823:12;15816:19;;15475:366;;;:::o;15847:::-;15989:3;16010:67;16074:2;16069:3;16010:67;:::i;:::-;16003:74;;16086:93;16175:3;16086:93;:::i;:::-;16204:2;16199:3;16195:12;16188:19;;15847:366;;;:::o;16219:::-;16361:3;16382:67;16446:2;16441:3;16382:67;:::i;:::-;16375:74;;16458:93;16547:3;16458:93;:::i;:::-;16576:2;16571:3;16567:12;16560:19;;16219:366;;;:::o;16591:::-;16733:3;16754:67;16818:2;16813:3;16754:67;:::i;:::-;16747:74;;16830:93;16919:3;16830:93;:::i;:::-;16948:2;16943:3;16939:12;16932:19;;16591:366;;;:::o;16963:398::-;17122:3;17143:83;17224:1;17219:3;17143:83;:::i;:::-;17136:90;;17235:93;17324:3;17235:93;:::i;:::-;17353:1;17348:3;17344:11;17337:18;;16963:398;;;:::o;17367:366::-;17509:3;17530:67;17594:2;17589:3;17530:67;:::i;:::-;17523:74;;17606:93;17695:3;17606:93;:::i;:::-;17724:2;17719:3;17715:12;17708:19;;17367:366;;;:::o;17739:::-;17881:3;17902:67;17966:2;17961:3;17902:67;:::i;:::-;17895:74;;17978:93;18067:3;17978:93;:::i;:::-;18096:2;18091:3;18087:12;18080:19;;17739:366;;;:::o;18111:::-;18253:3;18274:67;18338:2;18333:3;18274:67;:::i;:::-;18267:74;;18350:93;18439:3;18350:93;:::i;:::-;18468:2;18463:3;18459:12;18452:19;;18111:366;;;:::o;18483:118::-;18570:24;18588:5;18570:24;:::i;:::-;18565:3;18558:37;18483:118;;:::o;18607:429::-;18784:3;18806:92;18894:3;18885:6;18806:92;:::i;:::-;18799:99;;18915:95;19006:3;18997:6;18915:95;:::i;:::-;18908:102;;19027:3;19020:10;;18607:429;;;;;:::o;19042:379::-;19226:3;19248:147;19391:3;19248:147;:::i;:::-;19241:154;;19412:3;19405:10;;19042:379;;;:::o;19427:222::-;19520:4;19558:2;19547:9;19543:18;19535:26;;19571:71;19639:1;19628:9;19624:17;19615:6;19571:71;:::i;:::-;19427:222;;;;:::o;19655:640::-;19850:4;19888:3;19877:9;19873:19;19865:27;;19902:71;19970:1;19959:9;19955:17;19946:6;19902:71;:::i;:::-;19983:72;20051:2;20040:9;20036:18;20027:6;19983:72;:::i;:::-;20065;20133:2;20122:9;20118:18;20109:6;20065:72;:::i;:::-;20184:9;20178:4;20174:20;20169:2;20158:9;20154:18;20147:48;20212:76;20283:4;20274:6;20212:76;:::i;:::-;20204:84;;19655:640;;;;;;;:::o;20301:210::-;20388:4;20426:2;20415:9;20411:18;20403:26;;20439:65;20501:1;20490:9;20486:17;20477:6;20439:65;:::i;:::-;20301:210;;;;:::o;20517:313::-;20630:4;20668:2;20657:9;20653:18;20645:26;;20717:9;20711:4;20707:20;20703:1;20692:9;20688:17;20681:47;20745:78;20818:4;20809:6;20745:78;:::i;:::-;20737:86;;20517:313;;;;:::o;20836:419::-;21002:4;21040:2;21029:9;21025:18;21017:26;;21089:9;21083:4;21079:20;21075:1;21064:9;21060:17;21053:47;21117:131;21243:4;21117:131;:::i;:::-;21109:139;;20836:419;;;:::o;21261:::-;21427:4;21465:2;21454:9;21450:18;21442:26;;21514:9;21508:4;21504:20;21500:1;21489:9;21485:17;21478:47;21542:131;21668:4;21542:131;:::i;:::-;21534:139;;21261:419;;;:::o;21686:::-;21852:4;21890:2;21879:9;21875:18;21867:26;;21939:9;21933:4;21929:20;21925:1;21914:9;21910:17;21903:47;21967:131;22093:4;21967:131;:::i;:::-;21959:139;;21686:419;;;:::o;22111:::-;22277:4;22315:2;22304:9;22300:18;22292:26;;22364:9;22358:4;22354:20;22350:1;22339:9;22335:17;22328:47;22392:131;22518:4;22392:131;:::i;:::-;22384:139;;22111:419;;;:::o;22536:::-;22702:4;22740:2;22729:9;22725:18;22717:26;;22789:9;22783:4;22779:20;22775:1;22764:9;22760:17;22753:47;22817:131;22943:4;22817:131;:::i;:::-;22809:139;;22536:419;;;:::o;22961:::-;23127:4;23165:2;23154:9;23150:18;23142:26;;23214:9;23208:4;23204:20;23200:1;23189:9;23185:17;23178:47;23242:131;23368:4;23242:131;:::i;:::-;23234:139;;22961:419;;;:::o;23386:::-;23552:4;23590:2;23579:9;23575:18;23567:26;;23639:9;23633:4;23629:20;23625:1;23614:9;23610:17;23603:47;23667:131;23793:4;23667:131;:::i;:::-;23659:139;;23386:419;;;:::o;23811:::-;23977:4;24015:2;24004:9;24000:18;23992:26;;24064:9;24058:4;24054:20;24050:1;24039:9;24035:17;24028:47;24092:131;24218:4;24092:131;:::i;:::-;24084:139;;23811:419;;;:::o;24236:::-;24402:4;24440:2;24429:9;24425:18;24417:26;;24489:9;24483:4;24479:20;24475:1;24464:9;24460:17;24453:47;24517:131;24643:4;24517:131;:::i;:::-;24509:139;;24236:419;;;:::o;24661:::-;24827:4;24865:2;24854:9;24850:18;24842:26;;24914:9;24908:4;24904:20;24900:1;24889:9;24885:17;24878:47;24942:131;25068:4;24942:131;:::i;:::-;24934:139;;24661:419;;;:::o;25086:::-;25252:4;25290:2;25279:9;25275:18;25267:26;;25339:9;25333:4;25329:20;25325:1;25314:9;25310:17;25303:47;25367:131;25493:4;25367:131;:::i;:::-;25359:139;;25086:419;;;:::o;25511:::-;25677:4;25715:2;25704:9;25700:18;25692:26;;25764:9;25758:4;25754:20;25750:1;25739:9;25735:17;25728:47;25792:131;25918:4;25792:131;:::i;:::-;25784:139;;25511:419;;;:::o;25936:::-;26102:4;26140:2;26129:9;26125:18;26117:26;;26189:9;26183:4;26179:20;26175:1;26164:9;26160:17;26153:47;26217:131;26343:4;26217:131;:::i;:::-;26209:139;;25936:419;;;:::o;26361:::-;26527:4;26565:2;26554:9;26550:18;26542:26;;26614:9;26608:4;26604:20;26600:1;26589:9;26585:17;26578:47;26642:131;26768:4;26642:131;:::i;:::-;26634:139;;26361:419;;;:::o;26786:::-;26952:4;26990:2;26979:9;26975:18;26967:26;;27039:9;27033:4;27029:20;27025:1;27014:9;27010:17;27003:47;27067:131;27193:4;27067:131;:::i;:::-;27059:139;;26786:419;;;:::o;27211:::-;27377:4;27415:2;27404:9;27400:18;27392:26;;27464:9;27458:4;27454:20;27450:1;27439:9;27435:17;27428:47;27492:131;27618:4;27492:131;:::i;:::-;27484:139;;27211:419;;;:::o;27636:::-;27802:4;27840:2;27829:9;27825:18;27817:26;;27889:9;27883:4;27879:20;27875:1;27864:9;27860:17;27853:47;27917:131;28043:4;27917:131;:::i;:::-;27909:139;;27636:419;;;:::o;28061:::-;28227:4;28265:2;28254:9;28250:18;28242:26;;28314:9;28308:4;28304:20;28300:1;28289:9;28285:17;28278:47;28342:131;28468:4;28342:131;:::i;:::-;28334:139;;28061:419;;;:::o;28486:::-;28652:4;28690:2;28679:9;28675:18;28667:26;;28739:9;28733:4;28729:20;28725:1;28714:9;28710:17;28703:47;28767:131;28893:4;28767:131;:::i;:::-;28759:139;;28486:419;;;:::o;28911:::-;29077:4;29115:2;29104:9;29100:18;29092:26;;29164:9;29158:4;29154:20;29150:1;29139:9;29135:17;29128:47;29192:131;29318:4;29192:131;:::i;:::-;29184:139;;28911:419;;;:::o;29336:::-;29502:4;29540:2;29529:9;29525:18;29517:26;;29589:9;29583:4;29579:20;29575:1;29564:9;29560:17;29553:47;29617:131;29743:4;29617:131;:::i;:::-;29609:139;;29336:419;;;:::o;29761:::-;29927:4;29965:2;29954:9;29950:18;29942:26;;30014:9;30008:4;30004:20;30000:1;29989:9;29985:17;29978:47;30042:131;30168:4;30042:131;:::i;:::-;30034:139;;29761:419;;;:::o;30186:222::-;30279:4;30317:2;30306:9;30302:18;30294:26;;30330:71;30398:1;30387:9;30383:17;30374:6;30330:71;:::i;:::-;30186:222;;;;:::o;30414:129::-;30448:6;30475:20;;:::i;:::-;30465:30;;30504:33;30532:4;30524:6;30504:33;:::i;:::-;30414:129;;;:::o;30549:75::-;30582:6;30615:2;30609:9;30599:19;;30549:75;:::o;30630:307::-;30691:4;30781:18;30773:6;30770:30;30767:56;;;30803:18;;:::i;:::-;30767:56;30841:29;30863:6;30841:29;:::i;:::-;30833:37;;30925:4;30919;30915:15;30907:23;;30630:307;;;:::o;30943:308::-;31005:4;31095:18;31087:6;31084:30;31081:56;;;31117:18;;:::i;:::-;31081:56;31155:29;31177:6;31155:29;:::i;:::-;31147:37;;31239:4;31233;31229:15;31221:23;;30943:308;;;:::o;31257:141::-;31306:4;31329:3;31321:11;;31352:3;31349:1;31342:14;31386:4;31383:1;31373:18;31365:26;;31257:141;;;:::o;31404:98::-;31455:6;31489:5;31483:12;31473:22;;31404:98;;;:::o;31508:99::-;31560:6;31594:5;31588:12;31578:22;;31508:99;;;:::o;31613:168::-;31696:11;31730:6;31725:3;31718:19;31770:4;31765:3;31761:14;31746:29;;31613:168;;;;:::o;31787:147::-;31888:11;31925:3;31910:18;;31787:147;;;;:::o;31940:169::-;32024:11;32058:6;32053:3;32046:19;32098:4;32093:3;32089:14;32074:29;;31940:169;;;;:::o;32115:148::-;32217:11;32254:3;32239:18;;32115:148;;;;:::o;32269:305::-;32309:3;32328:20;32346:1;32328:20;:::i;:::-;32323:25;;32362:20;32380:1;32362:20;:::i;:::-;32357:25;;32516:1;32448:66;32444:74;32441:1;32438:81;32435:107;;;32522:18;;:::i;:::-;32435:107;32566:1;32563;32559:9;32552:16;;32269:305;;;;:::o;32580:185::-;32620:1;32637:20;32655:1;32637:20;:::i;:::-;32632:25;;32671:20;32689:1;32671:20;:::i;:::-;32666:25;;32710:1;32700:35;;32715:18;;:::i;:::-;32700:35;32757:1;32754;32750:9;32745:14;;32580:185;;;;:::o;32771:348::-;32811:7;32834:20;32852:1;32834:20;:::i;:::-;32829:25;;32868:20;32886:1;32868:20;:::i;:::-;32863:25;;33056:1;32988:66;32984:74;32981:1;32978:81;32973:1;32966:9;32959:17;32955:105;32952:131;;;33063:18;;:::i;:::-;32952:131;33111:1;33108;33104:9;33093:20;;32771:348;;;;:::o;33125:191::-;33165:4;33185:20;33203:1;33185:20;:::i;:::-;33180:25;;33219:20;33237:1;33219:20;:::i;:::-;33214:25;;33258:1;33255;33252:8;33249:34;;;33263:18;;:::i;:::-;33249:34;33308:1;33305;33301:9;33293:17;;33125:191;;;;:::o;33322:96::-;33359:7;33388:24;33406:5;33388:24;:::i;:::-;33377:35;;33322:96;;;:::o;33424:90::-;33458:7;33501:5;33494:13;33487:21;33476:32;;33424:90;;;:::o;33520:149::-;33556:7;33596:66;33589:5;33585:78;33574:89;;33520:149;;;:::o;33675:126::-;33712:7;33752:42;33745:5;33741:54;33730:65;;33675:126;;;:::o;33807:77::-;33844:7;33873:5;33862:16;;33807:77;;;:::o;33890:154::-;33974:6;33969:3;33964;33951:30;34036:1;34027:6;34022:3;34018:16;34011:27;33890:154;;;:::o;34050:307::-;34118:1;34128:113;34142:6;34139:1;34136:13;34128:113;;;34227:1;34222:3;34218:11;34212:18;34208:1;34203:3;34199:11;34192:39;34164:2;34161:1;34157:10;34152:15;;34128:113;;;34259:6;34256:1;34253:13;34250:101;;;34339:1;34330:6;34325:3;34321:16;34314:27;34250:101;34099:258;34050:307;;;:::o;34363:320::-;34407:6;34444:1;34438:4;34434:12;34424:22;;34491:1;34485:4;34481:12;34512:18;34502:81;;34568:4;34560:6;34556:17;34546:27;;34502:81;34630:2;34622:6;34619:14;34599:18;34596:38;34593:84;;;34649:18;;:::i;:::-;34593:84;34414:269;34363:320;;;:::o;34689:281::-;34772:27;34794:4;34772:27;:::i;:::-;34764:6;34760:40;34902:6;34890:10;34887:22;34866:18;34854:10;34851:34;34848:62;34845:88;;;34913:18;;:::i;:::-;34845:88;34953:10;34949:2;34942:22;34732:238;34689:281;;:::o;34976:233::-;35015:3;35038:24;35056:5;35038:24;:::i;:::-;35029:33;;35084:66;35077:5;35074:77;35071:103;;;35154:18;;:::i;:::-;35071:103;35201:1;35194:5;35190:13;35183:20;;34976:233;;;:::o;35215:176::-;35247:1;35264:20;35282:1;35264:20;:::i;:::-;35259:25;;35298:20;35316:1;35298:20;:::i;:::-;35293:25;;35337:1;35327:35;;35342:18;;:::i;:::-;35327:35;35383:1;35380;35376:9;35371:14;;35215:176;;;;:::o;35397:180::-;35445:77;35442:1;35435:88;35542:4;35539:1;35532:15;35566:4;35563:1;35556:15;35583:180;35631:77;35628:1;35621:88;35728:4;35725:1;35718:15;35752:4;35749:1;35742:15;35769:180;35817:77;35814:1;35807:88;35914:4;35911:1;35904:15;35938:4;35935:1;35928:15;35955:180;36003:77;36000:1;35993:88;36100:4;36097:1;36090:15;36124:4;36121:1;36114:15;36141:180;36189:77;36186:1;36179:88;36286:4;36283:1;36276:15;36310:4;36307:1;36300:15;36327:117;36436:1;36433;36426:12;36450:117;36559:1;36556;36549:12;36573:117;36682:1;36679;36672:12;36696:117;36805:1;36802;36795:12;36819:102;36860:6;36911:2;36907:7;36902:2;36895:5;36891:14;36887:28;36877:38;;36819:102;;;:::o;36927:237::-;37067:34;37063:1;37055:6;37051:14;37044:58;37136:20;37131:2;37123:6;37119:15;37112:45;36927:237;:::o;37170:225::-;37310:34;37306:1;37298:6;37294:14;37287:58;37379:8;37374:2;37366:6;37362:15;37355:33;37170:225;:::o;37401:178::-;37541:30;37537:1;37529:6;37525:14;37518:54;37401:178;:::o;37585:223::-;37725:34;37721:1;37713:6;37709:14;37702:58;37794:6;37789:2;37781:6;37777:15;37770:31;37585:223;:::o;37814:175::-;37954:27;37950:1;37942:6;37938:14;37931:51;37814:175;:::o;37995:234::-;38135:34;38131:1;38123:6;38119:14;38112:58;38204:17;38199:2;38191:6;38187:15;38180:42;37995:234;:::o;38235:159::-;38375:11;38371:1;38363:6;38359:14;38352:35;38235:159;:::o;38400:231::-;38540:34;38536:1;38528:6;38524:14;38517:58;38609:14;38604:2;38596:6;38592:15;38585:39;38400:231;:::o;38637:243::-;38777:34;38773:1;38765:6;38761:14;38754:58;38846:26;38841:2;38833:6;38829:15;38822:51;38637:243;:::o;38886:180::-;39026:32;39022:1;39014:6;39010:14;39003:56;38886:180;:::o;39072:229::-;39212:34;39208:1;39200:6;39196:14;39189:58;39281:12;39276:2;39268:6;39264:15;39257:37;39072:229;:::o;39307:228::-;39447:34;39443:1;39435:6;39431:14;39424:58;39516:11;39511:2;39503:6;39499:15;39492:36;39307:228;:::o;39541:182::-;39681:34;39677:1;39669:6;39665:14;39658:58;39541:182;:::o;39729:158::-;39869:10;39865:1;39857:6;39853:14;39846:34;39729:158;:::o;39893:231::-;40033:34;40029:1;40021:6;40017:14;40010:58;40102:14;40097:2;40089:6;40085:15;40078:39;39893:231;:::o;40130:182::-;40270:34;40266:1;40258:6;40254:14;40247:58;40130:182;:::o;40318:228::-;40458:34;40454:1;40446:6;40442:14;40435:58;40527:11;40522:2;40514:6;40510:15;40503:36;40318:228;:::o;40552:167::-;40692:19;40688:1;40680:6;40676:14;40669:43;40552:167;:::o;40725:220::-;40865:34;40861:1;40853:6;40849:14;40842:58;40934:3;40929:2;40921:6;40917:15;40910:28;40725:220;:::o;40951:114::-;;:::o;41071:166::-;41211:18;41207:1;41199:6;41195:14;41188:42;41071:166;:::o;41243:236::-;41383:34;41379:1;41371:6;41367:14;41360:58;41452:19;41447:2;41439:6;41435:15;41428:44;41243:236;:::o;41485:181::-;41625:33;41621:1;41613:6;41609:14;41602:57;41485:181;:::o;41672:122::-;41745:24;41763:5;41745:24;:::i;:::-;41738:5;41735:35;41725:63;;41784:1;41781;41774:12;41725:63;41672:122;:::o;41800:116::-;41870:21;41885:5;41870:21;:::i;:::-;41863:5;41860:32;41850:60;;41906:1;41903;41896:12;41850:60;41800:116;:::o;41922:120::-;41994:23;42011:5;41994:23;:::i;:::-;41987:5;41984:34;41974:62;;42032:1;42029;42022:12;41974:62;41922:120;:::o;42048:122::-;42121:24;42139:5;42121:24;:::i;:::-;42114:5;42111:35;42101:63;;42160:1;42157;42150:12;42101:63;42048:122;:::o
Swarm Source
ipfs://ecba40d5732c97dc404ac8b28d8b2b4827aefee5d087d34bb1aef578e5ec800d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.