Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
404 PoG
Holders
382
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PoGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ProofOfGas
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-21 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.16; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } /** * @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); } } library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } } 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 subtraction 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; } } } contract ProofOfGas is IERC721A { using SafeMath for uint256; address private _owner; modifier onlyOwner() { require(_owner==msg.sender, "No!"); _; } uint256 public constant MAX_PER_WALLET = 1; uint256 public constant COST = 0 ether; uint256 public constant MAX_SUPPLY = 987; string private constant _name = "ProofOfGas"; string private constant _symbol = "PoG"; string private constant _contractURI = "QmbVTsDCS78ATXJa5QMJsTQm7hjnrAgrrKP758WikDv4MC"; mapping (uint256 => string) public historyOfColor; constructor() { _owner = msg.sender; } function random() internal view returns (string memory) { string memory input = Strings.toHexString(uint256(uint160(msg.sender)), 20); string memory output = substring(input, 2, 8); return output; } uint256 public lastPrime = 1; function nextPrime() public returns (uint256){ uint runs = 10000; for (uint num = (lastPrime/3 + lastPrime/2); num < runs; num++) { for( uint j = 2; j * j <= num; j++){ if((num.mod(j)==0)) { continue; } else if(num>lastPrime){ lastPrime = num; return num; } } } } function mint() external{ address _caller = _msgSenderERC721A(); uint256 amount = 1; require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut"); require(amount + _numberMinted(msg.sender) <= MAX_PER_WALLET, "AccLimit"); historyOfColor[_currentIndex] = random(); nextPrime(); _mint(_caller, amount); } function substring(string memory str, uint startIndex, uint endIndex) internal view returns (string memory) { bytes memory strBytes = bytes(str); bytes memory result = new bytes(endIndex-startIndex); for(uint i = startIndex; i < endIndex; i++) { result[i-startIndex] = strBytes[i]; } return string(result); } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex = 0; // The number of tokens burned. // uint256 private _burnCounter; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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 Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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; } function render(uint256 _tokenId) internal view returns (string memory) { string memory body = historyOfColor[_tokenId]; return string.concat( '<svg height="200" width="200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="-100 -100 200 200">', '<defs><radialGradient id="glow" cx="0.25" cy="0.25" r="0.35"><stop offset="0%" stop-color="#e3a8b0" /><stop offset="100%" stop-color="#',body,'" /></radialGradient></defs>', '<rect xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" fill="white" />', '<circle cx="0" cy="20" r="70" fill="url(#glow)" />', '</svg>' ); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "token does not exists"); string memory svg = string(abi.encodePacked(render(_tokenId))); string memory json = Base64.encode( abi.encodePacked( '{"name": "PoG #', Strings.toString(_tokenId), '", "description": "Proof of Gas on Chain", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(svg)), '"}' ) ); return string(abi.encodePacked("data:application/json;base64,", json)); } function contractURI() public view returns (string memory) { return string(abi.encodePacked("ipfs://", _contractURI)); } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ /* function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } */ /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ /* function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } */ /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"historyOfColor","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"lastPrime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextPrime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600255600060035534801561001a57600080fd5b50600080546001600160a01b03191633179055611a8e8061003c6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde146102a6578063ba9ddfcc146102b9578063bf8fbbd2146102c2578063c87b56dd146102ca578063e8a3d485146102dd578063e985e9c5146102e557600080fd5b806370a0823114610246578063748dc5221461025957806395d89b4114610261578063a22cb46514610280578063a436965b1461029357600080fd5b80631249c58b1161010a5780631249c58b146101f457806318160ddd146101fc57806323b872dd1461020457806332cb6b0c1461021757806342842e0e146102205780636352211e1461023357600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc1461019e578063095ea7b3146101c95780630f2cdd6c146101de575b600080fd5b61015a610155366004611189565b6102f8565b60405190151581526020015b60405180910390f35b60408051808201909152600a81526950726f6f664f6647617360b01b60208201525b60405161016691906111d7565b6101b16101ac36600461120a565b61034a565b6040516001600160a01b039091168152602001610166565b6101dc6101d736600461123f565b610390565b005b6101e6600181565b604051908152602001610166565b6101dc61044e565b6003546101e6565b6101dc610212366004611269565b610544565b6101e66103db81565b6101dc61022e366004611269565b610554565b6101b161024136600461120a565b61056f565b6101e66102543660046112a5565b61057a565b6101e66105c3565b604080518082019091526003815262506f4760e81b6020820152610191565b6101dc61028e3660046112c0565b61065f565b6101916102a136600461120a565b6106f4565b6101dc6102b4366004611312565b61078e565b6101e660025481565b6101e6600081565b6101916102d836600461120a565b61079f565b610191610883565b61015a6102f33660046113ee565b6108c2565b60006301ffc9a760e01b6001600160e01b03198316148061032957506380ac58cd60e01b6001600160e01b03198316145b806103445750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610357826003541190565b610374576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061039b826108f0565b9050806001600160a01b0316836001600160a01b0316036103bb57600080fd5b336001600160a01b038216146103f2576103d581336108c2565b6103f2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3360016103db8161045e60035490565b6104689190611437565b11156104a55760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b3360009081526005602052604090819020546001911c67ffffffffffffffff166104cf9083611437565b11156105085760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161049c565b61051061095e565b60035460009081526001602052604090209061052c90826114ca565b506105356105c3565b50610540828261097e565b5050565b61054f838383610a59565b505050565b61054f8383836040518060200160405280600081525061078e565b6000610344826108f0565b60008160000361059d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600280546000916127109183916105d9916115a0565b60036002546105e891906115a0565b6105f29190611437565b90505b8181101561065a5760025b8161060b82806115b4565b116106475761061a8282610bf2565b15610635576002548211156106355750600281905592915050565b8061063f816115d3565b915050610600565b5080610652816115d3565b9150506105f5565b505090565b336001600160a01b038316036106885760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001602052600090815260409020805461070d9061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546107399061144a565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b505050505081565b610799848484610a59565b50505050565b60606107ac826003541190565b6107f05760405162461bcd60e51b8152602060048201526015602482015274746f6b656e20646f6573206e6f742065786973747360581b604482015260640161049c565b60006107fb83610bfe565b60405160200161080b9190611608565b6040516020818303038152906040529050600061085861082a85610cc4565b61083384610dcd565b604051602001610844929190611624565b604051602081830303815290604052610dcd565b90508060405160200161086b91906116e5565b60405160208183030381529060405292505050919050565b60606040518060600160405280602e8152602001611a2b602e91396040516020016108ae919061172a565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000816003548110156109455760008181526004602052604081205490600160e01b82169003610943575b8060000361093c57506000190160008181526004602052604090205461091b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600061096d336014610f20565b9050600061093c82600260086110bc565b600354826000036109a157604051622e076360e81b815260040160405180910390fd5b816000036109c25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610a0d5750600355505050565b6000610a64826108f0565b9050836001600160a01b0316816001600160a01b031614610a975760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610ac75750610ac786336108c2565b80610ada57506001600160a01b03821633145b905080610afa57604051632ce44b5f60e11b815260040160405180910390fd5b8115610b1d57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610ba857600184016000818152600460205260408120549003610ba6576003548114610ba65760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600061093c8284611759565b600081815260016020526040812080546060929190610c1c9061144a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c489061144a565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b5050505050905080604051602001610cad919061176d565b604051602081830303815290604052915050919050565b606081600003610ceb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610d155780610cff816115d3565b9150610d0e9050600a836115a0565b9150610cef565b60008167ffffffffffffffff811115610d3057610d306112fc565b6040519080825280601f01601f191660200182016040528015610d5a576020820181803683370190505b5090505b8415610dc557610d6f6001836119aa565b9150610d7c600a86611759565b610d87906030611437565b60f81b818381518110610d9c57610d9c6119bd565b60200101906001600160f81b031916908160001a905350610dbe600a866115a0565b9450610d5e565b949350505050565b60608151600003610dec57505060408051602081019091526000815290565b60006040518060600160405280604081526020016119eb6040913990506000600384516002610e1b9190611437565b610e2591906115a0565b610e309060046115b4565b67ffffffffffffffff811115610e4857610e486112fc565b6040519080825280601f01601f191660200182016040528015610e72576020820181803683370190505b509050600182016020820185865187015b80821015610ede576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250610e83565b5050600386510660018114610efa5760028114610f0d57610f15565b603d6001830353603d6002830353610f15565b603d60018303535b509195945050505050565b60606000610f2f8360026115b4565b610f3a906002611437565b67ffffffffffffffff811115610f5257610f526112fc565b6040519080825280601f01601f191660200182016040528015610f7c576020820181803683370190505b509050600360fc1b81600081518110610f9757610f976119bd565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610fc657610fc66119bd565b60200101906001600160f81b031916908160001a9053506000610fea8460026115b4565b610ff5906001611437565b90505b600181111561106d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611029576110296119bd565b1a60f81b82828151811061103f5761103f6119bd565b60200101906001600160f81b031916908160001a90535060049490941c93611066816119d3565b9050610ff8565b50831561093c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161049c565b60608360006110cb85856119aa565b67ffffffffffffffff8111156110e3576110e36112fc565b6040519080825280601f01601f19166020018201604052801561110d576020820181803683370190505b509050845b8481101561117f5782818151811061112c5761112c6119bd565b01602001516001600160f81b0319168261114688846119aa565b81518110611156576111566119bd565b60200101906001600160f81b031916908160001a90535080611177816115d3565b915050611112565b5095945050505050565b60006020828403121561119b57600080fd5b81356001600160e01b03198116811461093c57600080fd5b60005b838110156111ce5781810151838201526020016111b6565b50506000910152565b60208152600082518060208401526111f68160408501602087016111b3565b601f01601f19169190910160400192915050565b60006020828403121561121c57600080fd5b5035919050565b80356001600160a01b038116811461123a57600080fd5b919050565b6000806040838503121561125257600080fd5b61125b83611223565b946020939093013593505050565b60008060006060848603121561127e57600080fd5b61128784611223565b925061129560208501611223565b9150604084013590509250925092565b6000602082840312156112b757600080fd5b61093c82611223565b600080604083850312156112d357600080fd5b6112dc83611223565b9150602083013580151581146112f157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561132857600080fd5b61133185611223565b935061133f60208601611223565b925060408501359150606085013567ffffffffffffffff8082111561136357600080fd5b818701915087601f83011261137757600080fd5b813581811115611389576113896112fc565b604051601f8201601f19908116603f011681019083821181831017156113b1576113b16112fc565b816040528281528a60208487010111156113ca57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561140157600080fd5b61140a83611223565b915061141860208401611223565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561034457610344611421565b600181811c9082168061145e57607f821691505b60208210810361147e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561054f57600081815260208120601f850160051c810160208610156114ab5750805b601f850160051c820191505b81811015610bea578281556001016114b7565b815167ffffffffffffffff8111156114e4576114e46112fc565b6114f8816114f2845461144a565b84611484565b602080601f83116001811461152d57600084156115155750858301515b600019600386901b1c1916600185901b178555610bea565b600085815260208120601f198616915b8281101561155c5788860151825594840194600190910190840161153d565b508582101561157a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b6000826115af576115af61158a565b500490565b60008160001904831182151516156115ce576115ce611421565b500290565b6000600182016115e5576115e5611421565b5060010190565b600081516115fe8185602086016111b3565b9290920192915050565b6000825161161a8184602087016111b3565b9190910192915050565b6e7b226e616d65223a2022506f47202360881b8152825160009061164f81600f8501602088016111b3565b7f222c20226465736372697074696f6e223a202250726f6f66206f662047617320600f918401918201527f6f6e20436861696e222c2022696d616765223a2022646174613a696d6167652f602f8201526e1cdd99cade1b5b0ed8985cd94d8d0b608a1b604f82015283516116ca81605e8401602088016111b3565b61227d60f01b605e9290910191820152606001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161171d81601d8501602087016111b3565b91909101601d0192915050565b66697066733a2f2f60c81b81526000825161174c8160078501602087016111b3565b9190910160070192915050565b6000826117685761176861158a565b500690565b7f3c737667206865696768743d22323030222077696474683d223230302220786d81527f6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672260208201527f207072657365727665417370656374526174696f3d22784d696e594d696e206d60408201527f656574222076696577426f783d222d313030202d3130302032303020323030226060820152601f60f91b60808201527f3c646566733e3c72616469616c4772616469656e742069643d22676c6f77222060818201527f63783d22302e3235222063793d22302e32352220723d22302e3335223e3c737460a18201527f6f70206f66667365743d223025222073746f702d636f6c6f723d22236533613860c18201527f623022202f3e3c73746f70206f66667365743d2231303025222073746f702d6360e1820152666f6c6f723d222360c81b61010182015260006118c56101088301846115ec565b7f22202f3e3c2f72616469616c4772616469656e743e3c2f646566733e0000000081527f3c7265637420786d6c6e733d22687474703a2f2f7777772e77332e6f72672f32601c8201527f3030302f737667222077696474683d223130302522206865696768743d223130603c82015272181291103334b6361e913bb434ba329110179f60691b605c8201527f3c636972636c652063783d2230222063793d2232302220723d22373022206669606f8201527136361e913ab9361411b3b637bb949110179f60711b608f820152651e17b9bb339f60d11b60a182015260a7019392505050565b8181038181111561034457610344611421565b634e487b7160e01b600052603260045260246000fd5b6000816119e2576119e2611421565b50600019019056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f516d6256547344435337384154584a6135514d4a7354516d37686a6e72416772724b5037353857696b4476344d43a26469706673582212206558635e7282e37a64bb8fbf411181d316d9465123d60838da802a5a3ec4bdcf64736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde146102a6578063ba9ddfcc146102b9578063bf8fbbd2146102c2578063c87b56dd146102ca578063e8a3d485146102dd578063e985e9c5146102e557600080fd5b806370a0823114610246578063748dc5221461025957806395d89b4114610261578063a22cb46514610280578063a436965b1461029357600080fd5b80631249c58b1161010a5780631249c58b146101f457806318160ddd146101fc57806323b872dd1461020457806332cb6b0c1461021757806342842e0e146102205780636352211e1461023357600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc1461019e578063095ea7b3146101c95780630f2cdd6c146101de575b600080fd5b61015a610155366004611189565b6102f8565b60405190151581526020015b60405180910390f35b60408051808201909152600a81526950726f6f664f6647617360b01b60208201525b60405161016691906111d7565b6101b16101ac36600461120a565b61034a565b6040516001600160a01b039091168152602001610166565b6101dc6101d736600461123f565b610390565b005b6101e6600181565b604051908152602001610166565b6101dc61044e565b6003546101e6565b6101dc610212366004611269565b610544565b6101e66103db81565b6101dc61022e366004611269565b610554565b6101b161024136600461120a565b61056f565b6101e66102543660046112a5565b61057a565b6101e66105c3565b604080518082019091526003815262506f4760e81b6020820152610191565b6101dc61028e3660046112c0565b61065f565b6101916102a136600461120a565b6106f4565b6101dc6102b4366004611312565b61078e565b6101e660025481565b6101e6600081565b6101916102d836600461120a565b61079f565b610191610883565b61015a6102f33660046113ee565b6108c2565b60006301ffc9a760e01b6001600160e01b03198316148061032957506380ac58cd60e01b6001600160e01b03198316145b806103445750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610357826003541190565b610374576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061039b826108f0565b9050806001600160a01b0316836001600160a01b0316036103bb57600080fd5b336001600160a01b038216146103f2576103d581336108c2565b6103f2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3360016103db8161045e60035490565b6104689190611437565b11156104a55760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b3360009081526005602052604090819020546001911c67ffffffffffffffff166104cf9083611437565b11156105085760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161049c565b61051061095e565b60035460009081526001602052604090209061052c90826114ca565b506105356105c3565b50610540828261097e565b5050565b61054f838383610a59565b505050565b61054f8383836040518060200160405280600081525061078e565b6000610344826108f0565b60008160000361059d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600280546000916127109183916105d9916115a0565b60036002546105e891906115a0565b6105f29190611437565b90505b8181101561065a5760025b8161060b82806115b4565b116106475761061a8282610bf2565b15610635576002548211156106355750600281905592915050565b8061063f816115d3565b915050610600565b5080610652816115d3565b9150506105f5565b505090565b336001600160a01b038316036106885760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001602052600090815260409020805461070d9061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546107399061144a565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b505050505081565b610799848484610a59565b50505050565b60606107ac826003541190565b6107f05760405162461bcd60e51b8152602060048201526015602482015274746f6b656e20646f6573206e6f742065786973747360581b604482015260640161049c565b60006107fb83610bfe565b60405160200161080b9190611608565b6040516020818303038152906040529050600061085861082a85610cc4565b61083384610dcd565b604051602001610844929190611624565b604051602081830303815290604052610dcd565b90508060405160200161086b91906116e5565b60405160208183030381529060405292505050919050565b60606040518060600160405280602e8152602001611a2b602e91396040516020016108ae919061172a565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000816003548110156109455760008181526004602052604081205490600160e01b82169003610943575b8060000361093c57506000190160008181526004602052604090205461091b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600061096d336014610f20565b9050600061093c82600260086110bc565b600354826000036109a157604051622e076360e81b815260040160405180910390fd5b816000036109c25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610a0d5750600355505050565b6000610a64826108f0565b9050836001600160a01b0316816001600160a01b031614610a975760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610ac75750610ac786336108c2565b80610ada57506001600160a01b03821633145b905080610afa57604051632ce44b5f60e11b815260040160405180910390fd5b8115610b1d57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610ba857600184016000818152600460205260408120549003610ba6576003548114610ba65760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600061093c8284611759565b600081815260016020526040812080546060929190610c1c9061144a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c489061144a565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b5050505050905080604051602001610cad919061176d565b604051602081830303815290604052915050919050565b606081600003610ceb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610d155780610cff816115d3565b9150610d0e9050600a836115a0565b9150610cef565b60008167ffffffffffffffff811115610d3057610d306112fc565b6040519080825280601f01601f191660200182016040528015610d5a576020820181803683370190505b5090505b8415610dc557610d6f6001836119aa565b9150610d7c600a86611759565b610d87906030611437565b60f81b818381518110610d9c57610d9c6119bd565b60200101906001600160f81b031916908160001a905350610dbe600a866115a0565b9450610d5e565b949350505050565b60608151600003610dec57505060408051602081019091526000815290565b60006040518060600160405280604081526020016119eb6040913990506000600384516002610e1b9190611437565b610e2591906115a0565b610e309060046115b4565b67ffffffffffffffff811115610e4857610e486112fc565b6040519080825280601f01601f191660200182016040528015610e72576020820181803683370190505b509050600182016020820185865187015b80821015610ede576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250610e83565b5050600386510660018114610efa5760028114610f0d57610f15565b603d6001830353603d6002830353610f15565b603d60018303535b509195945050505050565b60606000610f2f8360026115b4565b610f3a906002611437565b67ffffffffffffffff811115610f5257610f526112fc565b6040519080825280601f01601f191660200182016040528015610f7c576020820181803683370190505b509050600360fc1b81600081518110610f9757610f976119bd565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610fc657610fc66119bd565b60200101906001600160f81b031916908160001a9053506000610fea8460026115b4565b610ff5906001611437565b90505b600181111561106d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611029576110296119bd565b1a60f81b82828151811061103f5761103f6119bd565b60200101906001600160f81b031916908160001a90535060049490941c93611066816119d3565b9050610ff8565b50831561093c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161049c565b60608360006110cb85856119aa565b67ffffffffffffffff8111156110e3576110e36112fc565b6040519080825280601f01601f19166020018201604052801561110d576020820181803683370190505b509050845b8481101561117f5782818151811061112c5761112c6119bd565b01602001516001600160f81b0319168261114688846119aa565b81518110611156576111566119bd565b60200101906001600160f81b031916908160001a90535080611177816115d3565b915050611112565b5095945050505050565b60006020828403121561119b57600080fd5b81356001600160e01b03198116811461093c57600080fd5b60005b838110156111ce5781810151838201526020016111b6565b50506000910152565b60208152600082518060208401526111f68160408501602087016111b3565b601f01601f19169190910160400192915050565b60006020828403121561121c57600080fd5b5035919050565b80356001600160a01b038116811461123a57600080fd5b919050565b6000806040838503121561125257600080fd5b61125b83611223565b946020939093013593505050565b60008060006060848603121561127e57600080fd5b61128784611223565b925061129560208501611223565b9150604084013590509250925092565b6000602082840312156112b757600080fd5b61093c82611223565b600080604083850312156112d357600080fd5b6112dc83611223565b9150602083013580151581146112f157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561132857600080fd5b61133185611223565b935061133f60208601611223565b925060408501359150606085013567ffffffffffffffff8082111561136357600080fd5b818701915087601f83011261137757600080fd5b813581811115611389576113896112fc565b604051601f8201601f19908116603f011681019083821181831017156113b1576113b16112fc565b816040528281528a60208487010111156113ca57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561140157600080fd5b61140a83611223565b915061141860208401611223565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561034457610344611421565b600181811c9082168061145e57607f821691505b60208210810361147e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561054f57600081815260208120601f850160051c810160208610156114ab5750805b601f850160051c820191505b81811015610bea578281556001016114b7565b815167ffffffffffffffff8111156114e4576114e46112fc565b6114f8816114f2845461144a565b84611484565b602080601f83116001811461152d57600084156115155750858301515b600019600386901b1c1916600185901b178555610bea565b600085815260208120601f198616915b8281101561155c5788860151825594840194600190910190840161153d565b508582101561157a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b6000826115af576115af61158a565b500490565b60008160001904831182151516156115ce576115ce611421565b500290565b6000600182016115e5576115e5611421565b5060010190565b600081516115fe8185602086016111b3565b9290920192915050565b6000825161161a8184602087016111b3565b9190910192915050565b6e7b226e616d65223a2022506f47202360881b8152825160009061164f81600f8501602088016111b3565b7f222c20226465736372697074696f6e223a202250726f6f66206f662047617320600f918401918201527f6f6e20436861696e222c2022696d616765223a2022646174613a696d6167652f602f8201526e1cdd99cade1b5b0ed8985cd94d8d0b608a1b604f82015283516116ca81605e8401602088016111b3565b61227d60f01b605e9290910191820152606001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161171d81601d8501602087016111b3565b91909101601d0192915050565b66697066733a2f2f60c81b81526000825161174c8160078501602087016111b3565b9190910160070192915050565b6000826117685761176861158a565b500690565b7f3c737667206865696768743d22323030222077696474683d223230302220786d81527f6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672260208201527f207072657365727665417370656374526174696f3d22784d696e594d696e206d60408201527f656574222076696577426f783d222d313030202d3130302032303020323030226060820152601f60f91b60808201527f3c646566733e3c72616469616c4772616469656e742069643d22676c6f77222060818201527f63783d22302e3235222063793d22302e32352220723d22302e3335223e3c737460a18201527f6f70206f66667365743d223025222073746f702d636f6c6f723d22236533613860c18201527f623022202f3e3c73746f70206f66667365743d2231303025222073746f702d6360e1820152666f6c6f723d222360c81b61010182015260006118c56101088301846115ec565b7f22202f3e3c2f72616469616c4772616469656e743e3c2f646566733e0000000081527f3c7265637420786d6c6e733d22687474703a2f2f7777772e77332e6f72672f32601c8201527f3030302f737667222077696474683d223130302522206865696768743d223130603c82015272181291103334b6361e913bb434ba329110179f60691b605c8201527f3c636972636c652063783d2230222063793d2232302220723d22373022206669606f8201527136361e913ab9361411b3b637bb949110179f60711b608f820152651e17b9bb339f60d11b60a182015260a7019392505050565b8181038181111561034457610344611421565b634e487b7160e01b600052603260045260246000fd5b6000816119e2576119e2611421565b50600019019056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f516d6256547344435337384154584a6135514d4a7354516d37686a6e72416772724b5037353857696b4476344d43a26469706673582212206558635e7282e37a64bb8fbf411181d316d9465123d60838da802a5a3ec4bdcf64736f6c63430008100033
Deployed Bytecode Sourcemap
20911:25821:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26575:615;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;26575:615:0;;;;;;;;31328:100;31415:5;;;;;;;;;;;;-1:-1:-1;;;31415:5:0;;;;31328:100;;;;;;;:::i;34189:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;34189:204:0;1338:203:1;33672:451:0;;;;;;:::i;:::-;;:::i;:::-;;21112:42;;21153:1;21112:42;;;;;2129:25:1;;;2117:2;2102:18;21112:42:0;1983:177:1;22174:370:0;;;:::i;25818:300::-;26068:13;;25818:300;;35075:190;;;;;;:::i;:::-;;:::i;21206:40::-;;21243:3;21206:40;;35336:205;;;;;;:::i;:::-;;:::i;31117:144::-;;;;;;:::i;:::-;;:::i;27254:234::-;;;;;;:::i;:::-;;:::i;21834:332::-;;;:::i;31497:104::-;31586:7;;;;;;;;;;;;-1:-1:-1;;;31586:7:0;;;;31497:104;;34465:308;;;;;;:::i;:::-;;:::i;21446:49::-;;;;;;:::i;:::-;;:::i;35612:227::-;;;;;;:::i;:::-;;:::i;21802:28::-;;;;;;21161:38;;21192:7;21161:38;;32319:683;;;;;;:::i;:::-;;:::i;33014:134::-;;;:::i;34844:164::-;;;;;;:::i;:::-;;:::i;26575:615::-;26660:4;-1:-1:-1;;;;;;;;;26960:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;27037:25:0;;;26960:102;:179;;;-1:-1:-1;;;;;;;;;;27114:25:0;;;26960:179;26940:199;26575:615;-1:-1:-1;;26575:615:0:o;34189:204::-;34257:7;34282:16;34290:7;36241:13;;-1:-1:-1;36231:23:0;36094:168;34282:16;34277:64;;34307:34;;-1:-1:-1;;;34307:34:0;;;;;;;;;;;34277:64;-1:-1:-1;34361:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34361:24:0;;34189:204::o;33672:451::-;33745:13;33777:27;33796:7;33777:18;:27::i;:::-;33745:61;;33827:5;-1:-1:-1;;;;;33821:11:0;:2;-1:-1:-1;;;;;33821:11:0;;33817:25;;33834:8;;;33817:25;44723:10;-1:-1:-1;;;;;33859:28:0;;;33855:175;;33907:44;33924:5;44723:10;34844:164;:::i;33907:44::-;33902:128;;33979:35;;-1:-1:-1;;;33979:35:0;;;;;;;;;;;33902:128;34042:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34042:29:0;-1:-1:-1;;;;;34042:29:0;;;;;;;;;34087:28;;34042:24;;34087:28;;;;;;;33734:389;33672:451;;:::o;22174:370::-;44723:10;22274:1;21243:3;22274:1;22296:13;26068;;;25818:300;22296:13;:22;;;;:::i;:::-;:36;;22288:56;;;;-1:-1:-1;;;22288:56:0;;5045:2:1;22288:56:0;;;5027:21:1;5084:1;5064:18;;;5057:29;-1:-1:-1;;;5102:18:1;;;5095:37;5149:18;;22288:56:0;;;;;;;;;22386:10;27631:7;27659:25;;;:18;:25;;23189:2;27659:25;;;;;21153:1;;27659:49;23052:13;27658:80;22363:34;;:6;:34;:::i;:::-;:52;;22355:73;;;;-1:-1:-1;;;22355:73:0;;5380:2:1;22355:73:0;;;5362:21:1;5419:1;5399:18;;;5392:29;-1:-1:-1;;;5437:18:1;;;5430:38;5485:18;;22355:73:0;5178:331:1;22355:73:0;22471:8;:6;:8::i;:::-;22454:13;;22439:29;;;;:14;:29;;;;;;:40;;:29;:40;:::i;:::-;;22490:11;:9;:11::i;:::-;;22514:22;22520:7;22529:6;22514:5;:22::i;:::-;22198:346;;22174:370::o;35075:190::-;35229:28;35239:4;35245:2;35249:7;35229:9;:28::i;:::-;35075:190;;;:::o;35336:205::-;35494:39;35511:4;35517:2;35521:7;35494:39;;;;;;;;;;;;:16;:39::i;31117:144::-;31181:7;31224:27;31243:7;31224:18;:27::i;27254:234::-;27318:7;27360:5;27370:1;27342:29;27338:70;;27380:28;;-1:-1:-1;;;27380:28:0;;;;;;;;;;;27338:70;-1:-1:-1;;;;;;27426:25:0;;;;;:18;:25;;;;;;23052:13;27426:54;;27254:234::o;21834:332::-;21953:1;21943:9;;21871:7;;21896:5;;21871:7;;21943:11;;;:::i;:::-;21939:1;21929:9;;:11;;;;:::i;:::-;:25;;;;:::i;:::-;21917:38;;21912:250;21963:4;21957:3;:10;21912:250;;;21996:1;21982:175;22008:3;21999:5;22003:1;;21999:5;:::i;:::-;:12;21982:175;;22028:10;:3;22036:1;22028:7;:10::i;:::-;22024:127;22057:8;22024:127;22091:9;;22087:3;:13;22084:67;;;-1:-1:-1;22110:9:0;:15;;;22122:3;21834:332;-1:-1:-1;;21834:332:0:o;22084:67::-;22013:3;;;;:::i;:::-;;;;21982:175;;;-1:-1:-1;21969:5:0;;;;:::i;:::-;;;;21912:250;;;;21879:287;21834:332;:::o;34465:308::-;44723:10;-1:-1:-1;;;;;34564:31:0;;;34560:61;;34604:17;;-1:-1:-1;;;34604:17:0;;;;;;;;;;;34560:61;44723:10;34634:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;34634:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;34634:60:0;;;;;;;;;;34710:55;;445:41:1;;;34634:49:0;;44723:10;34710:55;;418:18:1;34710:55:0;;;;;;;34465:308;;:::o;21446:49::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35612:227::-;35803:28;35813:4;35819:2;35823:7;35803:9;:28::i;:::-;35612:227;;;;:::o;32319:683::-;32421:13;32460:17;32468:8;36241:13;;-1:-1:-1;36231:23:0;36094:168;32460:17;32452:51;;;;-1:-1:-1;;;32452:51:0;;8875:2:1;32452:51:0;;;8857:21:1;8914:2;8894:18;;;8887:30;-1:-1:-1;;;8933:18:1;;;8926:51;8994:18;;32452:51:0;8673:345:1;32452:51:0;32516:17;32560:16;32567:8;32560:6;:16::i;:::-;32543:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;32516:62;;32589:18;32610:301;32692:26;32709:8;32692:16;:26::i;:::-;32837:25;32857:3;32837:13;:25::i;:::-;32638:262;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32610:13;:301::i;:::-;32589:322;;32988:4;32938:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;32924:70;;;;32319:683;;;:::o;33014:134::-;33058:13;33126:12;;;;;;;;;;;;;;;;;33098:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;33084:56;;33014:134;:::o;34844:164::-;-1:-1:-1;;;;;34965:25:0;;;34941:4;34965:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34844:164::o;28632:1129::-;28699:7;28734;28836:13;;28829:4;:20;28825:869;;;28874:14;28891:23;;;:17;:23;;;;;;;-1:-1:-1;;;28980:23:0;;:28;;28976:699;;29499:113;29506:6;29516:1;29506:11;29499:113;;-1:-1:-1;;;29577:6:0;29559:25;;;;:17;:25;;;;;;29499:113;;;29645:6;28632:1129;-1:-1:-1;;;28632:1129:0:o;28976:699::-;28851:843;28825:869;29722:31;;-1:-1:-1;;;29722:31:0;;;;;;;;;;;21564:230;21605:13;21631:19;21653:53;21689:10;21703:2;21653:19;:53::i;:::-;21631:75;;21717:20;21740:22;21750:5;21757:1;21760;21740:9;:22::i;39114:1594::-;39202:13;;39248:2;39255:1;39230:26;39226:58;;39265:19;;-1:-1:-1;;;39265:19:0;;;;;;;;;;;39226:58;39299:8;39311:1;39299:13;39295:44;;39321:18;;-1:-1:-1;;;39321:18:0;;;;;;;;;;;39295:44;-1:-1:-1;;;;;39816:22:0;;;;;;:18;:22;;;;23189:2;39816:22;;;:70;;39854:31;39842:44;;39816:70;;;40129:31;;;:17;:31;;;;;40222:15;23706:3;40222:41;40180:84;;-1:-1:-1;40300:13:0;;23965:3;40285:56;40180:162;40129:213;;:31;40423:23;;;40463:111;40490:40;;40515:14;;;;;-1:-1:-1;;;;;40490:40:0;;;40507:1;;40490:40;;40507:1;;40490:40;40569:3;40554:12;:18;40463:111;;-1:-1:-1;40590:13:0;:28;35075:190;;;:::o;40962:2636::-;41099:27;41129;41148:7;41129:18;:27::i;:::-;41099:57;;41214:4;-1:-1:-1;;;;;41173:45:0;41189:19;-1:-1:-1;;;;;41173:45:0;;41169:86;;41227:28;;-1:-1:-1;;;41227:28:0;;;;;;;;;;;41169:86;41268:23;41294:24;;;:15;:24;;;;;;-1:-1:-1;;;;;41294:24:0;;;;41268:23;41357:27;;44723:10;41357:27;;:91;;-1:-1:-1;41405:43:0;41422:4;44723:10;34844:164;:::i;41405:43::-;41357:150;;;-1:-1:-1;;;;;;41469:38:0;;44723:10;41469:38;41357:150;41331:177;;41526:17;41521:66;;41552:35;;-1:-1:-1;;;41552:35:0;;;;;;;;;;;41521:66;41756:15;41738:39;41734:103;;41801:24;;;;:15;:24;;;;;41794:31;;-1:-1:-1;;;;;;41794:31:0;;;41734:103;-1:-1:-1;;;;;42204:24:0;;;;;;;:18;:24;;;;;;;;42202:26;;-1:-1:-1;;42202:26:0;;;42273:22;;;;;;;;42271:24;;-1:-1:-1;42271:24:0;;;42566:26;;;:17;:26;;;;;-1:-1:-1;;;42654:15:0;23706:3;42654:41;42612:84;;:128;;42566:174;;;42860:46;;:51;;42856:626;;42964:1;42954:11;;42932:19;43087:30;;;:17;:30;;;;;;:35;;43083:384;;43225:13;;43210:11;:28;43206:242;;43372:30;;;;:17;:30;;;;;:52;;;43206:242;42913:569;42856:626;43529:7;43525:2;-1:-1:-1;;;;;43510:27:0;43519:4;-1:-1:-1;;;;;43510:27:0;;;;;;;;;;;43548:42;41086:2512;;;40962:2636;;;:::o;18442:98::-;18500:7;18527:5;18531:1;18527;:5;:::i;31609:702::-;31692:18;31713:24;;;:14;:24;;;;;31692:45;;31666:13;;31692:18;31713:24;31692:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32067:4;31755:548;;;;;;;;:::i;:::-;;;;;;;;;;;;;31748:555;;;31609:702;;;:::o;9244:723::-;9300:13;9521:5;9530:1;9521:10;9517:53;;-1:-1:-1;;9548:10:0;;;;;;;;;;;;-1:-1:-1;;;9548:10:0;;;;;9244:723::o;9517:53::-;9595:5;9580:12;9636:78;9643:9;;9636:78;;9669:8;;;;:::i;:::-;;-1:-1:-1;9692:10:0;;-1:-1:-1;9700:2:0;9692:10;;:::i;:::-;;;9636:78;;;9724:19;9756:6;9746:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9746:17:0;;9724:39;;9774:154;9781:10;;9774:154;;9808:11;9818:1;9808:11;;:::i;:::-;;-1:-1:-1;9877:10:0;9885:2;9877:5;:10;:::i;:::-;9864:24;;:2;:24;:::i;:::-;9851:39;;9834:6;9841;9834:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9834:56:0;;;;;;;;-1:-1:-1;9905:11:0;9914:2;9905:11;;:::i;:::-;;;9774:154;;;9952:6;9244:723;-1:-1:-1;;;;9244:723:0:o;11286:3097::-;11344:13;11581:4;:11;11596:1;11581:16;11577:31;;-1:-1:-1;;11599:9:0;;;;;;;;;-1:-1:-1;11599:9:0;;;11286:3097::o;11577:31::-;11661:19;11683:6;;;;;;;;;;;;;;;;;11661:28;;12100:20;12159:1;12140:4;:11;12154:1;12140:15;;;;:::i;:::-;12139:21;;;;:::i;:::-;12134:27;;:1;:27;:::i;:::-;12123:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12123:39:0;;12100:62;;12342:1;12335:5;12331:13;12446:2;12438:6;12434:15;12557:4;12609;12603:11;12597:4;12593:22;12519:1432;12643:6;12634:7;12631:19;12519:1432;;;12749:1;12740:7;12736:15;12725:26;;12788:7;12782:14;13441:4;13433:5;13429:2;13425:14;13421:25;13411:8;13407:40;13401:47;13390:9;13382:67;13495:1;13484:9;13480:17;13467:30;;13587:4;13579:5;13575:2;13571:14;13567:25;13557:8;13553:40;13547:47;13536:9;13528:67;13641:1;13630:9;13626:17;13613:30;;13732:4;13724:5;13721:1;13717:13;13713:24;13703:8;13699:39;13693:46;13682:9;13674:66;13786:1;13775:9;13771:17;13758:30;;13869:4;13862:5;13858:16;13848:8;13844:31;13838:38;13827:9;13819:58;;13923:1;13912:9;13908:17;13895:30;;12519:1432;;;12523:107;;14113:1;14106:4;14100:11;14096:19;14134:1;14129:123;;;;14271:1;14266:73;;;;14089:250;;14129:123;14182:4;14178:1;14167:9;14163:17;14155:32;14232:4;14228:1;14217:9;14213:17;14205:32;14129:123;;14266:73;14319:4;14315:1;14304:9;14300:17;14292:32;14089:250;-1:-1:-1;14369:6:0;;11286:3097;-1:-1:-1;;;;;11286:3097:0:o;10545:451::-;10620:13;10646:19;10678:10;10682:6;10678:1;:10;:::i;:::-;:14;;10691:1;10678:14;:::i;:::-;10668:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10668:25:0;;10646:47;;-1:-1:-1;;;10704:6:0;10711:1;10704:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;10704:15:0;;;;;;;;;-1:-1:-1;;;10730:6:0;10737:1;10730:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;10730:15:0;;;;;;;;-1:-1:-1;10761:9:0;10773:10;10777:6;10773:1;:10;:::i;:::-;:14;;10786:1;10773:14;:::i;:::-;10761:26;;10756:135;10793:1;10789;:5;10756:135;;;-1:-1:-1;;;10841:5:0;10849:3;10841:11;10828:25;;;;;;;:::i;:::-;;;;10816:6;10823:1;10816:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;10816:37:0;;;;;;;;-1:-1:-1;10878:1:0;10868:11;;;;;10796:3;;;:::i;:::-;;;10756:135;;;-1:-1:-1;10909:10:0;;10901:55;;;;-1:-1:-1;;;10901:55:0;;15061:2:1;10901:55:0;;;15043:21:1;;;15080:18;;;15073:30;15139:34;15119:18;;;15112:62;15191:18;;10901:55:0;14859:356:1;22552:387:0;22645:13;22702:3;22672:21;22750:19;22759:10;22750:8;:19;:::i;:::-;22740:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22740:30:0;-1:-1:-1;22718:52:0;-1:-1:-1;22795:10:0;22782:116;22811:8;22807:1;:12;22782:116;;;22874:8;22883:1;22874:11;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;22874:11:0;22851:6;22858:12;22860:10;22858:1;:12;:::i;:::-;22851:20;;;;;;;;:::i;:::-;;;;:34;-1:-1:-1;;;;;22851:34:0;;;;;;;;-1:-1:-1;22821:3:0;;;;:::i;:::-;;;;22782:116;;;-1:-1:-1;22923:6:0;22552:387;-1:-1:-1;;;;;22552:387:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:328::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2350:29;2369:9;2350:29;:::i;:::-;2340:39;;2398:38;2432:2;2421:9;2417:18;2398:38;:::i;:::-;2388:48;;2483:2;2472:9;2468:18;2455:32;2445:42;;2165:328;;;;;:::o;2498:186::-;2557:6;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;2689:347::-;2754:6;2762;2815:2;2803:9;2794:7;2790:23;2786:32;2783:52;;;2831:1;2828;2821:12;2783:52;2854:29;2873:9;2854:29;:::i;:::-;2844:39;;2933:2;2922:9;2918:18;2905:32;2980:5;2973:13;2966:21;2959:5;2956:32;2946:60;;3002:1;2999;2992:12;2946:60;3025:5;3015:15;;;2689:347;;;;;:::o;3041:127::-;3102:10;3097:3;3093:20;3090:1;3083:31;3133:4;3130:1;3123:15;3157:4;3154:1;3147:15;3173:1138;3268:6;3276;3284;3292;3345:3;3333:9;3324:7;3320:23;3316:33;3313:53;;;3362:1;3359;3352:12;3313:53;3385:29;3404:9;3385:29;:::i;:::-;3375:39;;3433:38;3467:2;3456:9;3452:18;3433:38;:::i;:::-;3423:48;;3518:2;3507:9;3503:18;3490:32;3480:42;;3573:2;3562:9;3558:18;3545:32;3596:18;3637:2;3629:6;3626:14;3623:34;;;3653:1;3650;3643:12;3623:34;3691:6;3680:9;3676:22;3666:32;;3736:7;3729:4;3725:2;3721:13;3717:27;3707:55;;3758:1;3755;3748:12;3707:55;3794:2;3781:16;3816:2;3812;3809:10;3806:36;;;3822:18;;:::i;:::-;3897:2;3891:9;3865:2;3951:13;;-1:-1:-1;;3947:22:1;;;3971:2;3943:31;3939:40;3927:53;;;3995:18;;;4015:22;;;3992:46;3989:72;;;4041:18;;:::i;:::-;4081:10;4077:2;4070:22;4116:2;4108:6;4101:18;4156:7;4151:2;4146;4142;4138:11;4134:20;4131:33;4128:53;;;4177:1;4174;4167:12;4128:53;4233:2;4228;4224;4220:11;4215:2;4207:6;4203:15;4190:46;4278:1;4273:2;4268;4260:6;4256:15;4252:24;4245:35;4299:6;4289:16;;;;;;;3173:1138;;;;;;;:::o;4316:260::-;4384:6;4392;4445:2;4433:9;4424:7;4420:23;4416:32;4413:52;;;4461:1;4458;4451:12;4413:52;4484:29;4503:9;4484:29;:::i;:::-;4474:39;;4532:38;4566:2;4555:9;4551:18;4532:38;:::i;:::-;4522:48;;4316:260;;;;;:::o;4581:127::-;4642:10;4637:3;4633:20;4630:1;4623:31;4673:4;4670:1;4663:15;4697:4;4694:1;4687:15;4713:125;4778:9;;;4799:10;;;4796:36;;;4812:18;;:::i;5514:380::-;5593:1;5589:12;;;;5636;;;5657:61;;5711:4;5703:6;5699:17;5689:27;;5657:61;5764:2;5756:6;5753:14;5733:18;5730:38;5727:161;;5810:10;5805:3;5801:20;5798:1;5791:31;5845:4;5842:1;5835:15;5873:4;5870:1;5863:15;5727:161;;5514:380;;;:::o;6025:545::-;6127:2;6122:3;6119:11;6116:448;;;6163:1;6188:5;6184:2;6177:17;6233:4;6229:2;6219:19;6303:2;6291:10;6287:19;6284:1;6280:27;6274:4;6270:38;6339:4;6327:10;6324:20;6321:47;;;-1:-1:-1;6362:4:1;6321:47;6417:2;6412:3;6408:12;6405:1;6401:20;6395:4;6391:31;6381:41;;6472:82;6490:2;6483:5;6480:13;6472:82;;;6535:17;;;6516:1;6505:13;6472:82;;6746:1352;6872:3;6866:10;6899:18;6891:6;6888:30;6885:56;;;6921:18;;:::i;:::-;6950:97;7040:6;7000:38;7032:4;7026:11;7000:38;:::i;:::-;6994:4;6950:97;:::i;:::-;7102:4;;7166:2;7155:14;;7183:1;7178:663;;;;7885:1;7902:6;7899:89;;;-1:-1:-1;7954:19:1;;;7948:26;7899:89;-1:-1:-1;;6703:1:1;6699:11;;;6695:24;6691:29;6681:40;6727:1;6723:11;;;6678:57;8001:81;;7148:944;;7178:663;5972:1;5965:14;;;6009:4;5996:18;;-1:-1:-1;;7214:20:1;;;7332:236;7346:7;7343:1;7340:14;7332:236;;;7435:19;;;7429:26;7414:42;;7527:27;;;;7495:1;7483:14;;;;7362:19;;7332:236;;;7336:3;7596:6;7587:7;7584:19;7581:201;;;7657:19;;;7651:26;-1:-1:-1;;7740:1:1;7736:14;;;7752:3;7732:24;7728:37;7724:42;7709:58;7694:74;;7581:201;-1:-1:-1;;;;;7828:1:1;7812:14;;;7808:22;7795:36;;-1:-1:-1;6746:1352:1:o;8103:127::-;8164:10;8159:3;8155:20;8152:1;8145:31;8195:4;8192:1;8185:15;8219:4;8216:1;8209:15;8235:120;8275:1;8301;8291:35;;8306:18;;:::i;:::-;-1:-1:-1;8340:9:1;;8235:120::o;8360:168::-;8400:7;8466:1;8462;8458:6;8454:14;8451:1;8448:21;8443:1;8436:9;8429:17;8425:45;8422:71;;;8473:18;;:::i;:::-;-1:-1:-1;8513:9:1;;8360:168::o;8533:135::-;8572:3;8593:17;;;8590:43;;8613:18;;:::i;:::-;-1:-1:-1;8660:1:1;8649:13;;8533:135::o;9023:198::-;9065:3;9103:5;9097:12;9118:65;9176:6;9171:3;9164:4;9157:5;9153:16;9118:65;:::i;:::-;9199:16;;;;;9023:198;-1:-1:-1;;9023:198:1:o;9226:289::-;9357:3;9395:6;9389:13;9411:66;9470:6;9465:3;9458:4;9450:6;9446:17;9411:66;:::i;:::-;9493:16;;;;;9226:289;-1:-1:-1;;9226:289:1:o;9520:1185::-;-1:-1:-1;;;10020:55:1;;10098:13;;10002:3;;10120:75;10098:13;10183:2;10174:12;;10167:4;10155:17;;10120:75;:::i;:::-;10259:66;10254:2;10214:16;;;10246:11;;;10239:87;10355:66;10350:2;10342:11;;10335:87;-1:-1:-1;;;10446:2:1;10438:11;;10431:38;10494:13;;10516:76;10494:13;10578:2;10570:11;;10563:4;10551:17;;10516:76;:::i;:::-;-1:-1:-1;;;10652:2:1;10611:17;;;;10644:11;;;10637:35;10696:2;10688:11;;9520:1185;-1:-1:-1;;;;9520:1185:1:o;10710:461::-;10972:31;10967:3;10960:44;10942:3;11033:6;11027:13;11049:75;11117:6;11112:2;11107:3;11103:12;11096:4;11088:6;11084:17;11049:75;:::i;:::-;11144:16;;;;11162:2;11140:25;;10710:461;-1:-1:-1;;10710:461:1:o;11176:437::-;-1:-1:-1;;;11433:3:1;11426:22;11408:3;11477:6;11471:13;11493:74;11560:6;11556:1;11551:3;11547:11;11540:4;11532:6;11528:17;11493:74;:::i;:::-;11587:16;;;;11605:1;11583:24;;11176:437;-1:-1:-1;;11176:437:1:o;11618:112::-;11650:1;11676;11666:35;;11681:18;;:::i;:::-;-1:-1:-1;11715:9:1;;11618:112::o;12579:1869::-;13325:66;13313:79;;13422:66;13417:2;13408:12;;13401:88;13519:66;13514:2;13505:12;;13498:88;13616:66;13611:2;13602:12;;13595:88;-1:-1:-1;;;13708:3:1;13699:13;;13692:26;13749:66;13743:3;13734:13;;13727:89;13847:66;13841:3;13832:13;;13825:89;13945:66;13939:3;13930:13;;13923:89;14043:66;14037:3;14028:13;;14021:89;-1:-1:-1;;;14135:3:1;14126:13;;14119:49;-1:-1:-1;14190:40:1;14225:3;14216:13;;14208:6;14190:40;:::i;:::-;11805:66;11793:79;;11955:66;14363:2;14352:14;;11943:79;12052:66;12038:12;;;12031:88;-1:-1:-1;;;12135:12:1;;;12128:72;12316:66;12216:12;;;12304:79;-1:-1:-1;;;12399:12:1;;;12392:70;-1:-1:-1;;;12478:12:1;;;12551:21;14429:13;;;;-1:-1:-1;;;12579:1869:1:o;14453:128::-;14520:9;;;14541:11;;;14538:37;;;14555:18;;:::i;14586:127::-;14647:10;14642:3;14638:20;14635:1;14628:31;14678:4;14675:1;14668:15;14702:4;14699:1;14692:15;14718:136;14757:3;14785:5;14775:39;;14794:18;;:::i;:::-;-1:-1:-1;;;14830:18:1;;14718:136::o
Swarm Source
ipfs://6558635e7282e37a64bb8fbf411181d316d9465123d60838da802a5a3ec4bdcf
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.