Overview
TokenID
39
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ThePaintedSatoshis
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-03 */ // SPDX-License-Identifier: MIT // 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: contracts/specs/IEIP2981.sol pragma solidity ^0.8.0; /** * EIP-2981 */ interface IEIP2981 { /** * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a * * => 0x2a55205a = 0x2a55205a */ function royaltyInfo(uint256 tokenId, uint256 value) external view returns (address, uint256); } // File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol // OpenZeppelin Contracts v4.4.1 (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: contracts/common/Initializable.sol pragma solidity ^0.8.0; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } } // File: contracts/common/EIP712Base.sol pragma solidity ^0.8.0; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } } // 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: contracts/common/NativeMetaTransaction.sol pragma solidity ^0.8.0; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, payable(msg.sender), functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } } // File: contracts/common/ContextMixin.sol pragma solidity ^0.8.0; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } } // 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/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/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/finance/PaymentSplitter.sol pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + _totalReleased; uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account]; require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account] + payment; _totalReleased = _totalReleased + payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // 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: contracts/overrides/IRoyaltyOverride.sol pragma solidity ^0.8.0; /// @author: manifold.xyz /** * Simple EIP2981 reference override implementation */ interface IEIP2981RoyaltyOverride is IERC165 { event TokenRoyaltyRemoved(uint256 tokenId); event TokenRoyaltySet(uint256 tokenId, address recipient, uint16 bps); event DefaultRoyaltySet(address recipient, uint16 bps); struct TokenRoyalty { address recipient; uint16 bps; } struct TokenRoyaltyConfig { uint256 tokenId; address recipient; uint16 bps; } /** * @dev Set per token royalties. Passing a recipient of address(0) will delete any existing configuration */ function setTokenRoyalties(TokenRoyaltyConfig[] calldata royalties) external; /** * @dev Get the number of token specific overrides. Used to enumerate over all configurations */ function getTokenRoyaltiesCount() external view returns(uint256); /** * @dev Get a token royalty configuration by index. Use in conjunction with getTokenRoyaltiesCount to get all per token configurations */ function getTokenRoyaltyByIndex(uint256 index) external view returns(TokenRoyaltyConfig memory); /** * @dev Set a default royalty configuration. Will be used if no token specific configuration is set */ function setDefaultRoyalty(TokenRoyalty calldata royalty) external; } // 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: contracts/overrides/RoyaltyOverrideCore.sol pragma solidity ^0.8.0; /// @author: manifold.xyz /** * Simple EIP2981 reference override implementation */ abstract contract EIP2981RoyaltyOverrideCore is IEIP2981, IEIP2981RoyaltyOverride, ERC165 { using EnumerableSet for EnumerableSet.UintSet; TokenRoyalty public defaultRoyalty; mapping(uint256 => TokenRoyalty) private _tokenRoyalties; EnumerableSet.UintSet private _tokensWithRoyalties; function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IEIP2981).interfaceId || interfaceId == type(IEIP2981RoyaltyOverride).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Sets token royalties. When you override this in the implementation contract * ensure that you access restrict it to the contract owner or admin */ function _setTokenRoyalties(TokenRoyaltyConfig[] memory royaltyConfigs) internal { for (uint i = 0; i < royaltyConfigs.length; i++) { TokenRoyaltyConfig memory royaltyConfig = royaltyConfigs[i]; require(royaltyConfig.bps < 10000, "Invalid bps"); if (royaltyConfig.recipient == address(0)) { delete _tokenRoyalties[royaltyConfig.tokenId]; _tokensWithRoyalties.remove(royaltyConfig.tokenId); emit TokenRoyaltyRemoved(royaltyConfig.tokenId); } else { _tokenRoyalties[royaltyConfig.tokenId] = TokenRoyalty(royaltyConfig.recipient, royaltyConfig.bps); _tokensWithRoyalties.add(royaltyConfig.tokenId); emit TokenRoyaltySet(royaltyConfig.tokenId, royaltyConfig.recipient, royaltyConfig.bps); } } } /** * @dev Sets default royalty. When you override this in the implementation contract * ensure that you access restrict it to the contract owner or admin */ function _setDefaultRoyalty(TokenRoyalty memory royalty) internal { require(royalty.bps < 10000, "Invalid bps"); defaultRoyalty = TokenRoyalty(royalty.recipient, royalty.bps); emit DefaultRoyaltySet(royalty.recipient, royalty.bps); } /** * @dev See {IEIP2981RoyaltyOverride-getTokenRoyaltiesCount}. */ function getTokenRoyaltiesCount() external override view returns(uint256) { return _tokensWithRoyalties.length(); } /** * @dev See {IEIP2981RoyaltyOverride-getTokenRoyaltyByIndex}. */ function getTokenRoyaltyByIndex(uint256 index) external override view returns(TokenRoyaltyConfig memory) { uint256 tokenId = _tokensWithRoyalties.at(index); TokenRoyalty memory royalty = _tokenRoyalties[tokenId]; return TokenRoyaltyConfig(tokenId, royalty.recipient, royalty.bps); } /** * @dev See {IEIP2981RoyaltyOverride-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 value) public override view returns (address, uint256) { if (_tokenRoyalties[tokenId].recipient != address(0)) { return (_tokenRoyalties[tokenId].recipient, value*_tokenRoyalties[tokenId].bps/10000); } if (defaultRoyalty.recipient != address(0) && defaultRoyalty.bps != 0) { return (defaultRoyalty.recipient, value*defaultRoyalty.bps/10000); } return (address(0), 0); } } // 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/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/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: contracts/ERC721/ERC721S.sol // Forked from: Genetic Chain: ERC721Sequencial pragma solidity ^0.8.0; //------------------------------------------------------------------------------ /* ░██████╗░██╗░░░██╗░█████╗░██╗░░░░░██╗███████╗██╗███████╗██████╗░ ██████╗░███████╗██╗░░░██╗░██████╗ ██╔═══██╗██║░░░██║██╔══██╗██║░░░░░██║██╔════╝██║██╔════╝██╔══██╗ ██╔══██╗██╔════╝██║░░░██║██╔════╝ ██║██╗██║██║░░░██║███████║██║░░░░░██║█████╗░░██║█████╗░░██║░░██║ ██║░░██║█████╗░░╚██╗░██╔╝╚█████╗░ ╚██████╔╝██║░░░██║██╔══██║██║░░░░░██║██╔══╝░░██║██╔══╝░░██║░░██║ ██║░░██║██╔══╝░░░╚████╔╝░░╚═══██╗ ░╚═██╔═╝░╚██████╔╝██║░░██║███████╗██║██║░░░░░██║███████╗██████╔╝ ██████╔╝███████╗░░╚██╔╝░░██████╔╝ ░░░╚═╝░░░░╚═════╝░╚═╝░░╚═╝╚══════╝╚═╝╚═╝░░░░░╚═╝╚══════╝╚═════╝░ ╚═════╝░╚══════╝░░░╚═╝░░░╚═════╝░ */ //------------------------------------------------------------------------------ // Author: orion (@OrionDevStar) //------------------------------------------------------------------------------ //---------------------------------------------------------------------------- // Openzeppelin contracts //---------------------------------------------------------------------------- //---------------------------------------------------------------------------- // OpenSea proxy //---------------------------------------------------------------------------- //Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721 * [ERC721] Non-Fungible Token Standard * * This implmentation of ERC721 assumes sequencial token creation to provide * efficient minting. Storage for balance are no longer required reducing * gas significantly. This comes at the price of calculating the balance by * iterating through the entire array. The balanceOf function should NOT * be used inside a contract. Gas usage will explode as the size of tokens * increase. A convineiance function is provided which returns the entire * list of owners whose index maps tokenIds to thier owners. Zero addresses * indicate burned tokens. * */ contract ERC721S is Context, ERC165, IERC721, IERC721Metadata, ContextMixin, NativeMetaTransaction { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; //Opensea Proxy address private immutable _proxyRegistryAddress; // Mapping from token ID to owner address address[] _owners; // 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_, address proxyRegistryAddress_) { _proxyRegistryAddress = proxyRegistryAddress_; _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 balance) { require(owner != address(0), "ERC721: balance query for the zero address"); unchecked { uint256 length = _owners.length; for (uint256 i = 0; i < length; ++i) { if (_owners[i] == owner) { ++balance; } } } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: owner query for nonexistent token"); address owner = _owners[tokenId]; return owner; } /** * @dev Returns entire list of owner enumerated by thier tokenIds. Burned tokens * will have a zero address. */ function owners() public view returns (address[] memory) { address[] memory owners_ = _owners; return owners_; } /** * @dev Return largest tokenId minted. */ function maxTokenId() public view returns (uint256) { return _owners.length > 0 ? _owners.length - 1 : 0; } /** * @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 = ERC721S.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(_proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } 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 tokenId < _owners.length && _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 = ERC721S.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) internal virtual returns (uint256 tokenId) { tokenId = _safeMint(to, ""); } /** * @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, bytes memory _data ) internal virtual returns (uint256 tokenId) { tokenId = _mint(to); 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) internal virtual returns (uint256 tokenId) { require(to != address(0), "ERC721: mint to the zero address"); tokenId = _owners.length; _beforeTokenTransfer(address(0), to, tokenId); _owners.push(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 = ERC721S.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); 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(ERC721S.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); _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(ERC721S.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/ERC721/ERC721SE.sol // Forked from: Genetic Chain: ERC721SeqEnumerable pragma solidity ^0.8.0; //------------------------------------------------------------------------------ /* ░██████╗░██╗░░░██╗░█████╗░██╗░░░░░██╗███████╗██╗███████╗██████╗░ ██████╗░███████╗██╗░░░██╗░██████╗ ██╔═══██╗██║░░░██║██╔══██╗██║░░░░░██║██╔════╝██║██╔════╝██╔══██╗ ██╔══██╗██╔════╝██║░░░██║██╔════╝ ██║██╗██║██║░░░██║███████║██║░░░░░██║█████╗░░██║█████╗░░██║░░██║ ██║░░██║█████╗░░╚██╗░██╔╝╚█████╗░ ╚██████╔╝██║░░░██║██╔══██║██║░░░░░██║██╔══╝░░██║██╔══╝░░██║░░██║ ██║░░██║██╔══╝░░░╚████╔╝░░╚═══██╗ ░╚═██╔═╝░╚██████╔╝██║░░██║███████╗██║██║░░░░░██║███████╗██████╔╝ ██████╔╝███████╗░░╚██╔╝░░██████╔╝ ░░░╚═╝░░░░╚═════╝░╚═╝░░╚═╝╚══════╝╚═╝╚═╝░░░░░╚═╝╚══════╝╚═════╝░ ╚═════╝░╚══════╝░░░╚═╝░░░╚═════╝░ */ //------------------------------------------------------------------------------ // Author: orion (@OrionDevStar) //------------------------------------------------------------------------------ /** * @dev This is a no storage implementation of the optional extension {ERC721} * defined in the EIP that adds enumerability of all the token ids in the * contract as well as all token ids owned by each account. These functions * are mainly for convenience and should NEVER be called from inside a * contract on the chain. */ abstract contract ERC721SE is ERC721S, IERC721Enumerable { address constant zero = address(0); /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721S) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { uint256 length = _owners.length; unchecked { for (; tokenId < length; ++tokenId) { if (_owners[tokenId] == owner) { if (index-- == 0) { break; } } } } require( tokenId < length, "ERC721Enumerable: owner index out of bounds" ); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256 supply) { unchecked { uint256 length = _owners.length; for (uint256 tokenId = 0; tokenId < length; ++tokenId) { if (_owners[tokenId] != zero) { ++supply; } } } } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256 tokenId) { uint256 length = _owners.length; unchecked { for (; tokenId < length; ++tokenId) { if (_owners[tokenId] != zero) { if (index-- == 0) { break; } } } } require( tokenId < length, "ERC721Enumerable: global index out of bounds" ); } /** * @dev Get all tokens owned by owner. */ function ownerTokens(address owner) public view returns (uint256[] memory) { uint256 tokenCount = ERC721S.balanceOf(owner); require(tokenCount != 0, "ERC721Enumerable: owner owns no tokens"); uint256 length = _owners.length; uint256[] memory tokenIds = new uint256[](tokenCount); unchecked { uint256 i = 0; for (uint256 tokenId = 0; tokenId < length; ++tokenId) { if (_owners[tokenId] == owner) { tokenIds[i++] = tokenId; } } } return tokenIds; } } // File: contracts/satoshisContract.sol pragma solidity ^0.8.9; /* ------------------------------------------------------------------------------ ████████╗██╗░░██╗███████╗ ╚══██╔══╝██║░░██║██╔════╝ ░░░██║░░░███████║█████╗░░ ░░░██║░░░██╔══██║██╔══╝░░ ░░░██║░░░██║░░██║███████╗ ░░░╚═╝░░░╚═╝░░╚═╝╚══════╝ ██████╗░░█████╗░██╗███╗░░██╗████████╗███████╗██████╗░ ██╔══██╗██╔══██╗██║████╗░██║╚══██╔══╝██╔════╝██╔══██╗ ██████╔╝███████║██║██╔██╗██║░░░██║░░░█████╗░░██║░░██║ ██╔═══╝░██╔══██║██║██║╚████║░░░██║░░░██╔══╝░░██║░░██║ ██║░░░░░██║░░██║██║██║░╚███║░░░██║░░░███████╗██████╔╝ ╚═╝░░░░░╚═╝░░╚═╝╚═╝╚═╝░░╚══╝░░░╚═╝░░░╚══════╝╚═════╝░ ░██████╗░█████╗░████████╗░█████╗░░██████╗██╗░░██╗██╗░██████╗ ██╔════╝██╔══██╗╚══██╔══╝██╔══██╗██╔════╝██║░░██║██║██╔════╝ ╚█████╗░███████║░░░██║░░░██║░░██║╚█████╗░███████║██║╚█████╗░ ░╚═══██╗██╔══██║░░░██║░░░██║░░██║░╚═══██╗██╔══██║██║░╚═══██╗ ██████╔╝██║░░██║░░░██║░░░╚█████╔╝██████╔╝██║░░██║██║██████╔╝ ╚═════╝░╚═╝░░╚═╝░░░╚═╝░░░░╚════╝░╚═════╝░╚═╝░░╚═╝╚═╝╚═════╝░ ------------------------------------------------------------------------------ Artist: Darren Booth (@darbooth) Designer: Kangokai (@kangokai) Dev: Orion (@OrionDevStar) ------------------------------------------------------------------------------ */ contract ThePaintedSatoshis is ERC721SE, EIP2981RoyaltyOverrideCore, Ownable, ReentrancyGuard, PaymentSplitter, Pausable { using Strings for uint256; uint8 public MINT_AMOUNT_TRANSACTION = 10; uint128 public PUBLIC_COST = 0.04749 ether; uint256 public GENESIS_SUPPLY = 4749; uint256 public NEW_SUPPLY = 0; string private baseURI; string private newBaseURI; string public PROVENANCE_HASH; address[] public team; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, address proxyRegistryAddress, uint[] memory _teamShares, address[] memory _team, string memory _provence_hash ) ERC721S(_name, _symbol, proxyRegistryAddress) PaymentSplitter(_team, _teamShares) { setBaseURI(_initBaseURI); team = _team; PROVENANCE_HASH = _provence_hash; _initializeEIP712(_name); _owners.push(); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _newBaseURI() internal view virtual returns (string memory) { return newBaseURI; } // @dev standard mint verification used by other functions function _mintNFT(uint256 _quantity, uint128 _price) internal { require(_quantity * _price <= msg.value, "Insufficient funds."); require(_quantity + _owners.length <= maxSupply(),"Purchase exceeds available supply."); for (uint256 i = 0; i < _quantity; i++) { _safeMint(msg.sender); } } // public // @dev mint the _quantity to the message.sender // @param _quantity is the quantity that will be minted function mint(uint256 _quantity) public payable nonReentrant whenNotPaused { require(_quantity <= MINT_AMOUNT_TRANSACTION, "Quantity exceeds per-transaction limit"); _mintNFT(_quantity, PUBLIC_COST); } // @dev shows the actual maximum supply function maxSupply() public view virtual returns (uint256) { return GENESIS_SUPPLY + NEW_SUPPLY; } // @dev show the correct URI for the token, using the _tokenId to see if the token is on the Genesis or New supply // @param _tokenId points to the id of the NFT in the Smart Contract function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); if(_tokenId > GENESIS_SUPPLY) { return string(abi.encodePacked(_newBaseURI(), _tokenId.toString(), ".json")); } else { return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")); } } // @dev See {IERC165-supportsInterface}. function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721SE, EIP2981RoyaltyOverrideCore) returns (bool) { return ERC721SE.supportsInterface(interfaceId) || EIP2981RoyaltyOverrideCore.supportsInterface(interfaceId); } //only owner // @dev owner can mint a _quantity for the address _to for free, can be used to airdrop someone // @param _quantity is the quantity that will be minted // @param _to is the address that the tokens will be send function mintReserveToAddress(uint256 _quantity, address _to) public onlyOwner whenNotPaused { require(_quantity + _owners.length <= maxSupply(),"Purchase exceeds available supply."); for (uint256 i = 1; i <= _quantity; i++) { _safeMint(_to); } } // @dev mint a single token to each address passed in through calldata // @param _addresses Array of addresses to send a single token to function mintReserveToAddresses(address[] calldata _addresses) external onlyOwner whenNotPaused { uint256 _quantity = _addresses.length; require(_quantity + _owners.length <= maxSupply(),"Purchase exceeds available supply."); for (uint256 i = 0; i < _quantity; i++) { _safeMint(_addresses[i]); } } // @dev set a new baseURI for the Smart Contract // @param _BaseURI the new URI function setBaseURI(string memory _BaseURI) public onlyOwner { baseURI = _BaseURI; } // @dev set a new NewbaseURI for the Smart Contract // @param _NewBaseURI the new URI function setNewBaseURI(string memory _NewBaseURI) public onlyOwner { newBaseURI = _NewBaseURI; } // @dev set the contract to paused function pause() public onlyOwner { _pause(); } // @dev set the contract to unpaused function unpause() public onlyOwner { _unpause(); } // @dev See {IEIP2981RoyaltyOverride-setTokenRoyalties}. function setTokenRoyalties(TokenRoyaltyConfig[] calldata royaltyConfigs) external override onlyOwner { _setTokenRoyalties(royaltyConfigs); } // @dev See {IEIP2981RoyaltyOverride-setDefaultRoyalty}. function setDefaultRoyalty(TokenRoyalty calldata royalty) external override onlyOwner { _setDefaultRoyalty(royalty); } // @dev changes the Genesis supply to be equal to the total supply function burnRemainingTokens() public onlyOwner { GENESIS_SUPPLY = totalSupply(); } // @dev add _newQuantity to the NEW_SUPPLY to enable more tokens to be minted function addNewTokens(uint256 _newQuantity) public onlyOwner { NEW_SUPPLY += _newQuantity; } // @dev release all the funds in the smart contract for the team using the release function from PaymentSplitter function releaseFunds() external onlyOwner { for (uint i = 0; i < team.length; i++) { release(payable(team[i])); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"proxyRegistryAddress","type":"address"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"string","name":"_provence_hash","type":"string"}],"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":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint16","name":"bps","type":"uint16"}],"name":"DefaultRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenRoyaltyRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint16","name":"bps","type":"uint16"}],"name":"TokenRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GENESIS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_AMOUNT_TRANSACTION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NEW_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_COST","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newQuantity","type":"uint256"}],"name":"addNewTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnRemainingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultRoyalty","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint16","name":"bps","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenRoyaltiesCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getTokenRoyaltyByIndex","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint16","name":"bps","type":"uint16"}],"internalType":"struct IEIP2981RoyaltyOverride.TokenRoyaltyConfig","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintReserveToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"mintReserveToAddresses","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":"address","name":"owner","type":"address"}],"name":"ownerTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint16","name":"bps","type":"uint16"}],"internalType":"struct IEIP2981RoyaltyOverride.TokenRoyalty","name":"royalty","type":"tuple"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_NewBaseURI","type":"string"}],"name":"setNewBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint16","name":"bps","type":"uint16"}],"internalType":"struct IEIP2981RoyaltyOverride.TokenRoyaltyConfig[]","name":"royaltyConfigs","type":"tuple[]"}],"name":"setTokenRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"","type":"uint256"}],"name":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526000805460ff1916815560138054610100600160901b03191668a8b7e7446220000a0017905561128d6014556015553480156200004057600080fd5b50604051620048063803806200480683398101604081905262000063916200092c565b6001600160a01b0384166080528651829084908990899088906200008f9060039060208601906200062f565b508151620000a59060049060208501906200062f565b50505050620000c3620000bd6200026260201b60201c565b62000266565b6001600d5580518251146200013a5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200018d5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000131565b60005b8251811015620001f957620001e4838281518110620001b357620001b362000a47565b6020026020010151838381518110620001d057620001d062000a47565b6020026020010151620002b860201b60201c565b80620001f08162000a73565b91505062000190565b50506013805460ff19169055506200021185620004a6565b815162000226906019906020850190620006be565b5080516200023c9060189060208401906200062f565b5062000248876200051b565b50506005805460010181556000525062000ae99350505050565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003255760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000131565b60008111620003775760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000131565b6001600160a01b03821660009081526010602052604090205415620003f35760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000131565b60128054600181019091557fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319166001600160a01b0384169081179091556000908152601060205260409020819055600e546200045d90829062000a91565b600e55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b600c546001600160a01b03163314620005025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000131565b8051620005179060169060208401906200062f565b5050565b60005460ff1615620005615760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640162000131565b6200056c816200057c565b506000805460ff19166001179055565b6040518060800160405280604f8152602001620047b7604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6304660408051602081019690965285019390935260608401919091526001600160a01b0316608083015260a082015260c00160408051601f19818403018152919052805160209091012060015550565b8280546200063d9062000aac565b90600052602060002090601f016020900481019282620006615760008555620006ac565b82601f106200067c57805160ff1916838001178555620006ac565b82800160010185558215620006ac579182015b82811115620006ac5782518255916020019190600101906200068f565b50620006ba92915062000716565b5090565b828054828255906000526020600020908101928215620006ac579160200282015b82811115620006ac57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006df565b5b80821115620006ba576000815560010162000717565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200076e576200076e6200072d565b604052919050565b600082601f8301126200078857600080fd5b81516001600160401b03811115620007a457620007a46200072d565b6020620007ba601f8301601f1916820162000743565b8281528582848701011115620007cf57600080fd5b60005b83811015620007ef578581018301518282018401528201620007d2565b83811115620008015760008385840101525b5095945050505050565b80516001600160a01b03811681146200082357600080fd5b919050565b60006001600160401b038211156200084457620008446200072d565b5060051b60200190565b600082601f8301126200086057600080fd5b8151602062000879620008738362000828565b62000743565b82815260059290921b840181019181810190868411156200089957600080fd5b8286015b84811015620008b657805183529183019183016200089d565b509695505050505050565b600082601f830112620008d357600080fd5b81516020620008e6620008738362000828565b82815260059290921b840181019181810190868411156200090657600080fd5b8286015b84811015620008b6576200091e816200080b565b83529183019183016200090a565b600080600080600080600060e0888a0312156200094857600080fd5b87516001600160401b03808211156200096057600080fd5b6200096e8b838c0162000776565b985060208a01519150808211156200098557600080fd5b620009938b838c0162000776565b975060408a0151915080821115620009aa57600080fd5b620009b88b838c0162000776565b9650620009c860608b016200080b565b955060808a0151915080821115620009df57600080fd5b620009ed8b838c016200084e565b945060a08a015191508082111562000a0457600080fd5b62000a128b838c01620008c1565b935060c08a015191508082111562000a2957600080fd5b5062000a388a828b0162000776565b91505092959891949750929550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000a8a5762000a8a62000a5d565b5060010190565b6000821982111562000aa75762000aa762000a5d565b500190565b600181811c9082168062000ac157607f821691505b6020821081141562000ae357634e487b7160e01b600052602260045260246000fd5b50919050565b608051613cb262000b056000396000611ec60152613cb26000f3fe60806040526004361061037a5760003560e01c806369d89575116101d1578063a0712d6811610102578063ce7c2ac2116100a0578063e985e9c51161006f578063e985e9c514610add578063ef60ceaf14610afd578063f2fde38b14610b1d578063ff1b655614610b3d57600080fd5b8063ce7c2ac214610a5d578063d5abeb0114610a93578063e33b7de314610aa8578063e71264fa14610abd57600080fd5b8063b88d4fde116100dc578063b88d4fde146109d0578063b9e1410a146109f0578063bba7723e14610a10578063c87b56dd14610a3d57600080fd5b8063a0712d681461097b578063a22cb4651461098e578063affe39c1146109ae57600080fd5b80638456cb591161016f57806391ba317a1161014957806391ba317a1461090557806395d89b411461091a5780639852595c1461092f57806399ec67651461096557600080fd5b80638456cb59146108b25780638b83209b146108c75780638da5cb5b146108e757600080fd5b8063715018a6116101ab578063715018a6146108245780637885fdc7146108395780637e9803421461088857806383408d731461089d57600080fd5b806369d89575146107be5780636c544be9146107d357806370a082311461080457600080fd5b806323b872dd116102ab5780633f4ba83a116102495780635136dcc7116102235780635136dcc71461074657806355f804b3146107665780635c975abb146107865780636352211e1461079e57600080fd5b80633f4ba83a146106f157806342842e0e146107065780634f6ccce71461072657600080fd5b80632f745c59116102855780632f745c59146106935780633408e470146106b35780633a98ef39146106c65780633c48fb12146106db57600080fd5b806323b872dd146105fe5780632a55205a1461061e5780632d0335ab1461065d57600080fd5b80630f7e597011610318578063197ebd53116102f2578063197ebd531461056b5780631cb1ac0b1461058b5780631f9ce175146105ab57806320379ee5146105e957600080fd5b80630f7e5970146104fb57806318160ddd14610528578063191655871461054b57600080fd5b806307e3aa711161035457806307e3aa711461046e578063081812fc14610490578063095ea7b3146104c85780630c53c51c146104e857600080fd5b806301ffc9a7146103c85780630653aca5146103fd57806306fdde031461044c57600080fd5b366103c3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103d457600080fd5b506103e86103e3366004613282565b610b52565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b5061041d61041836600461329f565b610b72565b60408051825181526020808401516001600160a01b0316908201529181015161ffff16908201526060016103f4565b34801561045857600080fd5b50610461610bf7565b6040516103f49190613310565b34801561047a57600080fd5b5061048e610489366004613338565b610c89565b005b34801561049c57600080fd5b506104b06104ab36600461329f565b610d3d565b6040516001600160a01b0390911681526020016103f4565b3480156104d457600080fd5b5061048e6104e3366004613368565b610dc5565b6104616104f6366004613440565b610ed6565b34801561050757600080fd5b50610461604051806040016040528060018152602001603160f81b81525081565b34801561053457600080fd5b5061053d6110c0565b6040519081526020016103f4565b34801561055757600080fd5b5061048e6105663660046134be565b61111c565b34801561057757600080fd5b506104b061058636600461329f565b6112ed565b34801561059757600080fd5b5061048e6105a63660046134db565b611317565b3480156105b757600080fd5b506013546105d1906201000090046001600160801b031681565b6040516001600160801b0390911681526020016103f4565b3480156105f557600080fd5b5060015461053d565b34801561060a57600080fd5b5061048e610619366004613524565b611358565b34801561062a57600080fd5b5061063e610639366004613565565b611389565b604080516001600160a01b0390931683526020830191909152016103f4565b34801561066957600080fd5b5061053d6106783660046134be565b6001600160a01b031660009081526002602052604090205490565b34801561069f57600080fd5b5061053d6106ae366004613368565b61144e565b3480156106bf57600080fd5b504661053d565b3480156106d257600080fd5b50600e5461053d565b3480156106e757600080fd5b5061053d60155481565b3480156106fd57600080fd5b5061048e611519565b34801561071257600080fd5b5061048e610721366004613524565b61154d565b34801561073257600080fd5b5061053d61074136600461329f565b611568565b34801561075257600080fd5b5061048e610761366004613587565b611633565b34801561077257600080fd5b5061048e6107813660046134db565b6116b8565b34801561079257600080fd5b5060135460ff166103e8565b3480156107aa57600080fd5b506104b06107b936600461329f565b6116f5565b3480156107ca57600080fd5b5061048e61178f565b3480156107df57600080fd5b506013546107f290610100900460ff1681565b60405160ff90911681526020016103f4565b34801561081057600080fd5b5061053d61081f3660046134be565b61180b565b34801561083057600080fd5b5061048e6118d2565b34801561084557600080fd5b50600854610866906001600160a01b03811690600160a01b900461ffff1682565b604080516001600160a01b03909316835261ffff9091166020830152016103f4565b34801561089457600080fd5b5061053d611906565b3480156108a957600080fd5b5061048e611917565b3480156108be57600080fd5b5061048e61194e565b3480156108d357600080fd5b506104b06108e236600461329f565b611980565b3480156108f357600080fd5b50600c546001600160a01b03166104b0565b34801561091157600080fd5b5061053d6119b0565b34801561092657600080fd5b506104616119cf565b34801561093b57600080fd5b5061053d61094a3660046134be565b6001600160a01b031660009081526011602052604090205490565b34801561097157600080fd5b5061053d60145481565b61048e61098936600461329f565b6119de565b34801561099a57600080fd5b5061048e6109a93660046135fc565b611ae7565b3480156109ba57600080fd5b506109c3611af2565b6040516103f4919061362f565b3480156109dc57600080fd5b5061048e6109eb36600461367c565b611b58565b3480156109fc57600080fd5b5061048e610a0b3660046136e8565b611b90565b348015610a1c57600080fd5b50610a30610a2b3660046134be565b611c5e565b6040516103f4919061374b565b348015610a4957600080fd5b50610461610a5836600461329f565b611d90565b348015610a6957600080fd5b5061053d610a783660046134be565b6001600160a01b031660009081526010602052604090205490565b348015610a9f57600080fd5b5061053d611e4e565b348015610ab457600080fd5b50600f5461053d565b348015610ac957600080fd5b5061048e610ad836600461329f565b611e60565b348015610ae957600080fd5b506103e8610af8366004613783565b611ea4565b348015610b0957600080fd5b5061048e610b183660046137b1565b611f90565b348015610b2957600080fd5b5061048e610b383660046134be565b611fd1565b348015610b4957600080fd5b50610461612069565b6000610b5d826120f7565b80610b6c5750610b6c8261211c565b92915050565b6040805160608101825260008082526020820181905291810182905290610b9a600a8461215c565b6000818152600960209081526040918290208251808401845290546001600160a01b03808216835261ffff600160a01b90920482168385019081528551606081018752968752925116928501929092525116908201529392505050565b606060038054610c06906137c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c32906137c3565b8015610c7f5780601f10610c5457610100808354040283529160200191610c7f565b820191906000526020600020905b815481529060010190602001808311610c6257829003601f168201915b5050505050905090565b600c546001600160a01b03163314610cbc5760405162461bcd60e51b8152600401610cb3906137f8565b60405180910390fd5b60135460ff1615610cdf5760405162461bcd60e51b8152600401610cb39061382d565b610ce7611e4e565b600554610cf4908461386d565b1115610d125760405162461bcd60e51b8152600401610cb390613885565b60015b828111610d3857610d258261216f565b5080610d30816138c7565b915050610d15565b505050565b6000610d488261218a565b610da95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610cb3565b506000908152600660205260409020546001600160a01b031690565b6000610dd0826116f5565b9050806001600160a01b0316836001600160a01b03161415610e3e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610cb3565b336001600160a01b0382161480610e5a5750610e5a8133611ea4565b610ecc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cb3565b610d3883836121d4565b60408051606081810183526001600160a01b03881660008181526002602090815290859020548452830152918101869052610f148782878787612242565b610f6a5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610cb3565b6001600160a01b038716600090815260026020526040902054610f8e906001612332565b6001600160a01b0388166000908152600260205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610fde90899033908a906138e2565b60405180910390a1600080306001600160a01b0316888a604051602001611006929190613917565b60408051601f19818403018152908290526110209161394e565b6000604051808303816000865af19150503d806000811461105d576040519150601f19603f3d011682016040523d82523d6000602084013e611062565b606091505b5091509150816110b45760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610cb3565b98975050505050505050565b600554600090815b818110156111175760006001600160a01b0316600582815481106110ee576110ee61396a565b6000918252602090912001546001600160a01b03161461110f578260010192505b6001016110c8565b505090565b6001600160a01b0381166000908152601060205260409020546111905760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610cb3565b6000600f54476111a0919061386d565b6001600160a01b038316600090815260116020908152604080832054600e5460109093529083205493945091926111d79085613980565b6111e191906139b5565b6111eb91906139c9565b90508061124e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610cb3565b6001600160a01b03831660009081526011602052604090205461127290829061386d565b6001600160a01b038416600090815260116020526040902055600f5461129990829061386d565b600f556112a6838261233e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b601981815481106112fd57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c546001600160a01b031633146113415760405162461bcd60e51b8152600401610cb3906137f8565b80516113549060179060208401906131d3565b5050565b6113623382612457565b61137e5760405162461bcd60e51b8152600401610cb3906139e0565b610d38838383612521565b60008281526009602052604081205481906001600160a01b0316156113ee576000848152600960205260409020546001600160a01b03811690612710906113db90600160a01b900461ffff1686613980565b6113e591906139b5565b91509150611447565b6008546001600160a01b0316158015906114145750600854600160a01b900461ffff1615155b15611440576008546001600160a01b03811690612710906113db90600160a01b900461ffff1686613980565b5060009050805b9250929050565b6005546000905b808210156114af57836001600160a01b03166005838154811061147a5761147a61396a565b6000918252602090912001546001600160a01b031614156114a4576000198301926114a4576114af565b816001019150611455565b8082106115125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610cb3565b5092915050565b600c546001600160a01b031633146115435760405162461bcd60e51b8152600401610cb3906137f8565b61154b612677565b565b610d3883838360405180602001604052806000815250611b58565b6005546000905b808210156115c95760006001600160a01b0316600583815481106115955761159561396a565b6000918252602090912001546001600160a01b0316146115be576000198301926115be576115c9565b81600101915061156f565b80821061162d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610cb3565b50919050565b600c546001600160a01b0316331461165d5760405162461bcd60e51b8152600401610cb3906137f8565b6113548282808060200260200160405190810160405280939291908181526020016000905b828210156116ae5761169f60608302860136819003810190613a43565b81526020019060010190611682565b505050505061270a565b600c546001600160a01b031633146116e25760405162461bcd60e51b8152600401610cb3906137f8565b80516113549060169060208401906131d3565b60006117008261218a565b61175e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610cb3565b6000600583815481106117735761177361396a565b6000918252602090912001546001600160a01b03169392505050565b600c546001600160a01b031633146117b95760405162461bcd60e51b8152600401610cb3906137f8565b60005b601954811015611808576117f6601982815481106117dc576117dc61396a565b6000918252602090912001546001600160a01b031661111c565b80611800816138c7565b9150506117bc565b50565b60006001600160a01b0382166118765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610cb3565b60055460005b818110156118cb57836001600160a01b0316600582815481106118a1576118a161396a565b6000918252602090912001546001600160a01b031614156118c3578260010192505b60010161187c565b5050919050565b600c546001600160a01b031633146118fc5760405162461bcd60e51b8152600401610cb3906137f8565b61154b60006128cf565b6000611912600a612921565b905090565b600c546001600160a01b031633146119415760405162461bcd60e51b8152600401610cb3906137f8565b6119496110c0565b601455565b600c546001600160a01b031633146119785760405162461bcd60e51b8152600401610cb3906137f8565b61154b61292b565b6000601282815481106119955761199561396a565b6000918252602090912001546001600160a01b031692915050565b6005546000906119c05750600090565b600554611912906001906139c9565b606060048054610c06906137c3565b6002600d541415611a315760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cb3565b6002600d5560135460ff1615611a595760405162461bcd60e51b8152600401610cb39061382d565b601354610100900460ff16811115611ac25760405162461bcd60e51b815260206004820152602660248201527f5175616e746974792065786365656473207065722d7472616e73616374696f6e604482015265081b1a5b5a5d60d21b6064820152608401610cb3565b601354611adf9082906201000090046001600160801b0316612983565b506001600d55565b611354338383612a35565b606060006005805480602002602001604051908101604052809291908181526020018280548015611b4c57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611b2e575b50939695505050505050565b611b623383612457565b611b7e5760405162461bcd60e51b8152600401610cb3906139e0565b611b8a84848484612b04565b50505050565b600c546001600160a01b03163314611bba5760405162461bcd60e51b8152600401610cb3906137f8565b60135460ff1615611bdd5760405162461bcd60e51b8152600401610cb39061382d565b80611be6611e4e565b600554611bf3908361386d565b1115611c115760405162461bcd60e51b8152600401610cb390613885565b60005b81811015611b8a57611c4b848483818110611c3157611c3161396a565b9050602002016020810190611c4691906134be565b61216f565b5080611c56816138c7565b915050611c14565b60606000611c6b8361180b565b905080611cc95760405162461bcd60e51b815260206004820152602660248201527f455243373231456e756d657261626c653a206f776e6572206f776e73206e6f20604482015265746f6b656e7360d01b6064820152608401610cb3565b60055460008267ffffffffffffffff811115611ce757611ce7613394565b604051908082528060200260200182016040528015611d10578160200160208202803683370190505b5090506000805b83811015611d8557866001600160a01b031660058281548110611d3c57611d3c61396a565b6000918252602090912001546001600160a01b03161415611d7d5780838380600101945081518110611d7057611d7061396a565b6020026020010181815250505b600101611d17565b509095945050505050565b6060611d9b8261218a565b611dff5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cb3565b601454821115611e4157611e11612b37565b611e1a83612b46565b604051602001611e2b929190613aaa565b6040516020818303038152906040529050919050565b611e11612c44565b919050565b6000601554601454611912919061386d565b600c546001600160a01b03163314611e8a5760405162461bcd60e51b8152600401610cb3906137f8565b8060156000828254611e9c919061386d565b909155505050565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000000000000000000000000000000000000000000091848116919083169063c45527919060240160206040518083038186803b158015611f0f57600080fd5b505afa158015611f23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f479190613ae9565b6001600160a01b03161415611f60576001915050610b6c565b50506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600c546001600160a01b03163314611fba5760405162461bcd60e51b8152600401610cb3906137f8565b611808611fcc36839003830183613b06565b612c53565b600c546001600160a01b03163314611ffb5760405162461bcd60e51b8152600401610cb3906137f8565b6001600160a01b0381166120605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cb3565b611808816128cf565b60188054612076906137c3565b80601f01602080910402602001604051908101604052809291908181526020018280546120a2906137c3565b80156120ef5780601f106120c4576101008083540402835291602001916120ef565b820191906000526020600020905b8154815290600101906020018083116120d257829003601f168201915b505050505081565b60006001600160e01b0319821663780e9d6360e01b1480610b6c5750610b6c82612d36565b60006001600160e01b0319821663152a902d60e11b148061214d57506001600160e01b0319821663c69dbd8f60e01b145b80610b6c5750610b6c826120f7565b60006121688383612d86565b9392505050565b6000610b6c8260405180602001604052806000815250612db0565b60055460009082108015610b6c575060006001600160a01b0316600583815481106121b7576121b761396a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612209826116f5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166122a85760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610cb3565b60016122bb6122b687612de6565b612e63565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015612309573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000612168828461386d565b8047101561238e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610cb3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123db576040519150601f19603f3d011682016040523d82523d6000602084013e6123e0565b606091505b5050905080610d385760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610cb3565b60006124628261218a565b6124c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610cb3565b60006124ce836116f5565b9050806001600160a01b0316846001600160a01b031614806125095750836001600160a01b03166124fe84610d3d565b6001600160a01b0316145b8061251957506125198185611ea4565b949350505050565b826001600160a01b0316612534826116f5565b6001600160a01b03161461259c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610cb3565b6001600160a01b0382166125fe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610cb3565b6126096000826121d4565b816005828154811061261d5761261d61396a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60135460ff166126c05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610cb3565b6013805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60005b815181101561135457600082828151811061272a5761272a61396a565b60200260200101519050612710816040015161ffff161061277b5760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642062707360a81b6044820152606401610cb3565b60208101516001600160a01b03166127f4578051600090815260096020526040902080546001600160b01b031916905580516127b990600a90612e93565b5080516040519081527fa2870857763bd9ae76c957f869f16b31c18dd3bb4c7b4d3a4496dc5c57c657f99060200160405180910390a16128bc565b6040805180820182526020808401516001600160a01b0390811683528484015161ffff90811683850190815286516000908152600990945294909220925183549451909216600160a01b026001600160b01b0319909416911617919091179055805161286290600a90612e9f565b50805160208083015160408085015181519485526001600160a01b039092169284019290925261ffff1682820152517f389b70fb0887f01e83784eb1c4c589f740eca53b00ed0f45e41db5d079719abb9181900360600190a15b50806128c7816138c7565b91505061270d565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610b6c825490565b60135460ff161561294e5760405162461bcd60e51b8152600401610cb39061382d565b6013805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126ed3390565b346129976001600160801b03831684613980565b11156129db5760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610cb3565b6129e3611e4e565b6005546129f0908461386d565b1115612a0e5760405162461bcd60e51b8152600401610cb390613885565b60005b82811015610d3857612a223361216f565b5080612a2d816138c7565b915050612a11565b816001600160a01b0316836001600160a01b03161415612a975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cb3565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b0f848484612521565b612b1b84848484612eab565b611b8a5760405162461bcd60e51b8152600401610cb390613b63565b606060178054610c06906137c3565b606081612b6a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b945780612b7e816138c7565b9150612b8d9050600a836139b5565b9150612b6e565b60008167ffffffffffffffff811115612baf57612baf613394565b6040519080825280601f01601f191660200182016040528015612bd9576020820181803683370190505b5090505b841561251957612bee6001836139c9565b9150612bfb600a86613bb5565b612c0690603061386d565b60f81b818381518110612c1b57612c1b61396a565b60200101906001600160f81b031916908160001a905350612c3d600a866139b5565b9450612bdd565b606060168054610c06906137c3565b612710816020015161ffff1610612c9a5760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642062707360a81b6044820152606401610cb3565b60408051808201825282516001600160a01b03168082526020808501805161ffff169190930181905260088054600160a01b9092026001600160b01b03199092169092171790558251905191517f2c5ea6e4103e78cb101e796fb2dace540362fc542cbff5145eaa24af7dd8fe4192612d2b92916001600160a01b0392909216825261ffff16602082015260400190565b60405180910390a150565b60006001600160e01b031982166380ac58cd60e01b1480612d6757506001600160e01b03198216635b5e139f60e01b145b80610b6c57506301ffc9a760e01b6001600160e01b0319831614610b6c565b6000826000018281548110612d9d57612d9d61396a565b9060005260206000200154905092915050565b6000612dbb83612fb8565b9050612dca6000848385612eab565b610b6c5760405162461bcd60e51b8152600401610cb390613b63565b6000604051806080016040528060438152602001613c3a6043913980516020918201208351848301516040808701518051908601209051612e46950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612e6e60015490565b60405161190160f01b6020820152602281019190915260428101839052606201612e46565b60006121688383613091565b60006121688383613184565b60006001600160a01b0384163b15612fad57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612eef903390899088908890600401613bc9565b602060405180830381600087803b158015612f0957600080fd5b505af1925050508015612f39575060408051601f3d908101601f19168201909252612f3691810190613c06565b60015b612f93573d808015612f67576040519150601f19603f3d011682016040523d82523d6000602084013e612f6c565b606091505b508051612f8b5760405162461bcd60e51b8152600401610cb390613b63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612519565b506001949350505050565b60006001600160a01b0382166130105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610cb3565b506005546005805460018101825560009182527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4919050565b6000818152600183016020526040812054801561317a5760006130b56001836139c9565b85549091506000906130c9906001906139c9565b905081811461312e5760008660000182815481106130e9576130e961396a565b906000526020600020015490508087600001848154811061310c5761310c61396a565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061313f5761313f613c23565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b6c565b6000915050610b6c565b60008181526001830160205260408120546131cb57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b6c565b506000610b6c565b8280546131df906137c3565b90600052602060002090601f0160209004810192826132015760008555613247565b82601f1061321a57805160ff1916838001178555613247565b82800160010185558215613247579182015b8281111561324757825182559160200191906001019061322c565b50613253929150613257565b5090565b5b808211156132535760008155600101613258565b6001600160e01b03198116811461180857600080fd5b60006020828403121561329457600080fd5b81356121688161326c565b6000602082840312156132b157600080fd5b5035919050565b60005b838110156132d35781810151838201526020016132bb565b83811115611b8a5750506000910152565b600081518084526132fc8160208601602086016132b8565b601f01601f19169290920160200192915050565b60208152600061216860208301846132e4565b6001600160a01b038116811461180857600080fd5b6000806040838503121561334b57600080fd5b82359150602083013561335d81613323565b809150509250929050565b6000806040838503121561337b57600080fd5b823561338681613323565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156133c5576133c5613394565b604051601f8501601f19908116603f011681019082821181831017156133ed576133ed613394565b8160405280935085815286868601111561340657600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261343157600080fd5b612168838335602085016133aa565b600080600080600060a0868803121561345857600080fd5b853561346381613323565b9450602086013567ffffffffffffffff81111561347f57600080fd5b61348b88828901613420565b9450506040860135925060608601359150608086013560ff811681146134b057600080fd5b809150509295509295909350565b6000602082840312156134d057600080fd5b813561216881613323565b6000602082840312156134ed57600080fd5b813567ffffffffffffffff81111561350457600080fd5b8201601f8101841361351557600080fd5b612519848235602084016133aa565b60008060006060848603121561353957600080fd5b833561354481613323565b9250602084013561355481613323565b929592945050506040919091013590565b6000806040838503121561357857600080fd5b50508035926020909101359150565b6000806020838503121561359a57600080fd5b823567ffffffffffffffff808211156135b257600080fd5b818501915085601f8301126135c657600080fd5b8135818111156135d557600080fd5b8660206060830285010111156135ea57600080fd5b60209290920196919550909350505050565b6000806040838503121561360f57600080fd5b823561361a81613323565b91506020830135801515811461335d57600080fd5b6020808252825182820181905260009190848201906040850190845b818110156136705783516001600160a01b03168352928401929184019160010161364b565b50909695505050505050565b6000806000806080858703121561369257600080fd5b843561369d81613323565b935060208501356136ad81613323565b925060408501359150606085013567ffffffffffffffff8111156136d057600080fd5b6136dc87828801613420565b91505092959194509250565b600080602083850312156136fb57600080fd5b823567ffffffffffffffff8082111561371357600080fd5b818501915085601f83011261372757600080fd5b81358181111561373657600080fd5b8660208260051b85010111156135ea57600080fd5b6020808252825182820181905260009190848201906040850190845b8181101561367057835183529284019291840191600101613767565b6000806040838503121561379657600080fd5b82356137a181613323565b9150602083013561335d81613323565b60006040828403121561162d57600080fd5b600181811c908216806137d757607f821691505b6020821081141561162d57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561388057613880613857565b500190565b60208082526022908201527f5075726368617365206578636565647320617661696c61626c6520737570706c6040820152613c9760f11b606082015260800190565b60006000198214156138db576138db613857565b5060010190565b6001600160a01b0384811682528316602082015260606040820181905260009061390e908301846132e4565b95945050505050565b600083516139298184602088016132b8565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516139608184602087016132b8565b9190910192915050565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561399a5761399a613857565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826139c4576139c461399f565b500490565b6000828210156139db576139db613857565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b803561ffff81168114611e4957600080fd5b600060608284031215613a5557600080fd5b6040516060810181811067ffffffffffffffff82111715613a7857613a78613394565b604052823581526020830135613a8d81613323565b6020820152613a9e60408401613a31565b60408201529392505050565b60008351613abc8184602088016132b8565b835190830190613ad08183602088016132b8565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215613afb57600080fd5b815161216881613323565b600060408284031215613b1857600080fd5b6040516040810181811067ffffffffffffffff82111715613b3b57613b3b613394565b6040528235613b4981613323565b8152613b5760208401613a31565b60208201529392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082613bc457613bc461399f565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613bfc908301846132e4565b9695505050505050565b600060208284031215613c1857600080fd5b81516121688161326c565b634e487b7160e01b600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220f93760bd9f4a361765849f27c4d144a7141f26b95badaa7bb07485f27070b9aa64736f6c63430008090033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000014546865205061696e746564205361746f73686973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354505300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65486e6a5761384c4358584c4e33414d55767536373956333357795454573861546b6e586d746f4779695a532f000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000046ada08892399b8c50ccfa8b5bdd42089d79b9a90000000000000000000000008197935fa5d654a288ffd07bb30618e5f98e5d2300000000000000000000000089a31e7658510cfd960067cb97ddcc7ece3c70c0000000000000000000000000000000000000000000000000000000000000004035383035363035333162383831393762346264633933313063643931623137373063623830623566303232646434373764353335303263343864313464653335
Deployed Bytecode
0x60806040526004361061037a5760003560e01c806369d89575116101d1578063a0712d6811610102578063ce7c2ac2116100a0578063e985e9c51161006f578063e985e9c514610add578063ef60ceaf14610afd578063f2fde38b14610b1d578063ff1b655614610b3d57600080fd5b8063ce7c2ac214610a5d578063d5abeb0114610a93578063e33b7de314610aa8578063e71264fa14610abd57600080fd5b8063b88d4fde116100dc578063b88d4fde146109d0578063b9e1410a146109f0578063bba7723e14610a10578063c87b56dd14610a3d57600080fd5b8063a0712d681461097b578063a22cb4651461098e578063affe39c1146109ae57600080fd5b80638456cb591161016f57806391ba317a1161014957806391ba317a1461090557806395d89b411461091a5780639852595c1461092f57806399ec67651461096557600080fd5b80638456cb59146108b25780638b83209b146108c75780638da5cb5b146108e757600080fd5b8063715018a6116101ab578063715018a6146108245780637885fdc7146108395780637e9803421461088857806383408d731461089d57600080fd5b806369d89575146107be5780636c544be9146107d357806370a082311461080457600080fd5b806323b872dd116102ab5780633f4ba83a116102495780635136dcc7116102235780635136dcc71461074657806355f804b3146107665780635c975abb146107865780636352211e1461079e57600080fd5b80633f4ba83a146106f157806342842e0e146107065780634f6ccce71461072657600080fd5b80632f745c59116102855780632f745c59146106935780633408e470146106b35780633a98ef39146106c65780633c48fb12146106db57600080fd5b806323b872dd146105fe5780632a55205a1461061e5780632d0335ab1461065d57600080fd5b80630f7e597011610318578063197ebd53116102f2578063197ebd531461056b5780631cb1ac0b1461058b5780631f9ce175146105ab57806320379ee5146105e957600080fd5b80630f7e5970146104fb57806318160ddd14610528578063191655871461054b57600080fd5b806307e3aa711161035457806307e3aa711461046e578063081812fc14610490578063095ea7b3146104c85780630c53c51c146104e857600080fd5b806301ffc9a7146103c85780630653aca5146103fd57806306fdde031461044c57600080fd5b366103c3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103d457600080fd5b506103e86103e3366004613282565b610b52565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b5061041d61041836600461329f565b610b72565b60408051825181526020808401516001600160a01b0316908201529181015161ffff16908201526060016103f4565b34801561045857600080fd5b50610461610bf7565b6040516103f49190613310565b34801561047a57600080fd5b5061048e610489366004613338565b610c89565b005b34801561049c57600080fd5b506104b06104ab36600461329f565b610d3d565b6040516001600160a01b0390911681526020016103f4565b3480156104d457600080fd5b5061048e6104e3366004613368565b610dc5565b6104616104f6366004613440565b610ed6565b34801561050757600080fd5b50610461604051806040016040528060018152602001603160f81b81525081565b34801561053457600080fd5b5061053d6110c0565b6040519081526020016103f4565b34801561055757600080fd5b5061048e6105663660046134be565b61111c565b34801561057757600080fd5b506104b061058636600461329f565b6112ed565b34801561059757600080fd5b5061048e6105a63660046134db565b611317565b3480156105b757600080fd5b506013546105d1906201000090046001600160801b031681565b6040516001600160801b0390911681526020016103f4565b3480156105f557600080fd5b5060015461053d565b34801561060a57600080fd5b5061048e610619366004613524565b611358565b34801561062a57600080fd5b5061063e610639366004613565565b611389565b604080516001600160a01b0390931683526020830191909152016103f4565b34801561066957600080fd5b5061053d6106783660046134be565b6001600160a01b031660009081526002602052604090205490565b34801561069f57600080fd5b5061053d6106ae366004613368565b61144e565b3480156106bf57600080fd5b504661053d565b3480156106d257600080fd5b50600e5461053d565b3480156106e757600080fd5b5061053d60155481565b3480156106fd57600080fd5b5061048e611519565b34801561071257600080fd5b5061048e610721366004613524565b61154d565b34801561073257600080fd5b5061053d61074136600461329f565b611568565b34801561075257600080fd5b5061048e610761366004613587565b611633565b34801561077257600080fd5b5061048e6107813660046134db565b6116b8565b34801561079257600080fd5b5060135460ff166103e8565b3480156107aa57600080fd5b506104b06107b936600461329f565b6116f5565b3480156107ca57600080fd5b5061048e61178f565b3480156107df57600080fd5b506013546107f290610100900460ff1681565b60405160ff90911681526020016103f4565b34801561081057600080fd5b5061053d61081f3660046134be565b61180b565b34801561083057600080fd5b5061048e6118d2565b34801561084557600080fd5b50600854610866906001600160a01b03811690600160a01b900461ffff1682565b604080516001600160a01b03909316835261ffff9091166020830152016103f4565b34801561089457600080fd5b5061053d611906565b3480156108a957600080fd5b5061048e611917565b3480156108be57600080fd5b5061048e61194e565b3480156108d357600080fd5b506104b06108e236600461329f565b611980565b3480156108f357600080fd5b50600c546001600160a01b03166104b0565b34801561091157600080fd5b5061053d6119b0565b34801561092657600080fd5b506104616119cf565b34801561093b57600080fd5b5061053d61094a3660046134be565b6001600160a01b031660009081526011602052604090205490565b34801561097157600080fd5b5061053d60145481565b61048e61098936600461329f565b6119de565b34801561099a57600080fd5b5061048e6109a93660046135fc565b611ae7565b3480156109ba57600080fd5b506109c3611af2565b6040516103f4919061362f565b3480156109dc57600080fd5b5061048e6109eb36600461367c565b611b58565b3480156109fc57600080fd5b5061048e610a0b3660046136e8565b611b90565b348015610a1c57600080fd5b50610a30610a2b3660046134be565b611c5e565b6040516103f4919061374b565b348015610a4957600080fd5b50610461610a5836600461329f565b611d90565b348015610a6957600080fd5b5061053d610a783660046134be565b6001600160a01b031660009081526010602052604090205490565b348015610a9f57600080fd5b5061053d611e4e565b348015610ab457600080fd5b50600f5461053d565b348015610ac957600080fd5b5061048e610ad836600461329f565b611e60565b348015610ae957600080fd5b506103e8610af8366004613783565b611ea4565b348015610b0957600080fd5b5061048e610b183660046137b1565b611f90565b348015610b2957600080fd5b5061048e610b383660046134be565b611fd1565b348015610b4957600080fd5b50610461612069565b6000610b5d826120f7565b80610b6c5750610b6c8261211c565b92915050565b6040805160608101825260008082526020820181905291810182905290610b9a600a8461215c565b6000818152600960209081526040918290208251808401845290546001600160a01b03808216835261ffff600160a01b90920482168385019081528551606081018752968752925116928501929092525116908201529392505050565b606060038054610c06906137c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c32906137c3565b8015610c7f5780601f10610c5457610100808354040283529160200191610c7f565b820191906000526020600020905b815481529060010190602001808311610c6257829003601f168201915b5050505050905090565b600c546001600160a01b03163314610cbc5760405162461bcd60e51b8152600401610cb3906137f8565b60405180910390fd5b60135460ff1615610cdf5760405162461bcd60e51b8152600401610cb39061382d565b610ce7611e4e565b600554610cf4908461386d565b1115610d125760405162461bcd60e51b8152600401610cb390613885565b60015b828111610d3857610d258261216f565b5080610d30816138c7565b915050610d15565b505050565b6000610d488261218a565b610da95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610cb3565b506000908152600660205260409020546001600160a01b031690565b6000610dd0826116f5565b9050806001600160a01b0316836001600160a01b03161415610e3e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610cb3565b336001600160a01b0382161480610e5a5750610e5a8133611ea4565b610ecc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cb3565b610d3883836121d4565b60408051606081810183526001600160a01b03881660008181526002602090815290859020548452830152918101869052610f148782878787612242565b610f6a5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610cb3565b6001600160a01b038716600090815260026020526040902054610f8e906001612332565b6001600160a01b0388166000908152600260205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610fde90899033908a906138e2565b60405180910390a1600080306001600160a01b0316888a604051602001611006929190613917565b60408051601f19818403018152908290526110209161394e565b6000604051808303816000865af19150503d806000811461105d576040519150601f19603f3d011682016040523d82523d6000602084013e611062565b606091505b5091509150816110b45760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610cb3565b98975050505050505050565b600554600090815b818110156111175760006001600160a01b0316600582815481106110ee576110ee61396a565b6000918252602090912001546001600160a01b03161461110f578260010192505b6001016110c8565b505090565b6001600160a01b0381166000908152601060205260409020546111905760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610cb3565b6000600f54476111a0919061386d565b6001600160a01b038316600090815260116020908152604080832054600e5460109093529083205493945091926111d79085613980565b6111e191906139b5565b6111eb91906139c9565b90508061124e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610cb3565b6001600160a01b03831660009081526011602052604090205461127290829061386d565b6001600160a01b038416600090815260116020526040902055600f5461129990829061386d565b600f556112a6838261233e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b601981815481106112fd57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c546001600160a01b031633146113415760405162461bcd60e51b8152600401610cb3906137f8565b80516113549060179060208401906131d3565b5050565b6113623382612457565b61137e5760405162461bcd60e51b8152600401610cb3906139e0565b610d38838383612521565b60008281526009602052604081205481906001600160a01b0316156113ee576000848152600960205260409020546001600160a01b03811690612710906113db90600160a01b900461ffff1686613980565b6113e591906139b5565b91509150611447565b6008546001600160a01b0316158015906114145750600854600160a01b900461ffff1615155b15611440576008546001600160a01b03811690612710906113db90600160a01b900461ffff1686613980565b5060009050805b9250929050565b6005546000905b808210156114af57836001600160a01b03166005838154811061147a5761147a61396a565b6000918252602090912001546001600160a01b031614156114a4576000198301926114a4576114af565b816001019150611455565b8082106115125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610cb3565b5092915050565b600c546001600160a01b031633146115435760405162461bcd60e51b8152600401610cb3906137f8565b61154b612677565b565b610d3883838360405180602001604052806000815250611b58565b6005546000905b808210156115c95760006001600160a01b0316600583815481106115955761159561396a565b6000918252602090912001546001600160a01b0316146115be576000198301926115be576115c9565b81600101915061156f565b80821061162d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610cb3565b50919050565b600c546001600160a01b0316331461165d5760405162461bcd60e51b8152600401610cb3906137f8565b6113548282808060200260200160405190810160405280939291908181526020016000905b828210156116ae5761169f60608302860136819003810190613a43565b81526020019060010190611682565b505050505061270a565b600c546001600160a01b031633146116e25760405162461bcd60e51b8152600401610cb3906137f8565b80516113549060169060208401906131d3565b60006117008261218a565b61175e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610cb3565b6000600583815481106117735761177361396a565b6000918252602090912001546001600160a01b03169392505050565b600c546001600160a01b031633146117b95760405162461bcd60e51b8152600401610cb3906137f8565b60005b601954811015611808576117f6601982815481106117dc576117dc61396a565b6000918252602090912001546001600160a01b031661111c565b80611800816138c7565b9150506117bc565b50565b60006001600160a01b0382166118765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610cb3565b60055460005b818110156118cb57836001600160a01b0316600582815481106118a1576118a161396a565b6000918252602090912001546001600160a01b031614156118c3578260010192505b60010161187c565b5050919050565b600c546001600160a01b031633146118fc5760405162461bcd60e51b8152600401610cb3906137f8565b61154b60006128cf565b6000611912600a612921565b905090565b600c546001600160a01b031633146119415760405162461bcd60e51b8152600401610cb3906137f8565b6119496110c0565b601455565b600c546001600160a01b031633146119785760405162461bcd60e51b8152600401610cb3906137f8565b61154b61292b565b6000601282815481106119955761199561396a565b6000918252602090912001546001600160a01b031692915050565b6005546000906119c05750600090565b600554611912906001906139c9565b606060048054610c06906137c3565b6002600d541415611a315760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cb3565b6002600d5560135460ff1615611a595760405162461bcd60e51b8152600401610cb39061382d565b601354610100900460ff16811115611ac25760405162461bcd60e51b815260206004820152602660248201527f5175616e746974792065786365656473207065722d7472616e73616374696f6e604482015265081b1a5b5a5d60d21b6064820152608401610cb3565b601354611adf9082906201000090046001600160801b0316612983565b506001600d55565b611354338383612a35565b606060006005805480602002602001604051908101604052809291908181526020018280548015611b4c57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611b2e575b50939695505050505050565b611b623383612457565b611b7e5760405162461bcd60e51b8152600401610cb3906139e0565b611b8a84848484612b04565b50505050565b600c546001600160a01b03163314611bba5760405162461bcd60e51b8152600401610cb3906137f8565b60135460ff1615611bdd5760405162461bcd60e51b8152600401610cb39061382d565b80611be6611e4e565b600554611bf3908361386d565b1115611c115760405162461bcd60e51b8152600401610cb390613885565b60005b81811015611b8a57611c4b848483818110611c3157611c3161396a565b9050602002016020810190611c4691906134be565b61216f565b5080611c56816138c7565b915050611c14565b60606000611c6b8361180b565b905080611cc95760405162461bcd60e51b815260206004820152602660248201527f455243373231456e756d657261626c653a206f776e6572206f776e73206e6f20604482015265746f6b656e7360d01b6064820152608401610cb3565b60055460008267ffffffffffffffff811115611ce757611ce7613394565b604051908082528060200260200182016040528015611d10578160200160208202803683370190505b5090506000805b83811015611d8557866001600160a01b031660058281548110611d3c57611d3c61396a565b6000918252602090912001546001600160a01b03161415611d7d5780838380600101945081518110611d7057611d7061396a565b6020026020010181815250505b600101611d17565b509095945050505050565b6060611d9b8261218a565b611dff5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cb3565b601454821115611e4157611e11612b37565b611e1a83612b46565b604051602001611e2b929190613aaa565b6040516020818303038152906040529050919050565b611e11612c44565b919050565b6000601554601454611912919061386d565b600c546001600160a01b03163314611e8a5760405162461bcd60e51b8152600401610cb3906137f8565b8060156000828254611e9c919061386d565b909155505050565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c191848116919083169063c45527919060240160206040518083038186803b158015611f0f57600080fd5b505afa158015611f23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f479190613ae9565b6001600160a01b03161415611f60576001915050610b6c565b50506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600c546001600160a01b03163314611fba5760405162461bcd60e51b8152600401610cb3906137f8565b611808611fcc36839003830183613b06565b612c53565b600c546001600160a01b03163314611ffb5760405162461bcd60e51b8152600401610cb3906137f8565b6001600160a01b0381166120605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cb3565b611808816128cf565b60188054612076906137c3565b80601f01602080910402602001604051908101604052809291908181526020018280546120a2906137c3565b80156120ef5780601f106120c4576101008083540402835291602001916120ef565b820191906000526020600020905b8154815290600101906020018083116120d257829003601f168201915b505050505081565b60006001600160e01b0319821663780e9d6360e01b1480610b6c5750610b6c82612d36565b60006001600160e01b0319821663152a902d60e11b148061214d57506001600160e01b0319821663c69dbd8f60e01b145b80610b6c5750610b6c826120f7565b60006121688383612d86565b9392505050565b6000610b6c8260405180602001604052806000815250612db0565b60055460009082108015610b6c575060006001600160a01b0316600583815481106121b7576121b761396a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612209826116f5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166122a85760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610cb3565b60016122bb6122b687612de6565b612e63565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015612309573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000612168828461386d565b8047101561238e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610cb3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123db576040519150601f19603f3d011682016040523d82523d6000602084013e6123e0565b606091505b5050905080610d385760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610cb3565b60006124628261218a565b6124c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610cb3565b60006124ce836116f5565b9050806001600160a01b0316846001600160a01b031614806125095750836001600160a01b03166124fe84610d3d565b6001600160a01b0316145b8061251957506125198185611ea4565b949350505050565b826001600160a01b0316612534826116f5565b6001600160a01b03161461259c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610cb3565b6001600160a01b0382166125fe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610cb3565b6126096000826121d4565b816005828154811061261d5761261d61396a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60135460ff166126c05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610cb3565b6013805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60005b815181101561135457600082828151811061272a5761272a61396a565b60200260200101519050612710816040015161ffff161061277b5760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642062707360a81b6044820152606401610cb3565b60208101516001600160a01b03166127f4578051600090815260096020526040902080546001600160b01b031916905580516127b990600a90612e93565b5080516040519081527fa2870857763bd9ae76c957f869f16b31c18dd3bb4c7b4d3a4496dc5c57c657f99060200160405180910390a16128bc565b6040805180820182526020808401516001600160a01b0390811683528484015161ffff90811683850190815286516000908152600990945294909220925183549451909216600160a01b026001600160b01b0319909416911617919091179055805161286290600a90612e9f565b50805160208083015160408085015181519485526001600160a01b039092169284019290925261ffff1682820152517f389b70fb0887f01e83784eb1c4c589f740eca53b00ed0f45e41db5d079719abb9181900360600190a15b50806128c7816138c7565b91505061270d565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610b6c825490565b60135460ff161561294e5760405162461bcd60e51b8152600401610cb39061382d565b6013805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126ed3390565b346129976001600160801b03831684613980565b11156129db5760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610cb3565b6129e3611e4e565b6005546129f0908461386d565b1115612a0e5760405162461bcd60e51b8152600401610cb390613885565b60005b82811015610d3857612a223361216f565b5080612a2d816138c7565b915050612a11565b816001600160a01b0316836001600160a01b03161415612a975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cb3565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b0f848484612521565b612b1b84848484612eab565b611b8a5760405162461bcd60e51b8152600401610cb390613b63565b606060178054610c06906137c3565b606081612b6a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b945780612b7e816138c7565b9150612b8d9050600a836139b5565b9150612b6e565b60008167ffffffffffffffff811115612baf57612baf613394565b6040519080825280601f01601f191660200182016040528015612bd9576020820181803683370190505b5090505b841561251957612bee6001836139c9565b9150612bfb600a86613bb5565b612c0690603061386d565b60f81b818381518110612c1b57612c1b61396a565b60200101906001600160f81b031916908160001a905350612c3d600a866139b5565b9450612bdd565b606060168054610c06906137c3565b612710816020015161ffff1610612c9a5760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642062707360a81b6044820152606401610cb3565b60408051808201825282516001600160a01b03168082526020808501805161ffff169190930181905260088054600160a01b9092026001600160b01b03199092169092171790558251905191517f2c5ea6e4103e78cb101e796fb2dace540362fc542cbff5145eaa24af7dd8fe4192612d2b92916001600160a01b0392909216825261ffff16602082015260400190565b60405180910390a150565b60006001600160e01b031982166380ac58cd60e01b1480612d6757506001600160e01b03198216635b5e139f60e01b145b80610b6c57506301ffc9a760e01b6001600160e01b0319831614610b6c565b6000826000018281548110612d9d57612d9d61396a565b9060005260206000200154905092915050565b6000612dbb83612fb8565b9050612dca6000848385612eab565b610b6c5760405162461bcd60e51b8152600401610cb390613b63565b6000604051806080016040528060438152602001613c3a6043913980516020918201208351848301516040808701518051908601209051612e46950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612e6e60015490565b60405161190160f01b6020820152602281019190915260428101839052606201612e46565b60006121688383613091565b60006121688383613184565b60006001600160a01b0384163b15612fad57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612eef903390899088908890600401613bc9565b602060405180830381600087803b158015612f0957600080fd5b505af1925050508015612f39575060408051601f3d908101601f19168201909252612f3691810190613c06565b60015b612f93573d808015612f67576040519150601f19603f3d011682016040523d82523d6000602084013e612f6c565b606091505b508051612f8b5760405162461bcd60e51b8152600401610cb390613b63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612519565b506001949350505050565b60006001600160a01b0382166130105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610cb3565b506005546005805460018101825560009182527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4919050565b6000818152600183016020526040812054801561317a5760006130b56001836139c9565b85549091506000906130c9906001906139c9565b905081811461312e5760008660000182815481106130e9576130e961396a565b906000526020600020015490508087600001848154811061310c5761310c61396a565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061313f5761313f613c23565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b6c565b6000915050610b6c565b60008181526001830160205260408120546131cb57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b6c565b506000610b6c565b8280546131df906137c3565b90600052602060002090601f0160209004810192826132015760008555613247565b82601f1061321a57805160ff1916838001178555613247565b82800160010185558215613247579182015b8281111561324757825182559160200191906001019061322c565b50613253929150613257565b5090565b5b808211156132535760008155600101613258565b6001600160e01b03198116811461180857600080fd5b60006020828403121561329457600080fd5b81356121688161326c565b6000602082840312156132b157600080fd5b5035919050565b60005b838110156132d35781810151838201526020016132bb565b83811115611b8a5750506000910152565b600081518084526132fc8160208601602086016132b8565b601f01601f19169290920160200192915050565b60208152600061216860208301846132e4565b6001600160a01b038116811461180857600080fd5b6000806040838503121561334b57600080fd5b82359150602083013561335d81613323565b809150509250929050565b6000806040838503121561337b57600080fd5b823561338681613323565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156133c5576133c5613394565b604051601f8501601f19908116603f011681019082821181831017156133ed576133ed613394565b8160405280935085815286868601111561340657600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261343157600080fd5b612168838335602085016133aa565b600080600080600060a0868803121561345857600080fd5b853561346381613323565b9450602086013567ffffffffffffffff81111561347f57600080fd5b61348b88828901613420565b9450506040860135925060608601359150608086013560ff811681146134b057600080fd5b809150509295509295909350565b6000602082840312156134d057600080fd5b813561216881613323565b6000602082840312156134ed57600080fd5b813567ffffffffffffffff81111561350457600080fd5b8201601f8101841361351557600080fd5b612519848235602084016133aa565b60008060006060848603121561353957600080fd5b833561354481613323565b9250602084013561355481613323565b929592945050506040919091013590565b6000806040838503121561357857600080fd5b50508035926020909101359150565b6000806020838503121561359a57600080fd5b823567ffffffffffffffff808211156135b257600080fd5b818501915085601f8301126135c657600080fd5b8135818111156135d557600080fd5b8660206060830285010111156135ea57600080fd5b60209290920196919550909350505050565b6000806040838503121561360f57600080fd5b823561361a81613323565b91506020830135801515811461335d57600080fd5b6020808252825182820181905260009190848201906040850190845b818110156136705783516001600160a01b03168352928401929184019160010161364b565b50909695505050505050565b6000806000806080858703121561369257600080fd5b843561369d81613323565b935060208501356136ad81613323565b925060408501359150606085013567ffffffffffffffff8111156136d057600080fd5b6136dc87828801613420565b91505092959194509250565b600080602083850312156136fb57600080fd5b823567ffffffffffffffff8082111561371357600080fd5b818501915085601f83011261372757600080fd5b81358181111561373657600080fd5b8660208260051b85010111156135ea57600080fd5b6020808252825182820181905260009190848201906040850190845b8181101561367057835183529284019291840191600101613767565b6000806040838503121561379657600080fd5b82356137a181613323565b9150602083013561335d81613323565b60006040828403121561162d57600080fd5b600181811c908216806137d757607f821691505b6020821081141561162d57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561388057613880613857565b500190565b60208082526022908201527f5075726368617365206578636565647320617661696c61626c6520737570706c6040820152613c9760f11b606082015260800190565b60006000198214156138db576138db613857565b5060010190565b6001600160a01b0384811682528316602082015260606040820181905260009061390e908301846132e4565b95945050505050565b600083516139298184602088016132b8565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516139608184602087016132b8565b9190910192915050565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561399a5761399a613857565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826139c4576139c461399f565b500490565b6000828210156139db576139db613857565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b803561ffff81168114611e4957600080fd5b600060608284031215613a5557600080fd5b6040516060810181811067ffffffffffffffff82111715613a7857613a78613394565b604052823581526020830135613a8d81613323565b6020820152613a9e60408401613a31565b60408201529392505050565b60008351613abc8184602088016132b8565b835190830190613ad08183602088016132b8565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215613afb57600080fd5b815161216881613323565b600060408284031215613b1857600080fd5b6040516040810181811067ffffffffffffffff82111715613b3b57613b3b613394565b6040528235613b4981613323565b8152613b5760208401613a31565b60208201529392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082613bc457613bc461399f565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613bfc908301846132e4565b9695505050505050565b600060208284031215613c1857600080fd5b81516121688161326c565b634e487b7160e01b600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220f93760bd9f4a361765849f27c4d144a7141f26b95badaa7bb07485f27070b9aa64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000014546865205061696e746564205361746f73686973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354505300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65486e6a5761384c4358584c4e33414d55767536373956333357795454573861546b6e586d746f4779695a532f000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000046ada08892399b8c50ccfa8b5bdd42089d79b9a90000000000000000000000008197935fa5d654a288ffd07bb30618e5f98e5d2300000000000000000000000089a31e7658510cfd960067cb97ddcc7ece3c70c0000000000000000000000000000000000000000000000000000000000000004035383035363035333162383831393762346264633933313063643931623137373063623830623566303232646434373764353335303263343864313464653335
-----Decoded View---------------
Arg [0] : _name (string): The Painted Satoshis
Arg [1] : _symbol (string): TPS
Arg [2] : _initBaseURI (string): ipfs://QmeHnjWa8LCXXLN3AMUvu679V33WyTTW8aTknXmtoGyiZS/
Arg [3] : proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [4] : _teamShares (uint256[]): 45,45,10
Arg [5] : _team (address[]): 0x46AdA08892399b8C50cCfA8b5BDd42089d79B9A9,0x8197935FA5D654a288FFd07bB30618e5f98E5D23,0x89a31e7658510Cfd960067cb97ddcc7Ece3c70C0
Arg [6] : _provence_hash (string): 580560531b88197b4bdc9310cd91b1770cb80b5f022dd477d53502c48d14de35
-----Encoded View---------------
25 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [6] : 00000000000000000000000000000000000000000000000000000000000002c0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [8] : 546865205061696e746564205361746f73686973000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 5450530000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d65486e6a5761384c4358584c4e33414d55767536373956
Arg [13] : 333357795454573861546b6e586d746f4779695a532f00000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [15] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [16] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [17] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [19] : 00000000000000000000000046ada08892399b8c50ccfa8b5bdd42089d79b9a9
Arg [20] : 0000000000000000000000008197935fa5d654a288ffd07bb30618e5f98e5d23
Arg [21] : 00000000000000000000000089a31e7658510cfd960067cb97ddcc7ece3c70c0
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [23] : 3538303536303533316238383139376234626463393331306364393162313737
Arg [24] : 3063623830623566303232646434373764353335303263343864313464653335
Deployed Bytecode Sourcemap
90292:5603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47161:40;31679:10;47161:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;47191:9:0;270:2:1;255:18;;248:34;161:18;47161:40:0;;;;;;;90292:5603;;;;;93011:251;;;;;;;;;;-1:-1:-1;93011:251:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;93011:251:0;;;;;;;;56528:314;;;;;;;;;;-1:-1:-1;56528:314:0;;;;;:::i;:::-;;:::i;:::-;;;;1292:13:1;;1274:32;;1366:4;1354:17;;;1348:24;-1:-1:-1;;;;;1344:50:1;1322:20;;;1315:80;1443:17;;;1437:24;1463:6;1433:37;1411:20;;;1404:67;1262:2;1247:18;56528:314:0;1056:421:1;70185:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;93503:271::-;;;;;;;;;;-1:-1:-1;93503:271:0;;;;;:::i;:::-;;:::i;:::-;;71745:221;;;;;;;;;;-1:-1:-1;71745:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2853:32:1;;;2835:51;;2823:2;2808:18;71745:221:0;2689:203:1;71267:412:0;;;;;;;;;;-1:-1:-1;71267:412:0;;;;;:::i;:::-;;:::i;25951:1151::-;;;;;;:::i;:::-;;:::i;16171:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16171:43:0;;;;;85606:397;;;;;;;;;;;;;:::i;:::-;;;5342:25:1;;;5330:2;5315:18;85606:397:0;5196:177:1;48367:613:0;;;;;;;;;;-1:-1:-1;48367:613:0;;;;;:::i;:::-;;:::i;90716:21::-;;;;;;;;;;-1:-1:-1;90716:21:0;;;;;:::i;:::-;;:::i;94546:104::-;;;;;;;;;;-1:-1:-1;94546:104:0;;;;;:::i;:::-;;:::i;90500:42::-;;;;;;;;;;-1:-1:-1;90500:42:0;;;;;;;-1:-1:-1;;;;;90500:42:0;;;;;;-1:-1:-1;;;;;6257:47:1;;;6239:66;;6227:2;6212:18;90500:42:0;6093:218:1;17180:101:0;;;;;;;;;;-1:-1:-1;17258:15:0;;17180:101;;72740:339;;;;;;;;;;-1:-1:-1;72740:339:0;;;;;:::i;:::-;;:::i;56924:491::-;;;;;;;;;;-1:-1:-1;56924:491:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;;161:18;56924:491:0;14:274:1;27528:107:0;;;;;;;;;;-1:-1:-1;27528:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;27615:12:0;27581:13;27615:12;;;:6;:12;;;;;;;27528:107;84929:601;;;;;;;;;;-1:-1:-1;84929:601:0;;;;;:::i;:::-;;:::i;17289:161::-;;;;;;;;;;-1:-1:-1;17403:9:0;17289:161;;47292:91;;;;;;;;;;-1:-1:-1;47363:12:0;;47292:91;;90590:29;;;;;;;;;;;;;;;;94796:59;;;;;;;;;;;;;:::i;73150:185::-;;;;;;;;;;-1:-1:-1;73150:185:0;;;;;:::i;:::-;;:::i;86080:579::-;;;;;;;;;;-1:-1:-1;86080:579:0;;;;;:::i;:::-;;:::i;94926:150::-;;;;;;;;;;-1:-1:-1;94926:150:0;;;;;:::i;:::-;;:::i;94356:92::-;;;;;;;;;;-1:-1:-1;94356:92:0;;;;;:::i;:::-;;:::i;32945:86::-;;;;;;;;;;-1:-1:-1;33016:7:0;;;;32945:86;;69409:236;;;;;;;;;;-1:-1:-1;69409:236:0;;;;;:::i;:::-;;:::i;95754:138::-;;;;;;;;;;;;;:::i;90452:41::-;;;;;;;;;;-1:-1:-1;90452:41:0;;;;;;;;;;;;;;8297:4:1;8285:17;;;8267:36;;8255:2;8240:18;90452:41:0;8125:184:1;68921:426:0;;;;;;;;;;-1:-1:-1;68921:426:0;;;;;:::i;:::-;;:::i;35780:94::-;;;;;;;;;;;;;:::i;54252:34::-;;;;;;;;;;-1:-1:-1;54252:34:0;;;;-1:-1:-1;;;;;54252:34:0;;;-1:-1:-1;;;54252:34:0;;;;;;;;;;-1:-1:-1;;;;;8504:32:1;;;8486:51;;8585:6;8573:19;;;8568:2;8553:18;;8546:47;8459:18;54252:34:0;8314:285:1;56306:129:0;;;;;;;;;;;;;:::i;95348:91::-;;;;;;;;;;;;;:::i;94694:55::-;;;;;;;;;;;;;:::i;48067:100::-;;;;;;;;;;-1:-1:-1;48067:100:0;;;;;:::i;:::-;;:::i;35129:87::-;;;;;;;;;;-1:-1:-1;35202:6:0;;-1:-1:-1;;;;;35202:6:0;35129:87;;69997:121;;;;;;;;;;;;;:::i;70354:104::-;;;;;;;;;;;;;:::i;47867:109::-;;;;;;;;;;-1:-1:-1;47867:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;47950:18:0;47923:7;47950:18;;;:9;:18;;;;;;;47867:109;90547:36;;;;;;;;;;;;;;;;91984:218;;;;;;:::i;:::-;;:::i;72038:155::-;;;;;;;;;;-1:-1:-1;72038:155:0;;;;;:::i;:::-;;:::i;69792:135::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;73406:328::-;;;;;;;;;;-1:-1:-1;73406:328:0;;;;;:::i;:::-;;:::i;93923:339::-;;;;;;;;;;-1:-1:-1;93923:339:0;;;;;:::i;:::-;;:::i;86729:612::-;;;;;;;;;;-1:-1:-1;86729:612:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;92553:403::-;;;;;;;;;;-1:-1:-1;92553:403:0;;;;;:::i;:::-;;:::i;47663:105::-;;;;;;;;;;-1:-1:-1;47663:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;47744:16:0;47717:7;47744:16;;;:7;:16;;;;;;;47663:105;92251:106;;;;;;;;;;;;;:::i;47477:95::-;;;;;;;;;;-1:-1:-1;47550:14:0;;47477:95;;95527:100;;;;;;;;;;-1:-1:-1;95527:100:0;;;;;:::i;:::-;;:::i;72264:409::-;;;;;;;;;;-1:-1:-1;72264:409:0;;;;;:::i;:::-;;:::i;95142:128::-;;;;;;;;;;-1:-1:-1;95142:128:0;;;;;:::i;:::-;;:::i;36029:192::-;;;;;;;;;;-1:-1:-1;36029:192:0;;;;;:::i;:::-;;:::i;90682:29::-;;;;;;;;;;;;;:::i;93011:251::-;93134:4;93156:39;93183:11;93156:26;:39::i;:::-;:100;;;;93199:57;93244:11;93199:44;:57::i;:::-;93149:107;93011:251;-1:-1:-1;;93011:251:0:o;56528:314::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;56662:30:0;:20;56686:5;56662:23;:30::i;:::-;56703:27;56733:24;;;:15;:24;;;;;;;;;56703:54;;;;;;;;;-1:-1:-1;;;;;56703:54:0;;;;;;-1:-1:-1;;;56703:54:0;;;;;;;;;;;56775:59;;;;;;;;;;56803:17;;56775:59;;;;;;;;56822:11;56775:59;;;;;;56528:314;-1:-1:-1;;;56528:314:0:o;70185:100::-;70239:13;70272:5;70265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70185:100;:::o;93503:271::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;;;;;;;;;33016:7;;;;33270:9:::1;33262:38;;;;-1:-1:-1::0;;;33262:38:0::1;;;;;;;:::i;:::-;93641:11:::2;:9;:11::i;:::-;93623:7;:14:::0;93611:26:::2;::::0;:9;:26:::2;:::i;:::-;:41;;93603:87;;;;-1:-1:-1::0;;;93603:87:0::2;;;;;;;:::i;:::-;93714:1;93697:72;93722:9;93717:1;:14;93697:72;;93747:14;93757:3;93747:9;:14::i;:::-;-1:-1:-1::0;93733:3:0;::::2;::::0;::::2;:::i;:::-;;;;93697:72;;;;93503:271:::0;;:::o;71745:221::-;71821:7;71849:16;71857:7;71849;:16::i;:::-;71841:73;;;;-1:-1:-1;;;71841:73:0;;14312:2:1;71841:73:0;;;14294:21:1;14351:2;14331:18;;;14324:30;14390:34;14370:18;;;14363:62;-1:-1:-1;;;14441:18:1;;;14434:42;14493:19;;71841:73:0;14110:408:1;71841:73:0;-1:-1:-1;71934:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;71934:24:0;;71745:221::o;71267:412::-;71348:13;71364:24;71380:7;71364:15;:24::i;:::-;71348:40;;71413:5;-1:-1:-1;;;;;71407:11:0;:2;-1:-1:-1;;;;;71407:11:0;;;71399:57;;;;-1:-1:-1;;;71399:57:0;;14725:2:1;71399:57:0;;;14707:21:1;14764:2;14744:18;;;14737:30;14803:34;14783:18;;;14776:62;-1:-1:-1;;;14854:18:1;;;14847:31;14895:19;;71399:57:0;14523:397:1;71399:57:0;31679:10;-1:-1:-1;;;;;71491:21:0;;;;:62;;-1:-1:-1;71516:37:0;71533:5;31679:10;72264:409;:::i;71516:37::-;71469:168;;;;-1:-1:-1;;;71469:168:0;;15127:2:1;71469:168:0;;;15109:21:1;15166:2;15146:18;;;15139:30;15205:34;15185:18;;;15178:62;15276:26;15256:18;;;15249:54;15320:19;;71469:168:0;14925:420:1;71469:168:0;71650:21;71659:2;71663:7;71650:8;:21::i;25951:1151::-;26209:152;;;26152:12;26209:152;;;;;-1:-1:-1;;;;;26247:19:0;;26177:29;26247:19;;;:6;:19;;;;;;;;;26209:152;;;;;;;;;;;26396:45;26254:11;26209:152;26424:4;26430;26436;26396:6;:45::i;:::-;26374:128;;;;-1:-1:-1;;;26374:128:0;;15552:2:1;26374:128:0;;;15534:21:1;15591:2;15571:18;;;15564:30;15630:34;15610:18;;;15603:62;-1:-1:-1;;;15681:18:1;;;15674:31;15722:19;;26374:128:0;15350:397:1;26374:128:0;-1:-1:-1;;;;;26591:19:0;;;;;;:6;:19;;;;;;:26;;26615:1;26591:23;:26::i;:::-;-1:-1:-1;;;;;26569:19:0;;;;;;:6;:19;;;;;;;:48;;;;26635:126;;;;;26576:11;;26707:10;;26733:17;;26635:126;:::i;:::-;;;;;;;;26872:12;26886:23;26921:4;-1:-1:-1;;;;;26913:18:0;26963:17;26982:11;26946:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26946:48:0;;;;;;;;;;26913:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26871:134;;;;27024:7;27016:48;;;;-1:-1:-1;;;27016:48:0;;17090:2:1;27016:48:0;;;17072:21:1;17129:2;17109:18;;;17102:30;17168;17148:18;;;17141:58;17216:18;;27016:48:0;16888:352:1;27016:48:0;27084:10;25951:1151;-1:-1:-1;;;;;;;;25951:1151:0:o;85606:397::-;85786:7;:14;85712;;;85815:170;85851:6;85841:7;:16;85815:170;;;84469:1;-1:-1:-1;;;;;85893:24:0;:7;85901;85893:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;85893:16:0;:24;85889:81;;85942:8;;;;;85889:81;85859:9;;85815:170;;;;85744:252;85606:397;:::o;48367:613::-;-1:-1:-1;;;;;48443:16:0;;48462:1;48443:16;;;:7;:16;;;;;;48435:71;;;;-1:-1:-1;;;48435:71:0;;17579:2:1;48435:71:0;;;17561:21:1;17618:2;17598:18;;;17591:30;17657:34;17637:18;;;17630:62;-1:-1:-1;;;17708:18:1;;;17701:36;17754:19;;48435:71:0;17377:402:1;48435:71:0;48519:21;48567:14;;48543:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;48662:18:0;;48592:15;48662:18;;;:9;:18;;;;;;;;;48647:12;;48627:7;:16;;;;;;;48519:62;;-1:-1:-1;48592:15:0;;48611:32;;48519:62;48611:32;:::i;:::-;48610:49;;;;:::i;:::-;:70;;;;:::i;:::-;48592:88;-1:-1:-1;48701:12:0;48693:68;;;;-1:-1:-1;;;48693:68:0;;18546:2:1;48693:68:0;;;18528:21:1;18585:2;18565:18;;;18558:30;18624:34;18604:18;;;18597:62;-1:-1:-1;;;18675:18:1;;;18668:41;18726:19;;48693:68:0;18344:407:1;48693:68:0;-1:-1:-1;;;;;48795:18:0;;;;;;:9;:18;;;;;;:28;;48816:7;;48795:28;:::i;:::-;-1:-1:-1;;;;;48774:18:0;;;;;;:9;:18;;;;;:49;48851:14;;:24;;48868:7;;48851:24;:::i;:::-;48834:14;:41;48888:35;48906:7;48915;48888:17;:35::i;:::-;48939:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;48939:33:0;;161:18:1;48939:33:0;;;;;;;48424:556;;48367:613;:::o;90716:21::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;90716:21:0;;-1:-1:-1;90716:21:0;:::o;94546:104::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;94620:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;94546:104:::0;:::o;72740:339::-;72935:41;31679:10;72968:7;72935:18;:41::i;:::-;72927:103;;;;-1:-1:-1;;;72927:103:0;;;;;;;:::i;:::-;73043:28;73053:4;73059:2;73063:7;73043:9;:28::i;56924:491::-;57007:7;57040:24;;;:15;:24;;;;;:34;57007:7;;-1:-1:-1;;;;;57040:34:0;:48;57036:166;;57113:24;;;;:15;:24;;;;;:34;-1:-1:-1;;;;;57113:34:0;;;57184:5;;57149:34;;-1:-1:-1;;;57155:28:0;;;;57149:5;:34;:::i;:::-;:40;;;;:::i;:::-;57105:85;;;;;;57036:166;57216:14;:24;-1:-1:-1;;;;;57216:24:0;:38;;;;:65;;-1:-1:-1;57258:14:0;:18;-1:-1:-1;;;57258:18:0;;;;:23;;57216:65;57212:163;;;57306:14;:24;-1:-1:-1;;;;;57306:24:0;;;57357:5;;57332:24;;-1:-1:-1;;;57338:18:0;;;;57332:5;:24;:::i;57212:163::-;-1:-1:-1;57401:1:0;;-1:-1:-1;57401:1:0;56924:491;;;;;;:::o;84929:601::-;85121:7;:14;85071:15;;85173:217;85190:6;85180:7;:16;85173:217;;;85252:5;-1:-1:-1;;;;;85232:25:0;:7;85240;85232:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;85232:16:0;:25;85228:147;;;-1:-1:-1;;85286:7:0;;;85282:74;;85327:5;;85282:74;85198:9;;;;;85173:217;;;85445:6;85435:7;:16;85413:109;;;;-1:-1:-1;;;85413:109:0;;19663:2:1;85413:109:0;;;19645:21:1;19702:2;19682:18;;;19675:30;19741:34;19721:18;;;19714:62;-1:-1:-1;;;19792:18:1;;;19785:41;19843:19;;85413:109:0;19461:407:1;85413:109:0;85093:437;84929:601;;;;:::o;94796:59::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;94839:10:::1;:8;:10::i;:::-;94796:59::o:0;73150:185::-;73288:39;73305:4;73311:2;73315:7;73288:39;;;;;;;;;;;;:16;:39::i;86080:579::-;86250:7;:14;86200:15;;86302:216;86319:6;86309:7;:16;86302:216;;;84469:1;-1:-1:-1;;;;;86361:24:0;:7;86369;86361:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;86361:16:0;:24;86357:146;;-1:-1:-1;;86414:7:0;;;86410:74;;86455:5;;86410:74;86327:9;;;;;86302:216;;;86573:6;86563:7;:16;86541:110;;;;-1:-1:-1;;;86541:110:0;;20075:2:1;86541:110:0;;;20057:21:1;20114:2;20094:18;;;20087:30;20153:34;20133:18;;;20126:62;-1:-1:-1;;;20204:18:1;;;20197:42;20256:19;;86541:110:0;19873:408:1;86541:110:0;86222:437;86080:579;;;:::o;94926:150::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;95036:34:::1;95055:14;;95036:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;:18;:34::i;94356:92::-:0;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;94424:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;69409:236::-:0;69481:7;69509:16;69517:7;69509;:16::i;:::-;69501:70;;;;-1:-1:-1;;;69501:70:0;;21310:2:1;69501:70:0;;;21292:21:1;21349:2;21329:18;;;21322:30;21388:34;21368:18;;;21361:62;-1:-1:-1;;;21439:18:1;;;21432:39;21488:19;;69501:70:0;21108:405:1;69501:70:0;69582:13;69598:7;69606;69598:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;69598:16:0;;69409:236;-1:-1:-1;;;69409:236:0:o;95754:138::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;95809:6:::1;95804:83;95825:4;:11:::0;95821:15;::::1;95804:83;;;95854:25;95870:4;95875:1;95870:7;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;95870:7:0::1;95854;:25::i;:::-;95838:3:::0;::::1;::::0;::::1;:::i;:::-;;;;95804:83;;;;95754:138::o:0;68921:426::-;68993:15;-1:-1:-1;;;;;69029:19:0;;69021:74;;;;-1:-1:-1;;;69021:74:0;;21720:2:1;69021:74:0;;;21702:21:1;21759:2;21739:18;;;21732:30;21798:34;21778:18;;;21771:62;-1:-1:-1;;;21849:18:1;;;21842:40;21899:19;;69021:74:0;21518:406:1;69021:74:0;69150:7;:14;69133;69179:148;69203:6;69199:1;:10;69179:148;;;69253:5;-1:-1:-1;;;;;69239:19:0;:7;69247:1;69239:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;69239:10:0;:19;69235:77;;;69283:9;;;;;69235:77;69211:3;;69179:148;;;;69108:230;68921:426;;;:::o;35780:94::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;35845:21:::1;35863:1;35845:9;:21::i;56306:129::-:0;56371:7;56398:29;:20;:27;:29::i;:::-;56391:36;;56306:129;:::o;95348:91::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;95420:13:::1;:11;:13::i;:::-;95403:14;:30:::0;95348:91::o;94694:55::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;94735:8:::1;:6;:8::i;48067:100::-:0;48118:7;48145;48153:5;48145:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;48145:14:0;;48067:100;-1:-1:-1;;48067:100:0:o;69997:121::-;70067:7;:14;70040:7;;70067:43;;-1:-1:-1;70109:1:0;;56306:129::o;70067:43::-;70088:7;:14;:18;;70105:1;;70088:18;:::i;70354:104::-;70410:13;70443:7;70436:14;;;;;:::i;91984:218::-;1780:1;2376:7;;:19;;2368:63;;;;-1:-1:-1;;;2368:63:0;;22131:2:1;2368:63:0;;;22113:21:1;22170:2;22150:18;;;22143:30;22209:33;22189:18;;;22182:61;22260:18;;2368:63:0;21929:355:1;2368:63:0;1780:1;2509:7;:18;33016:7;;;;33270:9:::1;33262:38;;;;-1:-1:-1::0;;;33262:38:0::1;;;;;;;:::i;:::-;92089:23:::2;::::0;::::2;::::0;::::2;;;92076:36:::0;::::2;;92068:87;;;::::0;-1:-1:-1;;;92068:87:0;;22491:2:1;92068:87:0::2;::::0;::::2;22473:21:1::0;22530:2;22510:18;;;22503:30;22569:34;22549:18;;;22542:62;-1:-1:-1;;;22620:18:1;;;22613:36;22666:19;;92068:87:0::2;22289:402:1::0;92068:87:0::2;92184:11;::::0;92164:32:::2;::::0;92173:9;;92184:11;;::::2;-1:-1:-1::0;;;;;92184:11:0::2;92164:8;:32::i;:::-;-1:-1:-1::0;1736:1:0;2688:7;:22;91984:218::o;72038:155::-;72133:52;31679:10;72166:8;72176;72133:18;:52::i;69792:135::-;69831:16;69860:24;69887:7;69860:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;69860:34:0;;;;;;;;;;;;;;;;-1:-1:-1;69860:34:0;;69792:135;-1:-1:-1;;;;;;69792:135:0:o;73406:328::-;73581:41;31679:10;73614:7;73581:18;:41::i;:::-;73573:103;;;;-1:-1:-1;;;73573:103:0;;;;;;;:::i;:::-;73687:39;73701:4;73707:2;73711:7;73720:5;73687:13;:39::i;:::-;73406:328;;;;:::o;93923:339::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;33016:7;;;;33270:9:::1;33262:38;;;;-1:-1:-1::0;;;33262:38:0::1;;;;;;;:::i;:::-;94048:10:::0;94112:11:::2;:9;:11::i;:::-;94094:7;:14:::0;94082:26:::2;::::0;:9;:26:::2;:::i;:::-;:41;;94074:87;;;;-1:-1:-1::0;;;94074:87:0::2;;;;;;;:::i;:::-;94175:9;94170:87;94194:9;94190:1;:13;94170:87;;;94223:24;94233:10;;94244:1;94233:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;94223:9;:24::i;:::-;-1:-1:-1::0;94205:3:0;::::2;::::0;::::2;:::i;:::-;;;;94170:87;;86729:612:::0;86786:16;86815:18;86836:24;86854:5;86836:17;:24::i;:::-;86815:45;-1:-1:-1;86879:15:0;86871:66;;;;-1:-1:-1;;;86871:66:0;;22898:2:1;86871:66:0;;;22880:21:1;22937:2;22917:18;;;22910:30;22976:34;22956:18;;;22949:62;-1:-1:-1;;;23027:18:1;;;23020:36;23073:19;;86871:66:0;22696:402:1;86871:66:0;86967:7;:14;86950;87034:10;87020:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87020:25:0;;86992:53;;87081:9;87114:15;87109:186;87145:6;87135:7;:16;87109:186;;;87207:5;-1:-1:-1;;;;;87187:25:0;:7;87195;87187:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;87187:16:0;:25;87183:97;;;87253:7;87237:8;87246:3;;;;;;87237:13;;;;;;;;:::i;:::-;;;;;;:23;;;;;87183:97;87153:9;;87109:186;;;-1:-1:-1;87325:8:0;;86729:612;-1:-1:-1;;;;;86729:612:0:o;92553:403::-;92627:13;92657:17;92665:8;92657:7;:17::i;:::-;92649:76;;;;-1:-1:-1;;;92649:76:0;;23305:2:1;92649:76:0;;;23287:21:1;23344:2;23324:18;;;23317:30;23383:34;23363:18;;;23356:62;-1:-1:-1;;;23434:18:1;;;23427:45;23489:19;;92649:76:0;23103:411:1;92649:76:0;92746:14;;92735:8;:25;92732:219;;;92802:13;:11;:13::i;:::-;92817:19;:8;:17;:19::i;:::-;92785:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92771:76;;92553:403;;;:::o;92732:219::-;92901:10;:8;:10::i;92732:219::-;92553:403;;;:::o;92251:106::-;92301:7;92341:10;;92324:14;;:27;;;;:::i;95527:100::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;95609:12:::1;95595:10;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;95527:100:0:o;72264:409::-;72530:28;;-1:-1:-1;;;72530:28:0;;-1:-1:-1;;;;;2853:32:1;;;72530:28:0;;;2835:51:1;72361:4:0;;72485:21;;72522:49;;;;72530:21;;;;;;2808:18:1;;72530:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;72522:49:0;;72518:93;;;72595:4;72588:11;;;;;72518:93;-1:-1:-1;;;;;;;72630:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;72264:409::o;95142:128::-;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;95237:27:::1;;;::::0;;::::1;::::0;::::1;95256:7:::0;95237:27:::1;:::i;:::-;:18;:27::i;36029:192::-:0;35202:6;;-1:-1:-1;;;;;35202:6:0;31679:10;35349:23;35341:68;;;;-1:-1:-1;;;35341:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36118:22:0;::::1;36110:73;;;::::0;-1:-1:-1;;;36110:73:0;;25234:2:1;36110:73:0::1;::::0;::::1;25216:21:1::0;25273:2;25253:18;;;25246:30;25312:34;25292:18;;;25285:62;-1:-1:-1;;;25363:18:1;;;25356:36;25409:19;;36110:73:0::1;25032:402:1::0;36110:73:0::1;36194:19;36204:8;36194:9;:19::i;90682:29::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84544:301::-;84692:4;-1:-1:-1;;;;;;84734:50:0;;-1:-1:-1;;;84734:50:0;;:103;;;84801:36;84825:11;84801:23;:36::i;54415:275::-;54517:4;-1:-1:-1;;;;;;54541:41:0;;-1:-1:-1;;;54541:41:0;;:101;;-1:-1:-1;;;;;;;54586:56:0;;-1:-1:-1;;;54586:56:0;54541:101;:141;;;;54646:36;54670:11;54646:23;:36::i;14698:137::-;14769:7;14804:22;14808:3;14820:5;14804:3;:22::i;:::-;14796:31;14698:137;-1:-1:-1;;;14698:137:0:o;76257:120::-;76314:15;76352:17;76362:2;76352:17;;;;;;;;;;;;:9;:17::i;75244:155::-;75343:7;:14;75309:4;;75333:24;;:58;;;;;75389:1;-1:-1:-1;;;;;75361:30:0;:7;75369;75361:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;75361:16:0;:30;;75326:65;75244:155;-1:-1:-1;;75244:155:0:o;79117:175::-;79192:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;79192:29:0;-1:-1:-1;;;;;79192:29:0;;;;;;;;:24;;79246;79192;79246:15;:24::i;:::-;-1:-1:-1;;;;;79237:47:0;;;;;;;;;;;79117:175;;:::o;27643:486::-;27821:4;-1:-1:-1;;;;;27846:20:0;;27838:70;;;;-1:-1:-1;;;27838:70:0;;25641:2:1;27838:70:0;;;25623:21:1;25680:2;25660:18;;;25653:30;25719:34;25699:18;;;25692:62;-1:-1:-1;;;25770:18:1;;;25763:35;25815:19;;27838:70:0;25439:401:1;27838:70:0;27962:159;27990:47;28009:27;28029:6;28009:19;:27::i;:::-;27990:18;:47::i;:::-;27962:159;;;;;;;;;;;;26072:25:1;;;;26145:4;26133:17;;26113:18;;;26106:45;26167:18;;;26160:34;;;26210:18;;;26203:34;;;26044:19;;27962:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27939:182:0;:6;-1:-1:-1;;;;;27939:182:0;;27919:202;;27643:486;;;;;;;:::o;20874:98::-;20932:7;20959:5;20963:1;20959;:5;:::i;38497:317::-;38612:6;38587:21;:31;;38579:73;;;;-1:-1:-1;;;38579:73:0;;26450:2:1;38579:73:0;;;26432:21:1;26489:2;26469:18;;;26462:30;26528:31;26508:18;;;26501:59;26577:18;;38579:73:0;26248:353:1;38579:73:0;38666:12;38684:9;-1:-1:-1;;;;;38684:14:0;38706:6;38684:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38665:52;;;38736:7;38728:78;;;;-1:-1:-1;;;38728:78:0;;27018:2:1;38728:78:0;;;27000:21:1;27057:2;27037:18;;;27030:30;27096:34;27076:18;;;27069:62;27167:28;27147:18;;;27140:56;27213:19;;38728:78:0;26816:422:1;75566:349:0;75659:4;75684:16;75692:7;75684;:16::i;:::-;75676:73;;;;-1:-1:-1;;;75676:73:0;;27445:2:1;75676:73:0;;;27427:21:1;27484:2;27464:18;;;27457:30;27523:34;27503:18;;;27496:62;-1:-1:-1;;;27574:18:1;;;27567:42;27626:19;;75676:73:0;27243:408:1;75676:73:0;75760:13;75776:24;75792:7;75776:15;:24::i;:::-;75760:40;;75830:5;-1:-1:-1;;;;;75819:16:0;:7;-1:-1:-1;;;;;75819:16:0;;:51;;;;75863:7;-1:-1:-1;;;;;75839:31:0;:20;75851:7;75839:11;:20::i;:::-;-1:-1:-1;;;;;75839:31:0;;75819:51;:87;;;;75874:32;75891:5;75898:7;75874:16;:32::i;:::-;75811:96;75566:349;-1:-1:-1;;;;75566:349:0:o;78480:519::-;78640:4;-1:-1:-1;;;;;78612:32:0;:24;78628:7;78612:15;:24::i;:::-;-1:-1:-1;;;;;78612:32:0;;78604:86;;;;-1:-1:-1;;;78604:86:0;;27858:2:1;78604:86:0;;;27840:21:1;27897:2;27877:18;;;27870:30;27936:34;27916:18;;;27909:62;-1:-1:-1;;;27987:18:1;;;27980:39;28036:19;;78604:86:0;27656:405:1;78604:86:0;-1:-1:-1;;;;;78709:16:0;;78701:65;;;;-1:-1:-1;;;78701:65:0;;28268:2:1;78701:65:0;;;28250:21:1;28307:2;28287:18;;;28280:30;28346:34;28326:18;;;28319:62;-1:-1:-1;;;28397:18:1;;;28390:34;28441:19;;78701:65:0;28066:400:1;78701:65:0;78883:29;78900:1;78904:7;78883:8;:29::i;:::-;78944:2;78925:7;78933;78925:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;78925:21:0;-1:-1:-1;;;;;78925:21:0;;;;;;78964:27;;78983:7;;78964:27;;;;;;;;;;78925:16;78964:27;78480:519;;;:::o;34004:120::-;33016:7;;;;33540:41;;;;-1:-1:-1;;;33540:41:0;;28673:2:1;33540:41:0;;;28655:21:1;28712:2;28692:18;;;28685:30;-1:-1:-1;;;28731:18:1;;;28724:50;28791:18;;33540:41:0;28471:344:1;33540:41:0;34063:7:::1;:15:::0;;-1:-1:-1;;34063:15:0::1;::::0;;34094:22:::1;31679:10:::0;34103:12:::1;34094:22;::::0;-1:-1:-1;;;;;2853:32:1;;;2835:51;;2823:2;2808:18;34094:22:0::1;;;;;;;34004:120::o:0;54879:880::-;54976:6;54971:781;54992:14;:21;54988:1;:25;54971:781;;;55035:39;55077:14;55092:1;55077:17;;;;;;;;:::i;:::-;;;;;;;55035:59;;55137:5;55117:13;:17;;;:25;;;55109:49;;;;-1:-1:-1;;;55109:49:0;;29022:2:1;55109:49:0;;;29004:21:1;29061:2;29041:18;;;29034:30;-1:-1:-1;;;29080:18:1;;;29073:41;29131:18;;55109:49:0;28820:335:1;55109:49:0;55177:23;;;;-1:-1:-1;;;;;55177:37:0;55173:568;;55258:21;;55242:38;;;;:15;:38;;;;;55235:45;;-1:-1:-1;;;;;;55235:45:0;;;55327:21;;55299:50;;:20;;:27;:50::i;:::-;-1:-1:-1;55393:21:0;;55373:42;;5342:25:1;;;55373:42:0;;5330:2:1;5315:18;55373:42:0;;;;;;;55173:568;;;55497:56;;;;;;;;55510:23;;;;;-1:-1:-1;;;;;55497:56:0;;;;;55535:17;;;;55497:56;;;;;;;;;;55472:21;;-1:-1:-1;55456:38:0;;;:15;:38;;;;;;;:97;;;;;;;;;-1:-1:-1;;;55456:97:0;-1:-1:-1;;;;;;55456:97:0;;;;;;;;;;;;55597:21;;55572:47;;:20;;:24;:47::i;:::-;-1:-1:-1;55659:21:0;;55682:23;;;;;55707:17;;;;;55643:82;;29360:25:1;;;-1:-1:-1;;;;;29421:32:1;;;29401:18;;;29394:60;;;;29502:6;29490:19;29470:18;;;29463:47;55643:82:0;;;;;;29348:2:1;55643:82:0;;;55173:568;-1:-1:-1;55015:3:0;;;;:::i;:::-;;;;54971:781;;36229:173;36304:6;;;-1:-1:-1;;;;;36321:17:0;;;-1:-1:-1;;;;;;36321:17:0;;;;;;;36354:40;;36304:6;;;36321:17;36304:6;;36354:40;;36285:16;;36354:40;36274:128;36229:173;:::o;14230:114::-;14290:7;14317:19;14325:3;7259:18;;7176:109;33745:118;33016:7;;;;33270:9;33262:38;;;;-1:-1:-1;;;33262:38:0;;;;;;;:::i;:::-;33805:7:::1;:14:::0;;-1:-1:-1;;33805:14:0::1;33815:4;33805:14;::::0;;33835:20:::1;33842:12;31679:10:::0;;31599:98;91524:328;91625:9;91603:18;-1:-1:-1;;;;;91603:18:0;;:9;:18;:::i;:::-;:31;;91595:63;;;;-1:-1:-1;;;91595:63:0;;29723:2:1;91595:63:0;;;29705:21:1;29762:2;29742:18;;;29735:30;-1:-1:-1;;;29781:18:1;;;29774:49;29840:18;;91595:63:0;29521:343:1;91595:63:0;91705:11;:9;:11::i;:::-;91687:7;:14;91675:26;;:9;:26;:::i;:::-;:41;;91667:87;;;;-1:-1:-1;;;91667:87:0;;;;;;;:::i;:::-;91768:9;91763:84;91787:9;91783:1;:13;91763:84;;;91816:21;91826:10;91816:9;:21::i;:::-;-1:-1:-1;91798:3:0;;;;:::i;:::-;;;;91763:84;;79434:315;79589:8;-1:-1:-1;;;;;79580:17:0;:5;-1:-1:-1;;;;;79580:17:0;;;79572:55;;;;-1:-1:-1;;;79572:55:0;;30071:2:1;79572:55:0;;;30053:21:1;30110:2;30090:18;;;30083:30;30149:27;30129:18;;;30122:55;30194:18;;79572:55:0;29869:349:1;79572:55:0;-1:-1:-1;;;;;79638:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;79638:46:0;;;;;;;;;;79700:41;;819::1;;;79700::0;;792:18:1;79700:41:0;;;;;;;79434:315;;;:::o;74616:::-;74773:28;74783:4;74789:2;74793:7;74773:9;:28::i;:::-;74820:48;74843:4;74849:2;74853:7;74862:5;74820:22;:48::i;:::-;74812:111;;;;-1:-1:-1;;;74812:111:0;;;;;;;:::i;91357:99::-;91411:13;91440:10;91433:17;;;;;:::i;29215:723::-;29271:13;29492:10;29488:53;;-1:-1:-1;;29519:10:0;;;;;;;;;;;;-1:-1:-1;;;29519:10:0;;;;;29215:723::o;29488:53::-;29566:5;29551:12;29607:78;29614:9;;29607:78;;29640:8;;;;:::i;:::-;;-1:-1:-1;29663:10:0;;-1:-1:-1;29671:2:0;29663:10;;:::i;:::-;;;29607:78;;;29695:19;29727:6;29717:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29717:17:0;;29695:39;;29745:154;29752:10;;29745:154;;29779:11;29789:1;29779:11;;:::i;:::-;;-1:-1:-1;29848:10:0;29856:2;29848:5;:10;:::i;:::-;29835:24;;:2;:24;:::i;:::-;29822:39;;29805:6;29812;29805:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;29805:56:0;;;;;;;;-1:-1:-1;29876:11:0;29885:2;29876:11;;:::i;:::-;;;29745:154;;91249:102;91309:13;91338:7;91331:14;;;;;:::i;55948:265::-;56047:5;56033:7;:11;;;:19;;;56025:43;;;;-1:-1:-1;;;56025:43:0;;29022:2:1;56025:43:0;;;29004:21:1;29061:2;29041:18;;;29034:30;-1:-1:-1;;;29080:18:1;;;29073:41;29131:18;;56025:43:0;28820:335:1;56025:43:0;56096:44;;;;;;;;56109:17;;-1:-1:-1;;;;;56096:44:0;;;;;56128:11;;;;;56096:44;;;;;;;;;56079:14;:61;;-1:-1:-1;;;56079:61:0;;;-1:-1:-1;;;;;;56079:61:0;;;;;;;;;56174:17;;56193:11;;56156:49;;;;;;56174:17;-1:-1:-1;;;;;8504:32:1;;;;8486:51;;8585:6;8573:19;8568:2;8553:18;;8546:47;8474:2;8459:18;;8314:285;56156:49:0;;;;;;;;55948:265;:::o;68552:305::-;68654:4;-1:-1:-1;;;;;;68691:40:0;;-1:-1:-1;;;68691:40:0;;:105;;-1:-1:-1;;;;;;;68748:48:0;;-1:-1:-1;;;68748:48:0;68691:105;:158;;;-1:-1:-1;;;;;;;;;;53859:40:0;;;68813:36;53750:157;7639:120;7706:7;7733:3;:11;;7745:5;7733:18;;;;;;;;:::i;:::-;;;;;;;;;7726:25;;7639:120;;;;:::o;76604:322::-;76706:15;76744:9;76750:2;76744:5;:9::i;:::-;76734:19;;76786:54;76817:1;76821:2;76825:7;76834:5;76786:22;:54::i;:::-;76764:154;;;;-1:-1:-1;;;76764:154:0;;;;;;;:::i;27110:410::-;27220:7;25287:100;;;;;;;;;;;;;;;;;25267:127;;;;;;;27374:12;;27409:11;;;;27453:24;;;;;27443:35;;;;;;27293:204;;;;;30990:25:1;;;31046:2;31031:18;;31024:34;;;;-1:-1:-1;;;;;31094:32:1;31089:2;31074:18;;31067:60;31158:2;31143:18;;31136:34;30977:3;30962:19;;30759:417;27293:204:0;;;;;;;;;;;;;27265:247;;;;;;27245:267;;27110:410;;;:::o;17819:258::-;17918:7;18020:20;17258:15;;;17180:101;18020:20;17991:63;;-1:-1:-1;;;17991:63:0;;;31439:27:1;31482:11;;;31475:27;;;;31518:12;;;31511:28;;;31555:12;;17991:63:0;31181:392:1;13775:137:0;13845:4;13869:35;13877:3;13897:5;13869:7;:35::i;13468:131::-;13535:4;13559:32;13564:3;13584:5;13559:4;:32::i;80314:799::-;80469:4;-1:-1:-1;;;;;80490:13:0;;37498:20;37546:8;80486:620;;80526:72;;-1:-1:-1;;;80526:72:0;;-1:-1:-1;;;;;80526:36:0;;;;;:72;;31679:10;;80577:4;;80583:7;;80592:5;;80526:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;80526:72:0;;;;;;;;-1:-1:-1;;80526:72:0;;;;;;;;;;;;:::i;:::-;;;80522:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;80768:13:0;;80764:272;;80811:60;;-1:-1:-1;;;80811:60:0;;;;;;;:::i;80764:272::-;80986:6;80980:13;80971:6;80967:2;80963:15;80956:38;80522:529;-1:-1:-1;;;;;;80649:51:0;-1:-1:-1;;;80649:51:0;;-1:-1:-1;80642:58:0;;80486:620;-1:-1:-1;81090:4:0;80314:799;;;;;;:::o;77262:323::-;77315:15;-1:-1:-1;;;;;77351:16:0;;77343:61;;;;-1:-1:-1;;;77343:61:0;;32528:2:1;77343:61:0;;;32510:21:1;;;32547:18;;;32540:30;32606:34;32586:18;;;32579:62;32658:18;;77343:61:0;32326:356:1;77343:61:0;-1:-1:-1;77425:7:0;:14;77510:7;:16;;;;;;;-1:-1:-1;77510:16:0;;;;;;;-1:-1:-1;;;;;;77510:16:0;-1:-1:-1;;;;;77510:16:0;;;;;;;;77544:33;;77569:7;;-1:-1:-1;77544:33:0;;-1:-1:-1;;77544:33:0;77262:323;;;:::o;5455:1420::-;5521:4;5660:19;;;:12;;;:19;;;;;;5696:15;;5692:1176;;6071:21;6095:14;6108:1;6095:10;:14;:::i;:::-;6144:18;;6071:38;;-1:-1:-1;6124:17:0;;6144:22;;6165:1;;6144:22;:::i;:::-;6124:42;;6200:13;6187:9;:26;6183:405;;6234:17;6254:3;:11;;6266:9;6254:22;;;;;;;;:::i;:::-;;;;;;;;;6234:42;;6408:9;6379:3;:11;;6391:13;6379:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;6493:23;;;:12;;;:23;;;;;:36;;;6183:405;6669:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6764:3;:12;;:19;6777:5;6764:19;;;;;;;;;;;6757:26;;;6807:4;6800:11;;;;;;;5692:1176;6851:5;6844:12;;;;;4865:414;4928:4;7058:19;;;:12;;;:19;;;;;;4945:327;;-1:-1:-1;4988:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;5171:18;;5149:19;;;:12;;;:19;;;;;;:40;;;;5204:11;;4945:327;-1:-1:-1;5255:5:0;5248:12;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:180::-;930:6;983:2;971:9;962:7;958:23;954:32;951:52;;;999:1;996;989:12;951:52;-1:-1:-1;1022:23:1;;871:180;-1:-1:-1;871:180:1:o;1482:258::-;1554:1;1564:113;1578:6;1575:1;1572:13;1564:113;;;1654:11;;;1648:18;1635:11;;;1628:39;1600:2;1593:10;1564:113;;;1695:6;1692:1;1689:13;1686:48;;;-1:-1:-1;;1730:1:1;1712:16;;1705:27;1482:258::o;1745:::-;1787:3;1825:5;1819:12;1852:6;1847:3;1840:19;1868:63;1924:6;1917:4;1912:3;1908:14;1901:4;1894:5;1890:16;1868:63;:::i;:::-;1985:2;1964:15;-1:-1:-1;;1960:29:1;1951:39;;;;1992:4;1947:50;;1745:258;-1:-1:-1;;1745:258:1:o;2008:220::-;2157:2;2146:9;2139:21;2120:4;2177:45;2218:2;2207:9;2203:18;2195:6;2177:45;:::i;2233:131::-;-1:-1:-1;;;;;2308:31:1;;2298:42;;2288:70;;2354:1;2351;2344:12;2369:315;2437:6;2445;2498:2;2486:9;2477:7;2473:23;2469:32;2466:52;;;2514:1;2511;2504:12;2466:52;2550:9;2537:23;2527:33;;2610:2;2599:9;2595:18;2582:32;2623:31;2648:5;2623:31;:::i;:::-;2673:5;2663:15;;;2369:315;;;;;:::o;2897:::-;2965:6;2973;3026:2;3014:9;3005:7;3001:23;2997:32;2994:52;;;3042:1;3039;3032:12;2994:52;3081:9;3068:23;3100:31;3125:5;3100:31;:::i;:::-;3150:5;3202:2;3187:18;;;;3174:32;;-1:-1:-1;;;2897:315:1:o;3217:127::-;3278:10;3273:3;3269:20;3266:1;3259:31;3309:4;3306:1;3299:15;3333:4;3330:1;3323:15;3349:631;3413:5;3443:18;3484:2;3476:6;3473:14;3470:40;;;3490:18;;:::i;:::-;3565:2;3559:9;3533:2;3619:15;;-1:-1:-1;;3615:24:1;;;3641:2;3611:33;3607:42;3595:55;;;3665:18;;;3685:22;;;3662:46;3659:72;;;3711:18;;:::i;:::-;3751:10;3747:2;3740:22;3780:6;3771:15;;3810:6;3802;3795:22;3850:3;3841:6;3836:3;3832:16;3829:25;3826:45;;;3867:1;3864;3857:12;3826:45;3917:6;3912:3;3905:4;3897:6;3893:17;3880:44;3972:1;3965:4;3956:6;3948;3944:19;3940:30;3933:41;;;;3349:631;;;;;:::o;3985:220::-;4027:5;4080:3;4073:4;4065:6;4061:17;4057:27;4047:55;;4098:1;4095;4088:12;4047:55;4120:79;4195:3;4186:6;4173:20;4166:4;4158:6;4154:17;4120:79;:::i;4210:758::-;4312:6;4320;4328;4336;4344;4397:3;4385:9;4376:7;4372:23;4368:33;4365:53;;;4414:1;4411;4404:12;4365:53;4453:9;4440:23;4472:31;4497:5;4472:31;:::i;:::-;4522:5;-1:-1:-1;4578:2:1;4563:18;;4550:32;4605:18;4594:30;;4591:50;;;4637:1;4634;4627:12;4591:50;4660:49;4701:7;4692:6;4681:9;4677:22;4660:49;:::i;:::-;4650:59;;;4756:2;4745:9;4741:18;4728:32;4718:42;;4807:2;4796:9;4792:18;4779:32;4769:42;;4863:3;4852:9;4848:19;4835:33;4912:4;4903:7;4899:18;4890:7;4887:31;4877:59;;4932:1;4929;4922:12;4877:59;4955:7;4945:17;;;4210:758;;;;;;;;:::o;5378:255::-;5445:6;5498:2;5486:9;5477:7;5473:23;5469:32;5466:52;;;5514:1;5511;5504:12;5466:52;5553:9;5540:23;5572:31;5597:5;5572:31;:::i;5638:450::-;5707:6;5760:2;5748:9;5739:7;5735:23;5731:32;5728:52;;;5776:1;5773;5766:12;5728:52;5816:9;5803:23;5849:18;5841:6;5838:30;5835:50;;;5881:1;5878;5871:12;5835:50;5904:22;;5957:4;5949:13;;5945:27;-1:-1:-1;5935:55:1;;5986:1;5983;5976:12;5935:55;6009:73;6074:7;6069:2;6056:16;6051:2;6047;6043:11;6009:73;:::i;6498:456::-;6575:6;6583;6591;6644:2;6632:9;6623:7;6619:23;6615:32;6612:52;;;6660:1;6657;6650:12;6612:52;6699:9;6686:23;6718:31;6743:5;6718:31;:::i;:::-;6768:5;-1:-1:-1;6825:2:1;6810:18;;6797:32;6838:33;6797:32;6838:33;:::i;:::-;6498:456;;6890:7;;-1:-1:-1;;;6944:2:1;6929:18;;;;6916:32;;6498:456::o;6959:248::-;7027:6;7035;7088:2;7076:9;7067:7;7063:23;7059:32;7056:52;;;7104:1;7101;7094:12;7056:52;-1:-1:-1;;7127:23:1;;;7197:2;7182:18;;;7169:32;;-1:-1:-1;6959:248:1:o;7464:656::-;7588:6;7596;7649:2;7637:9;7628:7;7624:23;7620:32;7617:52;;;7665:1;7662;7655:12;7617:52;7705:9;7692:23;7734:18;7775:2;7767:6;7764:14;7761:34;;;7791:1;7788;7781:12;7761:34;7829:6;7818:9;7814:22;7804:32;;7874:7;7867:4;7863:2;7859:13;7855:27;7845:55;;7896:1;7893;7886:12;7845:55;7936:2;7923:16;7962:2;7954:6;7951:14;7948:34;;;7978:1;7975;7968:12;7948:34;8034:7;8029:2;8021:4;8013:6;8009:17;8005:2;8001:26;7997:35;7994:48;7991:68;;;8055:1;8052;8045:12;7991:68;8086:2;8078:11;;;;;8108:6;;-1:-1:-1;7464:656:1;;-1:-1:-1;;;;7464:656:1:o;8604:416::-;8669:6;8677;8730:2;8718:9;8709:7;8705:23;8701:32;8698:52;;;8746:1;8743;8736:12;8698:52;8785:9;8772:23;8804:31;8829:5;8804:31;:::i;:::-;8854:5;-1:-1:-1;8911:2:1;8896:18;;8883:32;8953:15;;8946:23;8934:36;;8924:64;;8984:1;8981;8974:12;9025:658;9196:2;9248:21;;;9318:13;;9221:18;;;9340:22;;;9167:4;;9196:2;9419:15;;;;9393:2;9378:18;;;9167:4;9462:195;9476:6;9473:1;9470:13;9462:195;;;9541:13;;-1:-1:-1;;;;;9537:39:1;9525:52;;9632:15;;;;9597:12;;;;9573:1;9491:9;9462:195;;;-1:-1:-1;9674:3:1;;9025:658;-1:-1:-1;;;;;;9025:658:1:o;9688:665::-;9783:6;9791;9799;9807;9860:3;9848:9;9839:7;9835:23;9831:33;9828:53;;;9877:1;9874;9867:12;9828:53;9916:9;9903:23;9935:31;9960:5;9935:31;:::i;:::-;9985:5;-1:-1:-1;10042:2:1;10027:18;;10014:32;10055:33;10014:32;10055:33;:::i;:::-;10107:7;-1:-1:-1;10161:2:1;10146:18;;10133:32;;-1:-1:-1;10216:2:1;10201:18;;10188:32;10243:18;10232:30;;10229:50;;;10275:1;10272;10265:12;10229:50;10298:49;10339:7;10330:6;10319:9;10315:22;10298:49;:::i;:::-;10288:59;;;9688:665;;;;;;;:::o;10358:615::-;10444:6;10452;10505:2;10493:9;10484:7;10480:23;10476:32;10473:52;;;10521:1;10518;10511:12;10473:52;10561:9;10548:23;10590:18;10631:2;10623:6;10620:14;10617:34;;;10647:1;10644;10637:12;10617:34;10685:6;10674:9;10670:22;10660:32;;10730:7;10723:4;10719:2;10715:13;10711:27;10701:55;;10752:1;10749;10742:12;10701:55;10792:2;10779:16;10818:2;10810:6;10807:14;10804:34;;;10834:1;10831;10824:12;10804:34;10887:7;10882:2;10872:6;10869:1;10865:14;10861:2;10857:23;10853:32;10850:45;10847:65;;;10908:1;10905;10898:12;10978:632;11149:2;11201:21;;;11271:13;;11174:18;;;11293:22;;;11120:4;;11149:2;11372:15;;;;11346:2;11331:18;;;11120:4;11415:169;11429:6;11426:1;11423:13;11415:169;;;11490:13;;11478:26;;11559:15;;;;11524:12;;;;11451:1;11444:9;11415:169;;11615:388;11683:6;11691;11744:2;11732:9;11723:7;11719:23;11715:32;11712:52;;;11760:1;11757;11750:12;11712:52;11799:9;11786:23;11818:31;11843:5;11818:31;:::i;:::-;11868:5;-1:-1:-1;11925:2:1;11910:18;;11897:32;11938:33;11897:32;11938:33;:::i;12008:198::-;12099:6;12152:2;12140:9;12131:7;12127:23;12123:32;12120:52;;;12168:1;12165;12158:12;12211:380;12290:1;12286:12;;;;12333;;;12354:61;;12408:4;12400:6;12396:17;12386:27;;12354:61;12461:2;12453:6;12450:14;12430:18;12427:38;12424:161;;;12507:10;12502:3;12498:20;12495:1;12488:31;12542:4;12539:1;12532:15;12570:4;12567:1;12560:15;12596:356;12798:2;12780:21;;;12817:18;;;12810:30;12876:34;12871:2;12856:18;;12849:62;12943:2;12928:18;;12596:356::o;12957:340::-;13159:2;13141:21;;;13198:2;13178:18;;;13171:30;-1:-1:-1;;;13232:2:1;13217:18;;13210:46;13288:2;13273:18;;12957:340::o;13302:127::-;13363:10;13358:3;13354:20;13351:1;13344:31;13394:4;13391:1;13384:15;13418:4;13415:1;13408:15;13434:128;13474:3;13505:1;13501:6;13498:1;13495:13;13492:39;;;13511:18;;:::i;:::-;-1:-1:-1;13547:9:1;;13434:128::o;13567:398::-;13769:2;13751:21;;;13808:2;13788:18;;;13781:30;13847:34;13842:2;13827:18;;13820:62;-1:-1:-1;;;13913:2:1;13898:18;;13891:32;13955:3;13940:19;;13567:398::o;13970:135::-;14009:3;-1:-1:-1;;14030:17:1;;14027:43;;;14050:18;;:::i;:::-;-1:-1:-1;14097:1:1;14086:13;;13970:135::o;15752:432::-;-1:-1:-1;;;;;16009:15:1;;;15991:34;;16061:15;;16056:2;16041:18;;16034:43;16113:2;16108;16093:18;;16086:30;;;15934:4;;16133:45;;16159:18;;16151:6;16133:45;:::i;:::-;16125:53;15752:432;-1:-1:-1;;;;;15752:432:1:o;16189:415::-;16346:3;16384:6;16378:13;16400:53;16446:6;16441:3;16434:4;16426:6;16422:17;16400:53;:::i;:::-;16522:2;16518:15;;;;-1:-1:-1;;16514:53:1;16475:16;;;;16500:68;;;16595:2;16584:14;;16189:415;-1:-1:-1;;16189:415:1:o;16609:274::-;16738:3;16776:6;16770:13;16792:53;16838:6;16833:3;16826:4;16818:6;16814:17;16792:53;:::i;:::-;16861:16;;;;;16609:274;-1:-1:-1;;16609:274:1:o;17245:127::-;17306:10;17301:3;17297:20;17294:1;17287:31;17337:4;17334:1;17327:15;17361:4;17358:1;17351:15;17784:168;17824:7;17890:1;17886;17882:6;17878:14;17875:1;17872:21;17867:1;17860:9;17853:17;17849:45;17846:71;;;17897:18;;:::i;:::-;-1:-1:-1;17937:9:1;;17784:168::o;17957:127::-;18018:10;18013:3;18009:20;18006:1;17999:31;18049:4;18046:1;18039:15;18073:4;18070:1;18063:15;18089:120;18129:1;18155;18145:35;;18160:18;;:::i;:::-;-1:-1:-1;18194:9:1;;18089:120::o;18214:125::-;18254:4;18282:1;18279;18276:8;18273:34;;;18287:18;;:::i;:::-;-1:-1:-1;18324:9:1;;18214:125::o;19043:413::-;19245:2;19227:21;;;19284:2;19264:18;;;19257:30;19323:34;19318:2;19303:18;;19296:62;-1:-1:-1;;;19389:2:1;19374:18;;19367:47;19446:3;19431:19;;19043:413::o;20286:159::-;20353:20;;20413:6;20402:18;;20392:29;;20382:57;;20435:1;20432;20425:12;20450:653;20545:6;20598:2;20586:9;20577:7;20573:23;20569:32;20566:52;;;20614:1;20611;20604:12;20566:52;20647:2;20641:9;20689:2;20681:6;20677:15;20758:6;20746:10;20743:22;20722:18;20710:10;20707:34;20704:62;20701:88;;;20769:18;;:::i;:::-;20805:2;20798:22;20844:23;;20829:39;;20918:2;20903:18;;20890:32;20931:31;20890:32;20931:31;:::i;:::-;20990:2;20978:15;;20971:30;21034:37;21067:2;21052:18;;21034:37;:::i;:::-;21029:2;21017:15;;21010:62;21021:6;20450:653;-1:-1:-1;;;20450:653:1:o;23519:637::-;23799:3;23837:6;23831:13;23853:53;23899:6;23894:3;23887:4;23879:6;23875:17;23853:53;:::i;:::-;23969:13;;23928:16;;;;23991:57;23969:13;23928:16;24025:4;24013:17;;23991:57;:::i;:::-;-1:-1:-1;;;24070:20:1;;24099:22;;;24148:1;24137:13;;23519:637;-1:-1:-1;;;;23519:637:1:o;24161:280::-;24260:6;24313:2;24301:9;24292:7;24288:23;24284:32;24281:52;;;24329:1;24326;24319:12;24281:52;24361:9;24355:16;24380:31;24405:5;24380:31;:::i;24446:581::-;24535:6;24588:2;24576:9;24567:7;24563:23;24559:32;24556:52;;;24604:1;24601;24594:12;24556:52;24637:2;24631:9;24679:2;24671:6;24667:15;24748:6;24736:10;24733:22;24712:18;24700:10;24697:34;24694:62;24691:88;;;24759:18;;:::i;:::-;24795:2;24788:22;24832:23;;24864:31;24832:23;24864:31;:::i;:::-;24904:21;;24958:37;24991:2;24976:18;;24958:37;:::i;:::-;24953:2;24941:15;;24934:62;24945:6;24446:581;-1:-1:-1;;;24446:581:1:o;30223:414::-;30425:2;30407:21;;;30464:2;30444:18;;;30437:30;30503:34;30498:2;30483:18;;30476:62;-1:-1:-1;;;30569:2:1;30554:18;;30547:48;30627:3;30612:19;;30223:414::o;30642:112::-;30674:1;30700;30690:35;;30705:18;;:::i;:::-;-1:-1:-1;30739:9:1;;30642:112::o;31578:489::-;-1:-1:-1;;;;;31847:15:1;;;31829:34;;31899:15;;31894:2;31879:18;;31872:43;31946:2;31931:18;;31924:34;;;31994:3;31989:2;31974:18;;31967:31;;;31772:4;;32015:46;;32041:19;;32033:6;32015:46;:::i;:::-;32007:54;31578:489;-1:-1:-1;;;;;;31578:489:1:o;32072:249::-;32141:6;32194:2;32182:9;32173:7;32169:23;32165:32;32162:52;;;32210:1;32207;32200:12;32162:52;32242:9;32236:16;32261:30;32285:5;32261:30;:::i;32687:127::-;32748:10;32743:3;32739:20;32736:1;32729:31;32779:4;32776:1;32769:15;32803:4;32800:1;32793:15
Swarm Source
ipfs://f93760bd9f4a361765849f27c4d144a7141f26b95badaa7bb07485f27070b9aa
Loading...
Loading
Loading...
Loading
[ 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.