Overview
TokenID
1987
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 Name:
_69ars
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-12 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (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/Base64.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ 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)); 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; } } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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(); /** * 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 payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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 payable; /** * @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); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // 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` // - [232..255] `extraData` 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(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 number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary 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 auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // 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) 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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 Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `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` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/_69ars.sol pragma solidity >=0.8.13; contract _69ars is ERC721A { uint public constant CONTENT_SIDE = 69; uint public constant CONTENT_PADDING = 2; uint public constant CONTENT_COLOR_BYTES = 2; uint public constant CONTENT_SIZE = (CONTENT_SIDE+CONTENT_PADDING) * CONTENT_SIDE * CONTENT_COLOR_BYTES; uint public constant COLLECION_SIZE = 6969; uint public constant MAX_PEX_MINT = 10; struct Attribute { string trait; string value; } constructor() ERC721A("69ars", "69AR") { _mint(msg.sender, 9); } function _startTokenId() internal pure override(ERC721A) returns (uint256) { return 1; } function mint(uint256 quantity) public { require(quantity <= MAX_PEX_MINT, "Can't exceed max per mint"); require(totalSupply() + quantity <= COLLECION_SIZE, "Can't exceed the collection size"); _mint(msg.sender, quantity); } function tokenURI(uint token) public pure override(ERC721A) returns(string memory encoded_metadata) { encoded_metadata = string(abi.encodePacked("data:application/json;base64,", metadataJson(token))); } function metadataJson(uint token) public pure returns(string memory metadata) { string memory image; Attribute[] memory attributes; uint acount; (image, attributes, acount) = getImage(token); string[] memory entries = new string[](acount); for (uint i = 0; i < entries.length; ++i) { entries[i] = string(abi.encodePacked("{\"trait_type\":\"",attributes[i].trait,"\",\"value\":\"",attributes[i].value,"\"}")); } string memory attributesJson = "["; for (uint i = 0; i < entries.length; ++i) { if (i == 0) { attributesJson = string(abi.encodePacked(attributesJson,entries[i])); } else { attributesJson = string(abi.encodePacked(attributesJson,",",entries[i])); } } attributesJson = string(abi.encodePacked(attributesJson,"]")); metadata = Base64.encode( abi.encodePacked( "{\"image\": \"", image, "\", \"name\":\"69AR #", Strings.toString(token) ,"\", \"description\":\"Fully onchain 69ars in raster(BMP) format.\",\"attributes\":",attributesJson,"}")); } function getImage(uint token) public pure returns(string memory image, Attribute[] memory attributes, uint acount) { bytes memory header = hex"" hex"424D" hex"7c260000" hex"00000000" hex"36000000" hex"28000000" hex"45000000" hex"45000000" hex"0100" hex"1000" hex"00000000" hex"00000000" hex"00000000" hex"00000000" hex"00000000" hex"00000000" hex""; bytes memory imageBytes; (imageBytes, attributes, acount) = getContentBytes(token); image = string(abi.encodePacked("data:image/bmp;base64,", Base64.encode(abi.encodePacked(header, imageBytes)))); } function getContentBytes(uint token) public pure returns(bytes memory content, Attribute[] memory attributes, uint acount) { attributes = new Attribute[](10); acount = 3; content = new bytes(CONTENT_SIZE); uint seed = uint(keccak256(abi.encodePacked(token))); seed = drawMainAttributes(content, seed, attributes); seed = seed >> 1; if (seed & 1 > 0) { bytes1 rc1; bytes1 rc2; string memory earring; (rc1, rc2, earring) = getEarringColor(seed); attributes[acount++] = Attribute({trait: "earring", value: earring}); drawEarring(content, rc1, rc2); } } function drawMainAttributes(bytes memory content, uint seed, Attribute[] memory attributes) private pure returns (uint newSeed) { bytes1 bc1; bytes1 bc2; string memory background; (bc1,bc2,background) = getBackgroundColor(seed); drawSolidBackground(content, bc1, bc2); attributes[0] = Attribute({trait: "background", value: background}); seed = seed >> 1; bytes1 fc1; bytes1 fc2; bytes1 oc1; bytes1 oc2; string memory fur; (fc1, fc2, oc1, oc2, fur) = getFurColor(seed); drawBearFill(content, fc1, fc2); drawBearOutline(content, oc1, oc2); attributes[1] = Attribute({trait: "fur", value: fur}); seed = seed >> 1; bytes1 ec1; bytes1 ec2; string memory eyes; (ec1, ec2, eyes) = getEyeColor(seed); drawEyes(content, ec1, ec2); attributes[2] = Attribute({trait: "eyes", value: eyes}); return seed; } function drawSolidBackground(bytes memory content, bytes1 c1, bytes1 c2) private pure { for (uint i = 0; i < CONTENT_SIZE / 2; ++i) { content[2*i] = c2; content[2*i+1] = c1; } } function drawBearFill(bytes memory content, bytes1 c1, bytes1 c2) private pure { for (uint8 y = 7; y < 48; ++y) { drawHorizontal(content, 14, y, 43, c1, c2); } for (uint8 y = 48; y < 60; ++y) { drawHorizontal(content, 26, y, 19, c1, c2); } for (uint8 y = 60; y < 63; ++y) { drawHorizontal(content, 26, y, 4, c1, c2); drawHorizontal(content, 41, y, 4, c1, c2); } for (uint8 y = 48; y < 54; ++y) { drawHorizontal(content, 45, y, 4, c1, c2); } } function drawBearOutline(bytes memory content, bytes1 c1, bytes1 c2) private pure { drawHorizontal(content, 13, 6, 45, c1, c2); drawHorizontal(content, 13, 47, 45, c1, c2); drawVertical(content, 13, 7, 40, c1, c2); drawVertical(content, 57, 7, 40, c1, c2); drawVertical(content, 20, 7, 27, c1, c2); drawVertical(content, 50, 7, 27, c1, c2); drawVertical(content, 25, 7, 5, c1, c2); drawVertical(content, 35, 7, 5, c1, c2); drawVertical(content, 45, 7, 5, c1, c2); drawHorizontal(content, 25, 12, 21, c1, c2); drawVertical(content, 25, 48, 16, c1, c2); drawVertical(content, 49, 48, 6, c1, c2); drawHorizontal(content, 40, 54, 10, c1, c2); drawVertical(content, 45, 55, 9, c1, c2); drawHorizontal(content, 26, 63, 4, c1, c2); drawHorizontal(content, 41, 63, 4, c1, c2); drawVertical(content, 30, 60, 4, c1, c2); drawVertical(content, 40, 60, 4, c1, c2); drawHorizontal(content, 31, 60, 9, c1, c2); drawHorizontal(content, 47, 52, 2, c1, c2); drawHorizontal(content, 47, 53, 2, c1, c2); drawHorizontal(content, 47, 49, 2, c1, c2); drawPointAtXY(content, 15, 7, c1, c2); drawPointAtXY(content, 18, 7, c1, c2); drawPointAtXY(content, 28, 7, c1, c2); drawPointAtXY(content, 32, 7, c1, c2); drawPointAtXY(content, 38, 7, c1, c2); drawPointAtXY(content, 42, 7, c1, c2); drawPointAtXY(content, 52, 7, c1, c2); drawPointAtXY(content, 55, 7, c1, c2); } function drawEyes(bytes memory content, bytes1 c1, bytes1 c2) private pure { drawHorizontal(content, 34, 56, 2, c1, c2); drawHorizontal(content, 34, 57, 2, c1, c2); drawHorizontal(content, 39, 56, 2, c1, c2); drawHorizontal(content, 39, 57, 2, c1, c2); } function drawEarring(bytes memory content, bytes1 c1, bytes1 c2) private pure { drawHorizontal(content, 27, 62, 2, c1, c2); drawHorizontal(content, 27, 63, 2, c1, c2); } function getBackgroundColor(uint seed) private pure returns(bytes1 c1, bytes1 c2, string memory name) { uint8 chance = uint8(seed & 127); if (chance < 1) return (0x7f, 0x40, "gold"); if (chance < 5) return (0x76, 0xd6, "pink"); if (chance < 10) return (0x4e, 0xfc, "blue"); if (chance < 25) return (0x5e, 0xfc, "violet"); if (chance < 35) return (0x63, 0x55, "green"); if (chance < 51) return (0x63, 0x3b, "gray"); return (0x7f, 0xff, "white"); } function getFurColor(uint seed) private pure returns(bytes1 fc1, bytes1 fc2, bytes1 oc1, bytes1 oc2, string memory name) { uint8 chance = uint8(seed & 127); if (chance < 1) return (0x5f, 0x7f, 0x00, 0x00, "ice"); if (chance < 5) return (0x7a, 0xca, 0x00, 0x00, "orange"); if (chance < 10) return (0x4f, 0xed, 0x00, 0x00, "green"); if (chance < 20) return (0x7f, 0xff, 0x00, 0x00, "white"); if (chance < 35) return (0x5a, 0x5f, 0x00, 0x00, "violet"); if (chance < 51) return (0x04, 0x21, 0x30, 0xa0, "black"); return (0x30, 0xa0, 0x0, 0x0, "brown"); } function getEyeColor(uint seed) private pure returns(bytes1 c1, bytes1 c2, string memory name) { uint8 chance = uint8(seed & 127); if (chance < 1) return (0x7c, 0x00, "red"); if (chance < 10) return (0x00, 0x1f, "blue"); if (chance < 25) return (0x03, 0xe0, "green"); return (0x0, 0x0, "black"); } function getEarringColor(uint seed) private pure returns(bytes1 c1, bytes1 c2, string memory name) { uint8 chance = uint8(seed & 127); if (chance < 10) return (0x7f, 0x40, "gold"); if (chance < 30) return (0x7c, 0x00, "ruby"); if (chance < 60) return (0x03, 0xe0, "emerald"); return (0x63, 0x3b, "silver"); } function drawHorizontal(bytes memory content, uint8 x, uint8 y, uint8 length, bytes1 c1, bytes1 c2) private pure { uint flat = centricToFlat(x, y); for (uint i = 0; i < length; ++i) { content[flat + (2*i)] = c2; content[flat + (2*i + 1)] = c1; } } function drawVertical(bytes memory content, uint8 x, uint8 y, uint8 length, bytes1 c1, bytes1 c2) private pure { for (uint i = 0; i < length; ++i) { uint flat = centricToFlat(x, y+i); content[flat] = c2; content[flat+1] = c1; } } function drawPointAtXY(bytes memory content, uint8 x, uint8 y, bytes1 c1, bytes1 c2) private pure { uint flat = centricToFlat(x, y); drawPointAtFlat(content, flat, c1, c2); } function drawPointAtFlat(bytes memory content, uint flat, bytes1 c1, bytes1 c2) private pure { content[flat] = c2; content[flat + 1] = c1; } function centricToFlat(uint x, uint y) public pure returns(uint flat) { flat = (CONTENT_SIDE * y + x) * 2 + y * CONTENT_PADDING; } }
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":"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":"COLLECION_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTENT_COLOR_BYTES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTENT_PADDING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTENT_SIDE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTENT_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PEX_MINT","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"}],"name":"centricToFlat","outputs":[{"internalType":"uint256","name":"flat","type":"uint256"}],"stateMutability":"pure","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":"token","type":"uint256"}],"name":"getContentBytes","outputs":[{"internalType":"bytes","name":"content","type":"bytes"},{"components":[{"internalType":"string","name":"trait","type":"string"},{"internalType":"string","name":"value","type":"string"}],"internalType":"struct _69ars.Attribute[]","name":"attributes","type":"tuple[]"},{"internalType":"uint256","name":"acount","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"token","type":"uint256"}],"name":"getImage","outputs":[{"internalType":"string","name":"image","type":"string"},{"components":[{"internalType":"string","name":"trait","type":"string"},{"internalType":"string","name":"value","type":"string"}],"internalType":"struct _69ars.Attribute[]","name":"attributes","type":"tuple[]"},{"internalType":"uint256","name":"acount","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"token","type":"uint256"}],"name":"metadataJson","outputs":[{"internalType":"string","name":"metadata","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"token","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"encoded_metadata","type":"string"}],"stateMutability":"pure","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":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600581526020017f36396172730000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f363941520000000000000000000000000000000000000000000000000000000081525081600290816200008f9190620005bd565b508060039081620000a19190620005bd565b50620000b2620000d360201b60201c565b6000819055505050620000cd336009620000dc60201b60201c565b620006a4565b60006001905090565b600080549050600082036200011d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620001326000848385620002c360201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620001c183620001a36000866000620002c960201b60201c565b620001b485620002f960201b60201c565b176200030960201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200026457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000227565b5060008203620002a0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620002be60008483856200033460201b60201c565b505050565b50505050565b60008060e883901c905060e8620002e88686846200033a60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003c557607f821691505b602082108103620003db57620003da6200037d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000406565b62000451868362000406565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200049e62000498620004928462000469565b62000473565b62000469565b9050919050565b6000819050919050565b620004ba836200047d565b620004d2620004c982620004a5565b84845462000413565b825550505050565b600090565b620004e9620004da565b620004f6818484620004af565b505050565b5b818110156200051e5762000512600082620004df565b600181019050620004fc565b5050565b601f8211156200056d576200053781620003e1565b6200054284620003f6565b8101602085101562000552578190505b6200056a6200056185620003f6565b830182620004fb565b50505b505050565b600082821c905092915050565b6000620005926000198460080262000572565b1980831691505092915050565b6000620005ad83836200057f565b9150826002028217905092915050565b620005c88262000343565b67ffffffffffffffff811115620005e457620005e36200034e565b5b620005f08254620003ac565b620005fd82828562000522565b600060209050601f83116001811462000635576000841562000620578287015190505b6200062c85826200059f565b8655506200069c565b601f1984166200064586620003e1565b60005b828110156200066f5784890151825560018201915060208501945060208101905062000648565b868310156200068f57848901516200068b601f8916826200057f565b8355505b6001600288020188555050505b505050505050565b6141ca80620006b46000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610546578063d506fe6414610583578063e69f4a11146105ae578063e985e9c5146105d957610166565b8063a22cb465146104d6578063b88d4fde146104ff578063bcfb228d1461051b57610166565b806370a08231146103b057806377807873146103ed5780638417234d146104185780638626a0981461044357806395d89b4114610482578063a0712d68146104ad57610166565b80632607aafa116101235780632607aafa1461027357806333229c77146102b257806333acc1b0146102ef57806342842e0e1461031a5780636352211e14610336578063643d66a81461037357610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461022c57806323b872dd14610257575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612fa9565b610616565b60405161019f9190612ff1565b60405180910390f35b3480156101b457600080fd5b506101bd6106a8565b6040516101ca919061309c565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906130f4565b61073a565b6040516102079190613162565b60405180910390f35b61022a600480360381019061022591906131a9565b6107b9565b005b34801561023857600080fd5b506102416108fd565b60405161024e91906131f8565b60405180910390f35b610271600480360381019061026c9190613213565b610914565b005b34801561027f57600080fd5b5061029a600480360381019061029591906130f4565b610c36565b6040516102a9939291906133b6565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906130f4565b610cc2565b6040516102e6919061309c565b60405180910390f35b3480156102fb57600080fd5b50610304610f0e565b60405161031191906131f8565b60405180910390f35b610334600480360381019061032f9190613213565b610f14565b005b34801561034257600080fd5b5061035d600480360381019061035891906130f4565b610f34565b60405161036a9190613162565b60405180910390f35b34801561037f57600080fd5b5061039a600480360381019061039591906133fb565b610f46565b6040516103a791906131f8565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d2919061343b565b610f8b565b6040516103e491906131f8565b60405180910390f35b3480156103f957600080fd5b50610402611043565b60405161040f91906131f8565b60405180910390f35b34801561042457600080fd5b5061042d611048565b60405161043a91906131f8565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906130f4565b61104d565b604051610479939291906134bd565b60405180910390f35b34801561048e57600080fd5b50610497611214565b6040516104a4919061309c565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf91906130f4565b6112a6565b005b3480156104e257600080fd5b506104fd60048036038101906104f8919061352e565b61134e565b005b610519600480360381019061051491906136a3565b611459565b005b34801561052757600080fd5b506105306114cc565b60405161053d91906131f8565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906130f4565b6114d1565b60405161057a919061309c565b60405180910390f35b34801561058f57600080fd5b50610598611502565b6040516105a591906131f8565b60405180910390f35b3480156105ba57600080fd5b506105c3611507565b6040516105d091906131f8565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613726565b611530565b60405161060d9190612ff1565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106b790613795565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390613795565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b6000610745826115c4565b61077b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c482610f34565b90508073ffffffffffffffffffffffffffffffffffffffff166107e5611623565b73ffffffffffffffffffffffffffffffffffffffff1614610848576108118161080c611623565b611530565b610847576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061090761162b565b6001546000540303905090565b600061091f82611634565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610986576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061099284611700565b915091506109a881876109a3611623565b611727565b6109f4576109bd866109b8611623565b611530565b6109f3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a5a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a67868686600161176b565b8015610a7257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b4085610b1c888887611771565b7c020000000000000000000000000000000000000000000000000000000017611799565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bc65760006001850190506000600460008381526020019081526020016000205403610bc4576000548114610bc3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c2e86868660016117c4565b505050505050565b60608060008060405180606001604052806036815260200161411f6036913990506060610c628661104d565b809550819650829350505050610c988282604051602001610c84929190613802565b6040516020818303038152906040526117ca565b604051602001610ca891906138ae565b604051602081830303815290604052945050509193909250565b60608060606000610cd285610c36565b80935081945082955050505060008167ffffffffffffffff811115610cfa57610cf9613578565b5b604051908082528060200260200182016040528015610d2d57816020015b6060815260200190600190039081610d185790505b50905060005b8151811015610dc957838181518110610d4f57610d4e6138d0565b5b602002602001015160000151848281518110610d6e57610d6d6138d0565b5b602002602001015160200151604051602001610d8b9291906139e3565b604051602081830303815290604052828281518110610dad57610dac6138d0565b5b602002602001018190525080610dc290613a57565b9050610d33565b5060006040518060400160405280600181526020017f5b00000000000000000000000000000000000000000000000000000000000000815250905060005b8251811015610eab5760008103610e5b5781838281518110610e2c57610e2b6138d0565b5b6020026020010151604051602001610e45929190613a9f565b6040516020818303038152906040529150610e9a565b81838281518110610e6f57610e6e6138d0565b5b6020026020010151604051602001610e88929190613b0f565b60405160208183030381529060405291505b80610ea490613a57565b9050610e07565b5080604051602001610ebd9190613b8a565b6040516020818303038152906040529050610f0285610edb8961192d565b83604051602001610eee93929190613d28565b6040516020818303038152906040526117ca565b95505050505050919050565b611b3981565b610f2f83838360405180602001604052806000815250611459565b505050565b6000610f3f82611634565b9050919050565b6000600282610f559190613d85565b600284846045610f659190613d85565b610f6f9190613ddf565b610f799190613d85565b610f839190613ddf565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a81565b600281565b6060806000600a67ffffffffffffffff81111561106d5761106c613578565b5b6040519080825280602002602001820160405280156110a657816020015b611093612f23565b81526020019060019003908161108b5790505b5091506003905060026045600260456110bf9190613ddf565b6110c99190613d85565b6110d39190613d85565b67ffffffffffffffff8111156110ec576110eb613578565b5b6040519080825280601f01601f19166020018201604052801561111e5781602001600182028036833780820191505090505b5092506000846040516020016111349190613e34565b6040516020818303038152906040528051906020012060001c905061115a848285611a8d565b9050600181901c9050600060018216111561120c57600080606061117d84611c72565b80935081945082955050505060405180604001604052806040518060400160405280600781526020017f65617272696e67000000000000000000000000000000000000000000000000008152508152602001828152508686806111df90613a57565b9750815181106111f2576111f16138d0565b5b6020026020010181905250611208878484611dee565b5050505b509193909250565b60606003805461122390613795565b80601f016020809104026020016040519081016040528092919081815260200182805461124f90613795565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b600a8111156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190613e9b565b60405180910390fd5b611b39816112f66108fd565b6113009190613ddf565b1115611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613f07565b60405180910390fd5b61134b3382611e15565b50565b806007600061135b611623565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611408611623565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161144d9190612ff1565b60405180910390a35050565b611464848484610914565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114c65761148f84848484611fd0565b6114c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b604581565b60606114dc82610cc2565b6040516020016114ec9190613f73565b6040516020818303038152906040529050919050565b600281565b60026045600260456115199190613ddf565b6115239190613d85565b61152d9190613d85565b81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816115cf61162b565b111580156115de575060005482105b801561161c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061164361162b565b116116c9576000548110156116c85760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116c6575b600081036116bc576004600083600190039350838152602001908152602001600020549050611692565b80925050506116fb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611788868684612120565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b606060008251036117ec57604051806020016040528060008152509050611928565b6000604051806060016040528060408152602001614155604091399050600060036002855161181b9190613ddf565b6118259190613fc4565b60046118319190613d85565b67ffffffffffffffff81111561184a57611849613578565b5b6040519080825280601f01601f19166020018201604052801561187c5781602001600182028036833780820191505090505b509050600182016020820185865187015b808210156118e8576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184536001840193505061188d565b505060038651066001811461190457600281146119175761191f565b603d6001830353603d600283035361191f565b603d60018303535b50505080925050505b919050565b606060008203611974576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a88565b600082905060005b600082146119a657808061198f90613a57565b915050600a8261199f9190613fc4565b915061197c565b60008167ffffffffffffffff8111156119c2576119c1613578565b5b6040519080825280601f01601f1916602001820160405280156119f45781602001600182028036833780820191505090505b5090505b60008514611a8157600182611a0d9190613ff5565b9150600a85611a1c9190614029565b6030611a289190613ddf565b60f81b818381518110611a3e57611a3d6138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a7a9190613fc4565b94506119f8565b8093505050505b919050565b60008060006060611a9d86612129565b809350819450829550505050611ab48784846123bf565b60405180604001604052806040518060400160405280600a81526020017f6261636b67726f756e640000000000000000000000000000000000000000000081525081526020018281525085600081518110611b1257611b116138d0565b5b6020026020010181905250600186901c95506000806000806060611b358b6124bb565b8095508196508297508398508499505050505050611b548c86866127dc565b611b5f8c84846128c5565b60405180604001604052806040518060400160405280600381526020017f66757200000000000000000000000000000000000000000000000000000000008152508152602001828152508a600181518110611bbd57611bbc6138d0565b5b602002602001018190525060018b901c9a506000806060611bdd8e612ab8565b809350819450829550505050611bf48f8484612c33565b60405180604001604052806040518060400160405280600481526020017f65796573000000000000000000000000000000000000000000000000000000008152508152602001828152508d600281518110611c5257611c516138d0565b5b60200260200101819052508d9b5050505050505050505050509392505050565b60008060606000607f85169050600a8160ff161015611cdd57607f60408160f81b91508060f81b90506040518060400160405280600481526020017f676f6c640000000000000000000000000000000000000000000000000000000081525093509350935050611de7565b601e8160ff161015611d3b57607c60008160f81b91508060f81b90506040518060400160405280600481526020017f727562790000000000000000000000000000000000000000000000000000000081525093509350935050611de7565b603c8160ff161015611d9957600360e08160f81b91508060f81b90506040518060400160405280600781526020017f656d6572616c640000000000000000000000000000000000000000000000000081525093509350935050611de7565b6063603b8160f81b91508060f81b90506040518060400160405280600681526020017f73696c7665720000000000000000000000000000000000000000000000000000815250935093509350505b9193909250565b611dff83601b603e60028686612c7c565b611e1083601b603f60028686612c7c565b505050565b60008054905060008203611e55576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e62600084838561176b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ed983611eca6000866000611771565b611ed385612d79565b17611799565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f7a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f3f565b5060008203611fb5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fcb60008483856117c4565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff6611623565b8786866040518563ffffffff1660e01b8152600401612018949392919061405a565b6020604051808303816000875af192505050801561205457506040513d601f19601f8201168201806040525081019061205191906140bb565b60015b6120cd573d8060008114612084576040519150601f19603f3d011682016040523d82523d6000602084013e612089565b606091505b5060008151036120c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008060606000607f8516905060018160ff16101561219457607f60408160f81b91508060f81b90506040518060400160405280600481526020017f676f6c6400000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b60058160ff1610156121f257607660d68160f81b91508060f81b90506040518060400160405280600481526020017f70696e6b00000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b600a8160ff16101561225057604e60fc8160f81b91508060f81b90506040518060400160405280600481526020017f626c756500000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b60198160ff1610156122ae57605e60fc8160f81b91508060f81b90506040518060400160405280600681526020017f76696f6c65740000000000000000000000000000000000000000000000000000815250935093509350506123b8565b60238160ff16101561230c57606360558160f81b91508060f81b90506040518060400160405280600581526020017f677265656e000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b60338160ff16101561236a576063603b8160f81b91508060f81b90506040518060400160405280600481526020017f6772617900000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b607f60ff8160f81b91508060f81b90506040518060400160405280600581526020017f7768697465000000000000000000000000000000000000000000000000000000815250935093509350505b9193909250565b60005b6002806045600260456123d59190613ddf565b6123df9190613d85565b6123e99190613d85565b6123f39190613fc4565b8110156124b55781848260026124099190613d85565b8151811061241a576124196138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508284600183600261245a9190613d85565b6124649190613ddf565b81518110612475576124746138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350806124ae90613a57565b90506123c2565b50505050565b60008060008060606000607f8716905060018160ff16101561253c57605f607f6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600381526020017f696365000000000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b60058160ff1610156125ad57607a60ca6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600681526020017f6f72616e6765000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b600a8160ff16101561261e57604f60ed6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600581526020017f677265656e00000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b60148160ff16101561268f57607f60ff6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600581526020017f776869746500000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b60238160ff16101561270057605a605f6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600681526020017f76696f6c6574000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b60338160ff1610156127725760046021603060a08360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600581526020017f626c61636b00000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b603060a06000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600581526020017f62726f776e00000000000000000000000000000000000000000000000000000081525095509550955095509550505b91939590929450565b6000600790505b60308160ff161015612810576127ff84600e83602b8787612c7c565b80612809906140f5565b90506127e3565b506000603090505b603c8160ff1610156128455761283484601a8360138787612c7c565b8061283e906140f5565b9050612818565b506000603c90505b603f8160ff16101561288a5761286984601a8360048787612c7c565b6128798460298360048787612c7c565b80612883906140f5565b905061284d565b506000603090505b60368160ff1610156128bf576128ae84602d8360048787612c7c565b806128b8906140f5565b9050612892565b50505050565b6128d683600d6006602d8686612c7c565b6128e783600d602f602d8686612c7c565b6128f883600d600760288686612d89565b612909836039600760288686612d89565b61291a8360146007601b8686612d89565b61292b8360326007601b8686612d89565b61293c836019600760058686612d89565b61294d836023600760058686612d89565b61295e83602d600760058686612d89565b61296f836019600c60158686612c7c565b612980836019603060108686612d89565b612991836031603060068686612d89565b6129a28360286036600a8686612c7c565b6129b383602d603760098686612d89565b6129c483601a603f60048686612c7c565b6129d5836029603f60048686612c7c565b6129e683601e603c60048686612d89565b6129f7836028603c60048686612d89565b612a0883601f603c60098686612c7c565b612a1983602f603460028686612c7c565b612a2a83602f603560028686612c7c565b612a3b83602f603160028686612c7c565b612a4a83600f60078585612e63565b612a5983601260078585612e63565b612a6883601c60078585612e63565b612a7783602060078585612e63565b612a8683602660078585612e63565b612a9583602a60078585612e63565b612aa483603460078585612e63565b612ab383603760078585612e63565b505050565b60008060606000607f8516905060018160ff161015612b2357607c60008160f81b91508060f81b90506040518060400160405280600381526020017f726564000000000000000000000000000000000000000000000000000000000081525093509350935050612c2c565b600a8160ff161015612b81576000601f8160f81b91508060f81b90506040518060400160405280600481526020017f626c75650000000000000000000000000000000000000000000000000000000081525093509350935050612c2c565b60198160ff161015612bdf57600360e08160f81b91508060f81b90506040518060400160405280600581526020017f677265656e00000000000000000000000000000000000000000000000000000081525093509350935050612c2c565b6000808160f81b91508060f81b90506040518060400160405280600581526020017f626c61636b000000000000000000000000000000000000000000000000000000815250935093509350505b9193909250565b612c44836022603860028686612c7c565b612c55836022603960028686612c7c565b612c66836027603860028686612c7c565b612c77836027603960028686612c7c565b505050565b6000612c8e8660ff168660ff16610f46565b905060005b8460ff16811015612d6f578288826002612cad9190613d85565b84612cb89190613ddf565b81518110612cc957612cc86138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535083886001836002612d099190613d85565b612d139190613ddf565b84612d1e9190613ddf565b81518110612d2f57612d2e6138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080612d6890613a57565b9050612c93565b5050505050505050565b60006001821460e11b9050919050565b60005b8360ff16811015612e5a576000612db48760ff16838860ff16612daf9190613ddf565b610f46565b905082888281518110612dca57612dc96138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508388600183612e089190613ddf565b81518110612e1957612e186138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505080612e5390613a57565b9050612d8c565b50505050505050565b6000612e758560ff168560ff16610f46565b9050612e8386828585612e8b565b505050505050565b80848481518110612e9f57612e9e6138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508184600185612edd9190613ddf565b81518110612eee57612eed6138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050505050565b604051806040016040528060608152602001606081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f8681612f51565b8114612f9157600080fd5b50565b600081359050612fa381612f7d565b92915050565b600060208284031215612fbf57612fbe612f47565b5b6000612fcd84828501612f94565b91505092915050565b60008115159050919050565b612feb81612fd6565b82525050565b60006020820190506130066000830184612fe2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561304657808201518184015260208101905061302b565b60008484015250505050565b6000601f19601f8301169050919050565b600061306e8261300c565b6130788185613017565b9350613088818560208601613028565b61309181613052565b840191505092915050565b600060208201905081810360008301526130b68184613063565b905092915050565b6000819050919050565b6130d1816130be565b81146130dc57600080fd5b50565b6000813590506130ee816130c8565b92915050565b60006020828403121561310a57613109612f47565b5b6000613118848285016130df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061314c82613121565b9050919050565b61315c81613141565b82525050565b60006020820190506131776000830184613153565b92915050565b61318681613141565b811461319157600080fd5b50565b6000813590506131a38161317d565b92915050565b600080604083850312156131c0576131bf612f47565b5b60006131ce85828601613194565b92505060206131df858286016130df565b9150509250929050565b6131f2816130be565b82525050565b600060208201905061320d60008301846131e9565b92915050565b60008060006060848603121561322c5761322b612f47565b5b600061323a86828701613194565b935050602061324b86828701613194565b925050604061325c868287016130df565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b60006132ae8261300c565b6132b88185613292565b93506132c8818560208601613028565b6132d181613052565b840191505092915050565b600060408301600083015184820360008601526132f982826132a3565b9150506020830151848203602086015261331382826132a3565b9150508091505092915050565b600061332c83836132dc565b905092915050565b6000602082019050919050565b600061334c82613266565b6133568185613271565b93508360208202850161336885613282565b8060005b858110156133a457848403895281516133858582613320565b945061339083613334565b925060208a0199505060018101905061336c565b50829750879550505050505092915050565b600060608201905081810360008301526133d08186613063565b905081810360208301526133e48185613341565b90506133f360408301846131e9565b949350505050565b6000806040838503121561341257613411612f47565b5b6000613420858286016130df565b9250506020613431858286016130df565b9150509250929050565b60006020828403121561345157613450612f47565b5b600061345f84828501613194565b91505092915050565b600081519050919050565b600082825260208201905092915050565b600061348f82613468565b6134998185613473565b93506134a9818560208601613028565b6134b281613052565b840191505092915050565b600060608201905081810360008301526134d78186613484565b905081810360208301526134eb8185613341565b90506134fa60408301846131e9565b949350505050565b61350b81612fd6565b811461351657600080fd5b50565b60008135905061352881613502565b92915050565b6000806040838503121561354557613544612f47565b5b600061355385828601613194565b925050602061356485828601613519565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135b082613052565b810181811067ffffffffffffffff821117156135cf576135ce613578565b5b80604052505050565b60006135e2612f3d565b90506135ee82826135a7565b919050565b600067ffffffffffffffff82111561360e5761360d613578565b5b61361782613052565b9050602081019050919050565b82818337600083830152505050565b6000613646613641846135f3565b6135d8565b90508281526020810184848401111561366257613661613573565b5b61366d848285613624565b509392505050565b600082601f83011261368a5761368961356e565b5b813561369a848260208601613633565b91505092915050565b600080600080608085870312156136bd576136bc612f47565b5b60006136cb87828801613194565b94505060206136dc87828801613194565b93505060406136ed878288016130df565b925050606085013567ffffffffffffffff81111561370e5761370d612f4c565b5b61371a87828801613675565b91505092959194509250565b6000806040838503121561373d5761373c612f47565b5b600061374b85828601613194565b925050602061375c85828601613194565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137ad57607f821691505b6020821081036137c0576137bf613766565b5b50919050565b600081905092915050565b60006137dc82613468565b6137e681856137c6565b93506137f6818560208601613028565b80840191505092915050565b600061380e82856137d1565b915061381a82846137d1565b91508190509392505050565b600081905092915050565b7f646174613a696d6167652f626d703b6261736536342c00000000000000000000600082015250565b6000613867601683613826565b915061387282613831565b601682019050919050565b60006138888261300c565b6138928185613826565b93506138a2818560208601613028565b80840191505092915050565b60006138b98261385a565b91506138c5828461387d565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f7b2274726169745f74797065223a220000000000000000000000000000000000600082015250565b6000613935600f83613826565b9150613940826138ff565b600f82019050919050565b7f222c2276616c7565223a22000000000000000000000000000000000000000000600082015250565b6000613981600b83613826565b915061398c8261394b565b600b82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006139cd600283613826565b91506139d882613997565b600282019050919050565b60006139ee82613928565b91506139fa828561387d565b9150613a0582613974565b9150613a11828461387d565b9150613a1c826139c0565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a62826130be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a9457613a93613a28565b5b600182019050919050565b6000613aab828561387d565b9150613ab7828461387d565b91508190509392505050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613af9600183613826565b9150613b0482613ac3565b600182019050919050565b6000613b1b828561387d565b9150613b2682613aec565b9150613b32828461387d565b91508190509392505050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613b74600183613826565b9150613b7f82613b3e565b600182019050919050565b6000613b96828461387d565b9150613ba182613b67565b915081905092915050565b7f7b22696d616765223a2022000000000000000000000000000000000000000000600082015250565b6000613be2600b83613826565b9150613bed82613bac565b600b82019050919050565b7f222c20226e616d65223a22363941522023000000000000000000000000000000600082015250565b6000613c2e601183613826565b9150613c3982613bf8565b601182019050919050565b7f222c20226465736372697074696f6e223a2246756c6c79206f6e636861696e2060008201527f363961727320696e2072617374657228424d502920666f726d61742e222c226160208201527f747472696275746573223a000000000000000000000000000000000000000000604082015250565b6000613cc6604b83613826565b9150613cd182613c44565b604b82019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613d12600183613826565b9150613d1d82613cdc565b600182019050919050565b6000613d3382613bd5565b9150613d3f828661387d565b9150613d4a82613c21565b9150613d56828561387d565b9150613d6182613cb9565b9150613d6d828461387d565b9150613d7882613d05565b9150819050949350505050565b6000613d90826130be565b9150613d9b836130be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dd457613dd3613a28565b5b828202905092915050565b6000613dea826130be565b9150613df5836130be565b9250828201905080821115613e0d57613e0c613a28565b5b92915050565b6000819050919050565b613e2e613e29826130be565b613e13565b82525050565b6000613e408284613e1d565b60208201915081905092915050565b7f43616e277420657863656564206d617820706572206d696e7400000000000000600082015250565b6000613e85601983613017565b9150613e9082613e4f565b602082019050919050565b60006020820190508181036000830152613eb481613e78565b9050919050565b7f43616e2774206578636565642074686520636f6c6c656374696f6e2073697a65600082015250565b6000613ef1602083613017565b9150613efc82613ebb565b602082019050919050565b60006020820190508181036000830152613f2081613ee4565b9050919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000613f5d601d83613826565b9150613f6882613f27565b601d82019050919050565b6000613f7e82613f50565b9150613f8a828461387d565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fcf826130be565b9150613fda836130be565b925082613fea57613fe9613f95565b5b828204905092915050565b6000614000826130be565b915061400b836130be565b925082820390508181111561402357614022613a28565b5b92915050565b6000614034826130be565b915061403f836130be565b92508261404f5761404e613f95565b5b828206905092915050565b600060808201905061406f6000830187613153565b61407c6020830186613153565b61408960408301856131e9565b818103606083015261409b8184613484565b905095945050505050565b6000815190506140b581612f7d565b92915050565b6000602082840312156140d1576140d0612f47565b5b60006140df848285016140a6565b91505092915050565b600060ff82169050919050565b6000614100826140e8565b915060ff820361411357614112613a28565b5b60018201905091905056fe424d7c2600000000000036000000280000004500000045000000010010000000000000000000000000000000000000000000000000004142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220eeec1697643f871be6b13516b272b7a8469ca8f581a21448b8a90a196db2adc164736f6c63430008100033
Deployed Bytecode
0x6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610546578063d506fe6414610583578063e69f4a11146105ae578063e985e9c5146105d957610166565b8063a22cb465146104d6578063b88d4fde146104ff578063bcfb228d1461051b57610166565b806370a08231146103b057806377807873146103ed5780638417234d146104185780638626a0981461044357806395d89b4114610482578063a0712d68146104ad57610166565b80632607aafa116101235780632607aafa1461027357806333229c77146102b257806333acc1b0146102ef57806342842e0e1461031a5780636352211e14610336578063643d66a81461037357610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461022c57806323b872dd14610257575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612fa9565b610616565b60405161019f9190612ff1565b60405180910390f35b3480156101b457600080fd5b506101bd6106a8565b6040516101ca919061309c565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906130f4565b61073a565b6040516102079190613162565b60405180910390f35b61022a600480360381019061022591906131a9565b6107b9565b005b34801561023857600080fd5b506102416108fd565b60405161024e91906131f8565b60405180910390f35b610271600480360381019061026c9190613213565b610914565b005b34801561027f57600080fd5b5061029a600480360381019061029591906130f4565b610c36565b6040516102a9939291906133b6565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906130f4565b610cc2565b6040516102e6919061309c565b60405180910390f35b3480156102fb57600080fd5b50610304610f0e565b60405161031191906131f8565b60405180910390f35b610334600480360381019061032f9190613213565b610f14565b005b34801561034257600080fd5b5061035d600480360381019061035891906130f4565b610f34565b60405161036a9190613162565b60405180910390f35b34801561037f57600080fd5b5061039a600480360381019061039591906133fb565b610f46565b6040516103a791906131f8565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d2919061343b565b610f8b565b6040516103e491906131f8565b60405180910390f35b3480156103f957600080fd5b50610402611043565b60405161040f91906131f8565b60405180910390f35b34801561042457600080fd5b5061042d611048565b60405161043a91906131f8565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906130f4565b61104d565b604051610479939291906134bd565b60405180910390f35b34801561048e57600080fd5b50610497611214565b6040516104a4919061309c565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf91906130f4565b6112a6565b005b3480156104e257600080fd5b506104fd60048036038101906104f8919061352e565b61134e565b005b610519600480360381019061051491906136a3565b611459565b005b34801561052757600080fd5b506105306114cc565b60405161053d91906131f8565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906130f4565b6114d1565b60405161057a919061309c565b60405180910390f35b34801561058f57600080fd5b50610598611502565b6040516105a591906131f8565b60405180910390f35b3480156105ba57600080fd5b506105c3611507565b6040516105d091906131f8565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613726565b611530565b60405161060d9190612ff1565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106b790613795565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390613795565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b6000610745826115c4565b61077b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c482610f34565b90508073ffffffffffffffffffffffffffffffffffffffff166107e5611623565b73ffffffffffffffffffffffffffffffffffffffff1614610848576108118161080c611623565b611530565b610847576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061090761162b565b6001546000540303905090565b600061091f82611634565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610986576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061099284611700565b915091506109a881876109a3611623565b611727565b6109f4576109bd866109b8611623565b611530565b6109f3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a5a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a67868686600161176b565b8015610a7257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b4085610b1c888887611771565b7c020000000000000000000000000000000000000000000000000000000017611799565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bc65760006001850190506000600460008381526020019081526020016000205403610bc4576000548114610bc3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c2e86868660016117c4565b505050505050565b60608060008060405180606001604052806036815260200161411f6036913990506060610c628661104d565b809550819650829350505050610c988282604051602001610c84929190613802565b6040516020818303038152906040526117ca565b604051602001610ca891906138ae565b604051602081830303815290604052945050509193909250565b60608060606000610cd285610c36565b80935081945082955050505060008167ffffffffffffffff811115610cfa57610cf9613578565b5b604051908082528060200260200182016040528015610d2d57816020015b6060815260200190600190039081610d185790505b50905060005b8151811015610dc957838181518110610d4f57610d4e6138d0565b5b602002602001015160000151848281518110610d6e57610d6d6138d0565b5b602002602001015160200151604051602001610d8b9291906139e3565b604051602081830303815290604052828281518110610dad57610dac6138d0565b5b602002602001018190525080610dc290613a57565b9050610d33565b5060006040518060400160405280600181526020017f5b00000000000000000000000000000000000000000000000000000000000000815250905060005b8251811015610eab5760008103610e5b5781838281518110610e2c57610e2b6138d0565b5b6020026020010151604051602001610e45929190613a9f565b6040516020818303038152906040529150610e9a565b81838281518110610e6f57610e6e6138d0565b5b6020026020010151604051602001610e88929190613b0f565b60405160208183030381529060405291505b80610ea490613a57565b9050610e07565b5080604051602001610ebd9190613b8a565b6040516020818303038152906040529050610f0285610edb8961192d565b83604051602001610eee93929190613d28565b6040516020818303038152906040526117ca565b95505050505050919050565b611b3981565b610f2f83838360405180602001604052806000815250611459565b505050565b6000610f3f82611634565b9050919050565b6000600282610f559190613d85565b600284846045610f659190613d85565b610f6f9190613ddf565b610f799190613d85565b610f839190613ddf565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a81565b600281565b6060806000600a67ffffffffffffffff81111561106d5761106c613578565b5b6040519080825280602002602001820160405280156110a657816020015b611093612f23565b81526020019060019003908161108b5790505b5091506003905060026045600260456110bf9190613ddf565b6110c99190613d85565b6110d39190613d85565b67ffffffffffffffff8111156110ec576110eb613578565b5b6040519080825280601f01601f19166020018201604052801561111e5781602001600182028036833780820191505090505b5092506000846040516020016111349190613e34565b6040516020818303038152906040528051906020012060001c905061115a848285611a8d565b9050600181901c9050600060018216111561120c57600080606061117d84611c72565b80935081945082955050505060405180604001604052806040518060400160405280600781526020017f65617272696e67000000000000000000000000000000000000000000000000008152508152602001828152508686806111df90613a57565b9750815181106111f2576111f16138d0565b5b6020026020010181905250611208878484611dee565b5050505b509193909250565b60606003805461122390613795565b80601f016020809104026020016040519081016040528092919081815260200182805461124f90613795565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b600a8111156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190613e9b565b60405180910390fd5b611b39816112f66108fd565b6113009190613ddf565b1115611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613f07565b60405180910390fd5b61134b3382611e15565b50565b806007600061135b611623565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611408611623565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161144d9190612ff1565b60405180910390a35050565b611464848484610914565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114c65761148f84848484611fd0565b6114c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b604581565b60606114dc82610cc2565b6040516020016114ec9190613f73565b6040516020818303038152906040529050919050565b600281565b60026045600260456115199190613ddf565b6115239190613d85565b61152d9190613d85565b81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816115cf61162b565b111580156115de575060005482105b801561161c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061164361162b565b116116c9576000548110156116c85760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116c6575b600081036116bc576004600083600190039350838152602001908152602001600020549050611692565b80925050506116fb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611788868684612120565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b606060008251036117ec57604051806020016040528060008152509050611928565b6000604051806060016040528060408152602001614155604091399050600060036002855161181b9190613ddf565b6118259190613fc4565b60046118319190613d85565b67ffffffffffffffff81111561184a57611849613578565b5b6040519080825280601f01601f19166020018201604052801561187c5781602001600182028036833780820191505090505b509050600182016020820185865187015b808210156118e8576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184536001840193505061188d565b505060038651066001811461190457600281146119175761191f565b603d6001830353603d600283035361191f565b603d60018303535b50505080925050505b919050565b606060008203611974576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a88565b600082905060005b600082146119a657808061198f90613a57565b915050600a8261199f9190613fc4565b915061197c565b60008167ffffffffffffffff8111156119c2576119c1613578565b5b6040519080825280601f01601f1916602001820160405280156119f45781602001600182028036833780820191505090505b5090505b60008514611a8157600182611a0d9190613ff5565b9150600a85611a1c9190614029565b6030611a289190613ddf565b60f81b818381518110611a3e57611a3d6138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a7a9190613fc4565b94506119f8565b8093505050505b919050565b60008060006060611a9d86612129565b809350819450829550505050611ab48784846123bf565b60405180604001604052806040518060400160405280600a81526020017f6261636b67726f756e640000000000000000000000000000000000000000000081525081526020018281525085600081518110611b1257611b116138d0565b5b6020026020010181905250600186901c95506000806000806060611b358b6124bb565b8095508196508297508398508499505050505050611b548c86866127dc565b611b5f8c84846128c5565b60405180604001604052806040518060400160405280600381526020017f66757200000000000000000000000000000000000000000000000000000000008152508152602001828152508a600181518110611bbd57611bbc6138d0565b5b602002602001018190525060018b901c9a506000806060611bdd8e612ab8565b809350819450829550505050611bf48f8484612c33565b60405180604001604052806040518060400160405280600481526020017f65796573000000000000000000000000000000000000000000000000000000008152508152602001828152508d600281518110611c5257611c516138d0565b5b60200260200101819052508d9b5050505050505050505050509392505050565b60008060606000607f85169050600a8160ff161015611cdd57607f60408160f81b91508060f81b90506040518060400160405280600481526020017f676f6c640000000000000000000000000000000000000000000000000000000081525093509350935050611de7565b601e8160ff161015611d3b57607c60008160f81b91508060f81b90506040518060400160405280600481526020017f727562790000000000000000000000000000000000000000000000000000000081525093509350935050611de7565b603c8160ff161015611d9957600360e08160f81b91508060f81b90506040518060400160405280600781526020017f656d6572616c640000000000000000000000000000000000000000000000000081525093509350935050611de7565b6063603b8160f81b91508060f81b90506040518060400160405280600681526020017f73696c7665720000000000000000000000000000000000000000000000000000815250935093509350505b9193909250565b611dff83601b603e60028686612c7c565b611e1083601b603f60028686612c7c565b505050565b60008054905060008203611e55576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e62600084838561176b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ed983611eca6000866000611771565b611ed385612d79565b17611799565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f7a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f3f565b5060008203611fb5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fcb60008483856117c4565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff6611623565b8786866040518563ffffffff1660e01b8152600401612018949392919061405a565b6020604051808303816000875af192505050801561205457506040513d601f19601f8201168201806040525081019061205191906140bb565b60015b6120cd573d8060008114612084576040519150601f19603f3d011682016040523d82523d6000602084013e612089565b606091505b5060008151036120c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008060606000607f8516905060018160ff16101561219457607f60408160f81b91508060f81b90506040518060400160405280600481526020017f676f6c6400000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b60058160ff1610156121f257607660d68160f81b91508060f81b90506040518060400160405280600481526020017f70696e6b00000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b600a8160ff16101561225057604e60fc8160f81b91508060f81b90506040518060400160405280600481526020017f626c756500000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b60198160ff1610156122ae57605e60fc8160f81b91508060f81b90506040518060400160405280600681526020017f76696f6c65740000000000000000000000000000000000000000000000000000815250935093509350506123b8565b60238160ff16101561230c57606360558160f81b91508060f81b90506040518060400160405280600581526020017f677265656e000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b60338160ff16101561236a576063603b8160f81b91508060f81b90506040518060400160405280600481526020017f6772617900000000000000000000000000000000000000000000000000000000815250935093509350506123b8565b607f60ff8160f81b91508060f81b90506040518060400160405280600581526020017f7768697465000000000000000000000000000000000000000000000000000000815250935093509350505b9193909250565b60005b6002806045600260456123d59190613ddf565b6123df9190613d85565b6123e99190613d85565b6123f39190613fc4565b8110156124b55781848260026124099190613d85565b8151811061241a576124196138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508284600183600261245a9190613d85565b6124649190613ddf565b81518110612475576124746138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350806124ae90613a57565b90506123c2565b50505050565b60008060008060606000607f8716905060018160ff16101561253c57605f607f6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600381526020017f696365000000000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b60058160ff1610156125ad57607a60ca6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600681526020017f6f72616e6765000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b600a8160ff16101561261e57604f60ed6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600581526020017f677265656e00000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b60148160ff16101561268f57607f60ff6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600581526020017f776869746500000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b60238160ff16101561270057605a605f6000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600681526020017f76696f6c6574000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b60338160ff1610156127725760046021603060a08360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600581526020017f626c61636b00000000000000000000000000000000000000000000000000000081525095509550955095509550506127d3565b603060a06000808360f81b93508260f81b92508160f81b91508060f81b90506040518060400160405280600581526020017f62726f776e00000000000000000000000000000000000000000000000000000081525095509550955095509550505b91939590929450565b6000600790505b60308160ff161015612810576127ff84600e83602b8787612c7c565b80612809906140f5565b90506127e3565b506000603090505b603c8160ff1610156128455761283484601a8360138787612c7c565b8061283e906140f5565b9050612818565b506000603c90505b603f8160ff16101561288a5761286984601a8360048787612c7c565b6128798460298360048787612c7c565b80612883906140f5565b905061284d565b506000603090505b60368160ff1610156128bf576128ae84602d8360048787612c7c565b806128b8906140f5565b9050612892565b50505050565b6128d683600d6006602d8686612c7c565b6128e783600d602f602d8686612c7c565b6128f883600d600760288686612d89565b612909836039600760288686612d89565b61291a8360146007601b8686612d89565b61292b8360326007601b8686612d89565b61293c836019600760058686612d89565b61294d836023600760058686612d89565b61295e83602d600760058686612d89565b61296f836019600c60158686612c7c565b612980836019603060108686612d89565b612991836031603060068686612d89565b6129a28360286036600a8686612c7c565b6129b383602d603760098686612d89565b6129c483601a603f60048686612c7c565b6129d5836029603f60048686612c7c565b6129e683601e603c60048686612d89565b6129f7836028603c60048686612d89565b612a0883601f603c60098686612c7c565b612a1983602f603460028686612c7c565b612a2a83602f603560028686612c7c565b612a3b83602f603160028686612c7c565b612a4a83600f60078585612e63565b612a5983601260078585612e63565b612a6883601c60078585612e63565b612a7783602060078585612e63565b612a8683602660078585612e63565b612a9583602a60078585612e63565b612aa483603460078585612e63565b612ab383603760078585612e63565b505050565b60008060606000607f8516905060018160ff161015612b2357607c60008160f81b91508060f81b90506040518060400160405280600381526020017f726564000000000000000000000000000000000000000000000000000000000081525093509350935050612c2c565b600a8160ff161015612b81576000601f8160f81b91508060f81b90506040518060400160405280600481526020017f626c75650000000000000000000000000000000000000000000000000000000081525093509350935050612c2c565b60198160ff161015612bdf57600360e08160f81b91508060f81b90506040518060400160405280600581526020017f677265656e00000000000000000000000000000000000000000000000000000081525093509350935050612c2c565b6000808160f81b91508060f81b90506040518060400160405280600581526020017f626c61636b000000000000000000000000000000000000000000000000000000815250935093509350505b9193909250565b612c44836022603860028686612c7c565b612c55836022603960028686612c7c565b612c66836027603860028686612c7c565b612c77836027603960028686612c7c565b505050565b6000612c8e8660ff168660ff16610f46565b905060005b8460ff16811015612d6f578288826002612cad9190613d85565b84612cb89190613ddf565b81518110612cc957612cc86138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535083886001836002612d099190613d85565b612d139190613ddf565b84612d1e9190613ddf565b81518110612d2f57612d2e6138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080612d6890613a57565b9050612c93565b5050505050505050565b60006001821460e11b9050919050565b60005b8360ff16811015612e5a576000612db48760ff16838860ff16612daf9190613ddf565b610f46565b905082888281518110612dca57612dc96138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508388600183612e089190613ddf565b81518110612e1957612e186138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505080612e5390613a57565b9050612d8c565b50505050505050565b6000612e758560ff168560ff16610f46565b9050612e8386828585612e8b565b505050505050565b80848481518110612e9f57612e9e6138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508184600185612edd9190613ddf565b81518110612eee57612eed6138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050505050565b604051806040016040528060608152602001606081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f8681612f51565b8114612f9157600080fd5b50565b600081359050612fa381612f7d565b92915050565b600060208284031215612fbf57612fbe612f47565b5b6000612fcd84828501612f94565b91505092915050565b60008115159050919050565b612feb81612fd6565b82525050565b60006020820190506130066000830184612fe2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561304657808201518184015260208101905061302b565b60008484015250505050565b6000601f19601f8301169050919050565b600061306e8261300c565b6130788185613017565b9350613088818560208601613028565b61309181613052565b840191505092915050565b600060208201905081810360008301526130b68184613063565b905092915050565b6000819050919050565b6130d1816130be565b81146130dc57600080fd5b50565b6000813590506130ee816130c8565b92915050565b60006020828403121561310a57613109612f47565b5b6000613118848285016130df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061314c82613121565b9050919050565b61315c81613141565b82525050565b60006020820190506131776000830184613153565b92915050565b61318681613141565b811461319157600080fd5b50565b6000813590506131a38161317d565b92915050565b600080604083850312156131c0576131bf612f47565b5b60006131ce85828601613194565b92505060206131df858286016130df565b9150509250929050565b6131f2816130be565b82525050565b600060208201905061320d60008301846131e9565b92915050565b60008060006060848603121561322c5761322b612f47565b5b600061323a86828701613194565b935050602061324b86828701613194565b925050604061325c868287016130df565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b60006132ae8261300c565b6132b88185613292565b93506132c8818560208601613028565b6132d181613052565b840191505092915050565b600060408301600083015184820360008601526132f982826132a3565b9150506020830151848203602086015261331382826132a3565b9150508091505092915050565b600061332c83836132dc565b905092915050565b6000602082019050919050565b600061334c82613266565b6133568185613271565b93508360208202850161336885613282565b8060005b858110156133a457848403895281516133858582613320565b945061339083613334565b925060208a0199505060018101905061336c565b50829750879550505050505092915050565b600060608201905081810360008301526133d08186613063565b905081810360208301526133e48185613341565b90506133f360408301846131e9565b949350505050565b6000806040838503121561341257613411612f47565b5b6000613420858286016130df565b9250506020613431858286016130df565b9150509250929050565b60006020828403121561345157613450612f47565b5b600061345f84828501613194565b91505092915050565b600081519050919050565b600082825260208201905092915050565b600061348f82613468565b6134998185613473565b93506134a9818560208601613028565b6134b281613052565b840191505092915050565b600060608201905081810360008301526134d78186613484565b905081810360208301526134eb8185613341565b90506134fa60408301846131e9565b949350505050565b61350b81612fd6565b811461351657600080fd5b50565b60008135905061352881613502565b92915050565b6000806040838503121561354557613544612f47565b5b600061355385828601613194565b925050602061356485828601613519565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135b082613052565b810181811067ffffffffffffffff821117156135cf576135ce613578565b5b80604052505050565b60006135e2612f3d565b90506135ee82826135a7565b919050565b600067ffffffffffffffff82111561360e5761360d613578565b5b61361782613052565b9050602081019050919050565b82818337600083830152505050565b6000613646613641846135f3565b6135d8565b90508281526020810184848401111561366257613661613573565b5b61366d848285613624565b509392505050565b600082601f83011261368a5761368961356e565b5b813561369a848260208601613633565b91505092915050565b600080600080608085870312156136bd576136bc612f47565b5b60006136cb87828801613194565b94505060206136dc87828801613194565b93505060406136ed878288016130df565b925050606085013567ffffffffffffffff81111561370e5761370d612f4c565b5b61371a87828801613675565b91505092959194509250565b6000806040838503121561373d5761373c612f47565b5b600061374b85828601613194565b925050602061375c85828601613194565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137ad57607f821691505b6020821081036137c0576137bf613766565b5b50919050565b600081905092915050565b60006137dc82613468565b6137e681856137c6565b93506137f6818560208601613028565b80840191505092915050565b600061380e82856137d1565b915061381a82846137d1565b91508190509392505050565b600081905092915050565b7f646174613a696d6167652f626d703b6261736536342c00000000000000000000600082015250565b6000613867601683613826565b915061387282613831565b601682019050919050565b60006138888261300c565b6138928185613826565b93506138a2818560208601613028565b80840191505092915050565b60006138b98261385a565b91506138c5828461387d565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f7b2274726169745f74797065223a220000000000000000000000000000000000600082015250565b6000613935600f83613826565b9150613940826138ff565b600f82019050919050565b7f222c2276616c7565223a22000000000000000000000000000000000000000000600082015250565b6000613981600b83613826565b915061398c8261394b565b600b82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006139cd600283613826565b91506139d882613997565b600282019050919050565b60006139ee82613928565b91506139fa828561387d565b9150613a0582613974565b9150613a11828461387d565b9150613a1c826139c0565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a62826130be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a9457613a93613a28565b5b600182019050919050565b6000613aab828561387d565b9150613ab7828461387d565b91508190509392505050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613af9600183613826565b9150613b0482613ac3565b600182019050919050565b6000613b1b828561387d565b9150613b2682613aec565b9150613b32828461387d565b91508190509392505050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613b74600183613826565b9150613b7f82613b3e565b600182019050919050565b6000613b96828461387d565b9150613ba182613b67565b915081905092915050565b7f7b22696d616765223a2022000000000000000000000000000000000000000000600082015250565b6000613be2600b83613826565b9150613bed82613bac565b600b82019050919050565b7f222c20226e616d65223a22363941522023000000000000000000000000000000600082015250565b6000613c2e601183613826565b9150613c3982613bf8565b601182019050919050565b7f222c20226465736372697074696f6e223a2246756c6c79206f6e636861696e2060008201527f363961727320696e2072617374657228424d502920666f726d61742e222c226160208201527f747472696275746573223a000000000000000000000000000000000000000000604082015250565b6000613cc6604b83613826565b9150613cd182613c44565b604b82019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613d12600183613826565b9150613d1d82613cdc565b600182019050919050565b6000613d3382613bd5565b9150613d3f828661387d565b9150613d4a82613c21565b9150613d56828561387d565b9150613d6182613cb9565b9150613d6d828461387d565b9150613d7882613d05565b9150819050949350505050565b6000613d90826130be565b9150613d9b836130be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dd457613dd3613a28565b5b828202905092915050565b6000613dea826130be565b9150613df5836130be565b9250828201905080821115613e0d57613e0c613a28565b5b92915050565b6000819050919050565b613e2e613e29826130be565b613e13565b82525050565b6000613e408284613e1d565b60208201915081905092915050565b7f43616e277420657863656564206d617820706572206d696e7400000000000000600082015250565b6000613e85601983613017565b9150613e9082613e4f565b602082019050919050565b60006020820190508181036000830152613eb481613e78565b9050919050565b7f43616e2774206578636565642074686520636f6c6c656374696f6e2073697a65600082015250565b6000613ef1602083613017565b9150613efc82613ebb565b602082019050919050565b60006020820190508181036000830152613f2081613ee4565b9050919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000613f5d601d83613826565b9150613f6882613f27565b601d82019050919050565b6000613f7e82613f50565b9150613f8a828461387d565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fcf826130be565b9150613fda836130be565b925082613fea57613fe9613f95565b5b828204905092915050565b6000614000826130be565b915061400b836130be565b925082820390508181111561402357614022613a28565b5b92915050565b6000614034826130be565b915061403f836130be565b92508261404f5761404e613f95565b5b828206905092915050565b600060808201905061406f6000830187613153565b61407c6020830186613153565b61408960408301856131e9565b818103606083015261409b8184613484565b905095945050505050565b6000815190506140b581612f7d565b92915050565b6000602082840312156140d1576140d0612f47565b5b60006140df848285016140a6565b91505092915050565b600060ff82169050919050565b6000614100826140e8565b915060ff820361411357614112613a28565b5b60018201905091905056fe424d7c2600000000000036000000280000004500000045000000010010000000000000000000000000000000000000000000000000004142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220eeec1697643f871be6b13516b272b7a8469ca8f581a21448b8a90a196db2adc164736f6c63430008100033
Deployed Bytecode Sourcemap
57317:11846:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24214:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25116:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31607:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31040:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20867:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35246:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59832:768;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;58536:1288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57615:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38167:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26509:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68998:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22051:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57664:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57401:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60608:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;25292:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58019:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32165:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38958:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57356:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58307:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57448:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57499:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32556:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24214:639;24299:4;24638:10;24623:25;;:11;:25;;;;:102;;;;24715:10;24700:25;;:11;:25;;;;24623:102;:179;;;;24792:10;24777:25;;:11;:25;;;;24623:179;24603:199;;24214:639;;;:::o;25116:100::-;25170:13;25203:5;25196:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25116:100;:::o;31607:218::-;31683:7;31708:16;31716:7;31708;:16::i;:::-;31703:64;;31733:34;;;;;;;;;;;;;;31703:64;31787:15;:24;31803:7;31787:24;;;;;;;;;;;:30;;;;;;;;;;;;31780:37;;31607:218;;;:::o;31040:408::-;31129:13;31145:16;31153:7;31145;:16::i;:::-;31129:32;;31201:5;31178:28;;:19;:17;:19::i;:::-;:28;;;31174:175;;31226:44;31243:5;31250:19;:17;:19::i;:::-;31226:16;:44::i;:::-;31221:128;;31298:35;;;;;;;;;;;;;;31221:128;31174:175;31394:2;31361:15;:24;31377:7;31361:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31432:7;31428:2;31412:28;;31421:5;31412:28;;;;;;;;;;;;31118:330;31040:408;;:::o;20867:323::-;20928:7;21156:15;:13;:15::i;:::-;21141:12;;21125:13;;:28;:46;21118:53;;20867:323;:::o;35246:2825::-;35388:27;35418;35437:7;35418:18;:27::i;:::-;35388:57;;35503:4;35462:45;;35478:19;35462:45;;;35458:86;;35516:28;;;;;;;;;;;;;;35458:86;35558:27;35587:23;35614:35;35641:7;35614:26;:35::i;:::-;35557:92;;;;35749:68;35774:15;35791:4;35797:19;:17;:19::i;:::-;35749:24;:68::i;:::-;35744:180;;35837:43;35854:4;35860:19;:17;:19::i;:::-;35837:16;:43::i;:::-;35832:92;;35889:35;;;;;;;;;;;;;;35832:92;35744:180;35955:1;35941:16;;:2;:16;;;35937:52;;35966:23;;;;;;;;;;;;;;35937:52;36002:43;36024:4;36030:2;36034:7;36043:1;36002:21;:43::i;:::-;36138:15;36135:160;;;36278:1;36257:19;36250:30;36135:160;36675:18;:24;36694:4;36675:24;;;;;;;;;;;;;;;;36673:26;;;;;;;;;;;;36744:18;:22;36763:2;36744:22;;;;;;;;;;;;;;;;36742:24;;;;;;;;;;;37066:146;37103:2;37152:45;37167:4;37173:2;37177:19;37152:14;:45::i;:::-;17266:8;37124:73;37066:18;:146::i;:::-;37037:17;:26;37055:7;37037:26;;;;;;;;;;;:175;;;;37383:1;17266:8;37332:19;:47;:52;37328:627;;37405:19;37437:1;37427:7;:11;37405:33;;37594:1;37560:17;:30;37578:11;37560:30;;;;;;;;;;;;:35;37556:384;;37698:13;;37683:11;:28;37679:242;;37878:19;37845:17;:30;37863:11;37845:30;;;;;;;;;;;:52;;;;37679:242;37556:384;37386:569;37328:627;38002:7;37998:2;37983:27;;37992:4;37983:27;;;;;;;;;;;;38021:42;38042:4;38048:2;38052:7;38061:1;38021:20;:42::i;:::-;35377:2694;;;35246:2825;;;:::o;59832:768::-;59882:19;59903:29;59934:11;59971:19;:378;;;;;;;;;;;;;;;;;;;60363:23;60448:22;60464:5;60448:15;:22::i;:::-;60413:57;;;;;;;;;;;;60539:51;60570:6;60578:10;60553:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60539:13;:51::i;:::-;60496:95;;;;;;;;:::i;:::-;;;;;;;;;;;;;60481:111;;59952:648;;59832:768;;;;;:::o;58536:1288::-;58590:22;58630:19;58660:29;58700:11;58752:15;58761:5;58752:8;:15::i;:::-;58722:45;;;;;;;;;;;;58780:23;58819:6;58806:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58780:46;;58844:6;58839:237;58860:7;:14;58856:1;:18;58839:237;;;58987:10;58998:1;58987:13;;;;;;;;:::i;:::-;;;;;;;;:19;;;59025:10;59036:1;59025:13;;;;;;;;:::i;:::-;;;;;;;;:19;;;58949:102;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58929:7;58937:1;58929:10;;;;;;;;:::i;:::-;;;;;;;:123;;;;58876:3;;;;:::i;:::-;;;58839:237;;;;59088:28;:34;;;;;;;;;;;;;;;;;;;59138:6;59133:345;59154:7;:14;59150:1;:18;59133:345;;;59208:1;59203;:6;59199:268;;59284:14;59299:7;59307:1;59299:10;;;;;;;;:::i;:::-;;;;;;;;59267:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59243:68;;59199:268;;;59420:14;59439:7;59447:1;59439:10;;;;;;;;:::i;:::-;;;;;;;;59403:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59379:72;;59199:268;59170:3;;;;:::i;:::-;;;59133:345;;;;59529:14;59512:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;59488:61;;59573:243;59654:5;59686:23;59703:5;59686:16;:23::i;:::-;59796:14;59601:214;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59573:13;:243::i;:::-;59562:254;;58619:1205;;;;;58536:1288;;;:::o;57615:42::-;57653:4;57615:42;:::o;38167:193::-;38313:39;38330:4;38336:2;38340:7;38313:39;;;;;;;;;;;;:16;:39::i;:::-;38167:193;;;:::o;26509:152::-;26581:7;26624:27;26643:7;26624:18;:27::i;:::-;26601:52;;26509:152;;;:::o;68998:150::-;69057:9;57440:1;69121;:19;;;;:::i;:::-;69117:1;69112;69108;57392:2;69093:16;;;;:::i;:::-;:20;;;;:::i;:::-;69092:26;;;;:::i;:::-;:48;;;;:::i;:::-;69085:55;;68998:150;;;;:::o;22051:233::-;22123:7;22164:1;22147:19;;:5;:19;;;22143:60;;22175:28;;;;;;;;;;;;;;22143:60;16210:13;22221:18;:25;22240:5;22221:25;;;;;;;;;;;;;;;;:55;22214:62;;22051:233;;;:::o;57664:38::-;57700:2;57664:38;:::o;57401:40::-;57440:1;57401:40;:::o;60608:792::-;60665:20;60687:29;60718:11;60792:2;60776:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;60763:32;;60823:1;60814:10;;57491:1;57392:2;57440:1;57392:2;57536:28;;;;:::i;:::-;57535:45;;;;:::i;:::-;:67;;;;:::i;:::-;60845:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60835:33;;60885:9;60929:5;60912:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;60902:34;;;;;;60897:40;;60885:52;;60957:45;60976:7;60985:4;60991:10;60957:18;:45::i;:::-;60950:52;;61028:1;61020:4;:9;;61013:16;;61063:1;61059;61052:4;:8;:12;61048:332;;;61103:10;61128;61161:21;61219;61235:4;61219:15;:21::i;:::-;61197:43;;;;;;;;;;;;61278:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61314:7;61278:45;;;61255:10;61266:8;;;;;:::i;:::-;;;61255:20;;;;;;;;:::i;:::-;;;;;;;:68;;;;61338:30;61350:7;61359:3;61364;61338:11;:30::i;:::-;61076:304;;;61048:332;60736:664;60608:792;;;;;:::o;25292:104::-;25348:13;25381:7;25374:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25292:104;:::o;58019:280::-;57700:2;58099:8;:24;;58091:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57653:4;58188:8;58172:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;58164:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;58264:27;58270:10;58282:8;58264:5;:27::i;:::-;58019:280;:::o;32165:234::-;32312:8;32260:18;:39;32279:19;:17;:19::i;:::-;32260:39;;;;;;;;;;;;;;;:49;32300:8;32260:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32372:8;32336:55;;32351:19;:17;:19::i;:::-;32336:55;;;32382:8;32336:55;;;;;;:::i;:::-;;;;;;;;32165:234;;:::o;38958:407::-;39133:31;39146:4;39152:2;39156:7;39133:12;:31::i;:::-;39197:1;39179:2;:14;;;:19;39175:183;;39218:56;39249:4;39255:2;39259:7;39268:5;39218:30;:56::i;:::-;39213:145;;39302:40;;;;;;;;;;;;;;39213:145;39175:183;38958:407;;;;:::o;57356:38::-;57392:2;57356:38;:::o;58307:221::-;58375:30;58499:19;58512:5;58499:12;:19::i;:::-;58449:70;;;;;;;;:::i;:::-;;;;;;;;;;;;;58423:97;;58307:221;;;:::o;57448:44::-;57491:1;57448:44;:::o;57499:103::-;57491:1;57392:2;57440:1;57392:2;57536:28;;;;:::i;:::-;57535:45;;;;:::i;:::-;:67;;;;:::i;:::-;57499:103;:::o;32556:164::-;32653:4;32677:18;:25;32696:5;32677:25;;;;;;;;;;;;;;;:35;32703:8;32677:35;;;;;;;;;;;;;;;;;;;;;;;;;32670:42;;32556:164;;;;:::o;32978:282::-;33043:4;33099:7;33080:15;:13;:15::i;:::-;:26;;:66;;;;;33133:13;;33123:7;:23;33080:66;:153;;;;;33232:1;16986:8;33184:17;:26;33202:7;33184:26;;;;;;;;;;;;:44;:49;33080:153;33060:173;;32978:282;;;:::o;55286:105::-;55346:7;55373:10;55366:17;;55286:105;:::o;57909:102::-;57975:7;58002:1;57995:8;;57909:102;:::o;27664:1275::-;27731:7;27751:12;27766:7;27751:22;;27834:4;27815:15;:13;:15::i;:::-;:23;27811:1061;;27868:13;;27861:4;:20;27857:1015;;;27906:14;27923:17;:23;27941:4;27923:23;;;;;;;;;;;;27906:40;;28040:1;16986:8;28012:6;:24;:29;28008:845;;28677:113;28694:1;28684:6;:11;28677:113;;28737:17;:25;28755:6;;;;;;;28737:25;;;;;;;;;;;;28728:34;;28677:113;;;28823:6;28816:13;;;;;;28008:845;27883:989;27857:1015;27811:1061;28900:31;;;;;;;;;;;;;;27664:1275;;;;:::o;34141:485::-;34243:27;34272:23;34313:38;34354:15;:24;34370:7;34354:24;;;;;;;;;;;34313:65;;34531:18;34508:41;;34588:19;34582:26;34563:45;;34493:126;34141:485;;;:::o;33369:659::-;33518:11;33683:16;33676:5;33672:28;33663:37;;33843:16;33832:9;33828:32;33815:45;;33993:15;33982:9;33979:30;33971:5;33960:9;33957:20;33954:56;33944:66;;33369:659;;;;;:::o;40027:159::-;;;;;:::o;54595:311::-;54730:7;54750:16;17390:3;54776:19;:41;;54750:68;;17390:3;54844:31;54855:4;54861:2;54865:9;54844:10;:31::i;:::-;54836:40;;:62;;54829:69;;;54595:311;;;;;:::o;29487:450::-;29567:14;29735:16;29728:5;29724:28;29715:37;;29912:5;29898:11;29873:23;29869:41;29866:52;29859:5;29856:63;29846:73;;29487:450;;;;:::o;40851:158::-;;;;;:::o;2670:3053::-;2728:13;2980:1;2965:4;:11;:16;2961:31;;2983:9;;;;;;;;;;;;;;;;2961:31;3045:19;3067:6;;;;;;;;;;;;;;;;;3045:28;;3484:20;3543:1;3538;3524:4;:11;:15;;;;:::i;:::-;3523:21;;;;:::i;:::-;3518:1;:27;;;;:::i;:::-;3507:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3484:62;;3682:1;3675:5;3671:13;3786:2;3778:6;3774:15;3897:4;3949;3943:11;3937:4;3933:22;3859:1432;3983:6;3974:7;3971:19;3859:1432;;;4089:1;4080:7;4076:15;4065:26;;4128:7;4122:14;4781:4;4773:5;4769:2;4765:14;4761:25;4751:8;4747:40;4741:47;4730:9;4722:67;4835:1;4824:9;4820:17;4807:30;;4927:4;4919:5;4915:2;4911:14;4907:25;4897:8;4893:40;4887:47;4876:9;4868:67;4981:1;4970:9;4966:17;4953:30;;5072:4;5064:5;5061:1;5057:13;5053:24;5043:8;5039:39;5033:46;5022:9;5014:66;5126:1;5115:9;5111:17;5098:30;;5209:4;5202:5;5198:16;5188:8;5184:31;5178:38;5167:9;5159:58;5263:1;5252:9;5248:17;5235:30;;4010:1281;3859:1432;;;3863:107;;5453:1;5446:4;5440:11;5436:19;5474:1;5469:123;;;;5611:1;5606:73;;;;5429:250;;5469:123;5522:4;5518:1;5507:9;5503:17;5495:32;5572:4;5568:1;5557:9;5553:17;5545:32;5469:123;;5606:73;5659:4;5655:1;5644:9;5640:17;5632:32;5429:250;;3568:2122;;5709:6;5702:13;;;;2670:3053;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;61408:1079::-;61522:12;61552:10;61573;61607:24;61668;61687:4;61668:18;:24::i;:::-;61645:47;;;;;;;;;;;;61712:38;61732:7;61741:3;61746;61712:19;:38::i;:::-;61779:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61818:10;61779:51;;;61763:10;61774:1;61763:13;;;;;;;;:::i;:::-;;;;;;;:67;;;;61858:1;61850:4;:9;;61843:16;;61872:10;61893;61914;61935;61956:17;62020;62032:4;62020:11;:17::i;:::-;61992:45;;;;;;;;;;;;;;;;;;;;62048:31;62061:7;62070:3;62075;62048:12;:31::i;:::-;62096:34;62112:7;62121:3;62126;62096:15;:34::i;:::-;62157:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62189:3;62157:37;;;62141:10;62152:1;62141:13;;;;;;;;:::i;:::-;;;;;;;:53;;;;62222:1;62214:4;:9;;62207:16;;62236:10;62257;62280:18;62334:17;62346:4;62334:11;:17::i;:::-;62315:36;;;;;;;;;;;;62362:27;62371:7;62380:3;62385;62362:8;:27::i;:::-;62416:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62449:4;62416:39;;;62400:10;62411:1;62400:13;;;;;;;;:::i;:::-;;;;;;;:55;;;;62475:4;62468:11;;;;;;;;;;;;;61408:1079;;;;;:::o;67552:375::-;67609:9;67620;67631:18;67667:12;67695:3;67688:4;:10;67667:32;;67733:2;67724:6;:11;;;67720:44;;;67745:4;67751;67737:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67720:44;67788:2;67779:6;:11;;;67775:44;;;67800:4;67806;67792:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67775:44;67843:2;67834:6;:11;;;67830:47;;;67855:4;67861;67847:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67830:47;67898:4;67904;67890:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67552:375;;;;;;:::o;65715:232::-;65818:42;65833:7;65842:2;65846;65850:1;65853:2;65857;65818:14;:42::i;:::-;65880;65895:7;65904:2;65908;65912:1;65915:2;65919;65880:14;:42::i;:::-;65715:232;;;:::o;42627:2966::-;42700:20;42723:13;;42700:36;;42763:1;42751:8;:13;42747:44;;42773:18;;;;;;;;;;;;;;42747:44;42804:61;42834:1;42838:2;42842:12;42856:8;42804:21;:61::i;:::-;43348:1;16348:2;43318:1;:26;;43317:32;43305:8;:45;43279:18;:22;43298:2;43279:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43627:139;43664:2;43718:33;43741:1;43745:2;43749:1;43718:14;:33::i;:::-;43685:30;43706:8;43685:20;:30::i;:::-;:66;43627:18;:139::i;:::-;43593:17;:31;43611:12;43593:31;;;;;;;;;;;:173;;;;43783:16;43814:11;43843:8;43828:12;:23;43814:37;;44364:16;44360:2;44356:25;44344:37;;44736:12;44696:8;44655:1;44593:25;44534:1;44473;44446:335;45107:1;45093:12;45089:20;45047:346;45148:3;45139:7;45136:16;45047:346;;45366:7;45356:8;45353:1;45326:25;45323:1;45320;45315:59;45201:1;45192:7;45188:15;45177:26;;45047:346;;;45051:77;45438:1;45426:8;:13;45422:45;;45448:19;;;;;;;;;;;;;;45422:45;45500:3;45484:13;:19;;;;43053:2462;;45525:60;45554:1;45558:2;45562:12;45576:8;45525:20;:60::i;:::-;42689:2904;42627:2966;;:::o;41449:716::-;41612:4;41658:2;41633:45;;;41679:19;:17;:19::i;:::-;41700:4;41706:7;41715:5;41633:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41629:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41933:1;41916:6;:13;:18;41912:235;;41962:40;;;;;;;;;;;;;;41912:235;42105:6;42099:13;42090:6;42086:2;42082:15;42075:38;41629:529;41802:54;;;41792:64;;;:6;:64;;;;41785:71;;;41449:716;;;;;;:::o;54296:147::-;54433:6;54296:147;;;;;:::o;65955:542::-;66015:9;66026;66037:18;66073:12;66101:3;66094:4;:10;66073:32;;66132:1;66122:6;:11;;;66118:44;;;66143:4;66149;66135:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66118:44;66187:1;66177:6;:11;;;66173:44;;;66198:4;66204;66190:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66173:44;66241:2;66232:6;:11;;;66228:44;;;66253:4;66259;66245:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66228:44;66296:2;66287:6;:11;;;66283:46;;;66308:4;66314;66300:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66283:46;66353:2;66344:6;:11;;;66340:45;;;66365:4;66371;66357:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66340:45;66409:2;66400:6;:11;;;66396:44;;;66421:4;66427;66413:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66396:44;66461:4;66467;66453:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65955:542;;;;;;:::o;62495:240::-;62602:6;62597:131;62633:1;57491;57392:2;57440:1;57392:2;57536:28;;;;:::i;:::-;57535:45;;;;:::i;:::-;:67;;;;:::i;:::-;62618:16;;;;:::i;:::-;62614:1;:20;62597:131;;;62680:2;62665:7;62675:1;62673;:3;;;;:::i;:::-;62665:12;;;;;;;;:::i;:::-;;;;;:17;;;;;;;;;;;62714:2;62697:7;62709:1;62707;62705;:3;;;;:::i;:::-;:5;;;;:::i;:::-;62697:14;;;;;;;;:::i;:::-;;;;;:19;;;;;;;;;;;62636:3;;;;:::i;:::-;;;62597:131;;;;62495:240;;;:::o;66505:654::-;66558:10;66570;66582;66594;66606:18;66642:12;66670:3;66663:4;:10;66642:32;;66701:1;66691:6;:11;;;66687:55;;;66712:4;66718;66724;66730;66704:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66687:55;66767:1;66757:6;:11;;;66753:58;;;66778:4;66784;66790;66796;66770:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66753:58;66835:2;66826:6;:11;;;66822:57;;;66847:4;66853;66859;66865;66839:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66822:57;66911:2;66902:6;:11;;;66898:57;;;66923:4;66929;66935;66941;66915:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66898:57;66987:2;66978:6;:11;;;66974:58;;;66999:4;67005;67011;67017;66991:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66974:58;67056:2;67047:6;:11;;;67043:57;;;67068:4;67074;67080;67086;67060:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67043:57;67121:4;67127;67133:3;67138;67113:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66505:654;;;;;;;;:::o;62749:687::-;62857:7;62867:1;62857:11;;62852:109;62874:2;62870:1;:6;;;62852:109;;;62907:42;62922:7;62931:2;62935:1;62938:2;62942;62946;62907:14;:42::i;:::-;62878:3;;;;:::i;:::-;;;62852:109;;;;62986:7;62996:2;62986:12;;62981:110;63004:2;63000:1;:6;;;62981:110;;;63037:42;63052:7;63061:2;63065:1;63068:2;63072;63076;63037:14;:42::i;:::-;63008:3;;;;:::i;:::-;;;62981:110;;;;63124:7;63134:2;63124:12;;63119:165;63142:2;63138:1;:6;;;63119:165;;;63175:41;63190:7;63199:2;63203:1;63206;63209:2;63213;63175:14;:41::i;:::-;63231;63246:7;63255:2;63259:1;63262;63265:2;63269;63231:14;:41::i;:::-;63146:3;;;;:::i;:::-;;;63119:165;;;;63317:7;63327:2;63317:12;;63312:109;63335:2;63331:1;:6;;;63312:109;;;63368:41;63383:7;63392:2;63396:1;63399;63402:2;63406;63368:14;:41::i;:::-;63339:3;;;;:::i;:::-;;;63312:109;;;;62749:687;;;:::o;63444:1918::-;63558:42;63573:7;63582:2;63586:1;63589:2;63593;63597;63558:14;:42::i;:::-;63619:43;63634:7;63643:2;63647;63651;63655;63659;63619:14;:43::i;:::-;63689:40;63702:7;63711:2;63715:1;63718:2;63722;63726;63689:12;:40::i;:::-;63758;63771:7;63780:2;63784:1;63787:2;63791;63795;63758:12;:40::i;:::-;63827;63840:7;63849:2;63853:1;63856:2;63860;63864;63827:12;:40::i;:::-;63896;63909:7;63918:2;63922:1;63925:2;63929;63933;63896:12;:40::i;:::-;63965:39;63978:7;63987:2;63991:1;63994;63997:2;64001;63965:12;:39::i;:::-;64033;64046:7;64055:2;64059:1;64062;64065:2;64069;64033:12;:39::i;:::-;64101;64114:7;64123:2;64127:1;64130;64133:2;64137;64101:12;:39::i;:::-;64169:43;64184:7;64193:2;64197;64201;64205;64209;64169:14;:43::i;:::-;64231:41;64244:7;64253:2;64257;64261;64265;64269;64231:12;:41::i;:::-;64294:40;64307:7;64316:2;64320;64324:1;64327:2;64331;64294:12;:40::i;:::-;64356:43;64371:7;64380:2;64384;64388;64392;64396;64356:14;:43::i;:::-;64419:40;64432:7;64441:2;64445;64449:1;64452:2;64456;64419:12;:40::i;:::-;64481:42;64496:7;64505:2;64509;64513:1;64516:2;64520;64481:14;:42::i;:::-;64543;64558:7;64567:2;64571;64575:1;64578:2;64582;64543:14;:42::i;:::-;64605:40;64618:7;64627:2;64631;64635:1;64638:2;64642;64605:12;:40::i;:::-;64667;64680:7;64689:2;64693;64697:1;64700:2;64704;64667:12;:40::i;:::-;64729:42;64744:7;64753:2;64757;64761:1;64764:2;64768;64729:14;:42::i;:::-;64801;64816:7;64825:2;64829;64833:1;64836:2;64840;64801:14;:42::i;:::-;64855;64870:7;64879:2;64883;64887:1;64890:2;64894;64855:14;:42::i;:::-;64917;64932:7;64941:2;64945;64949:1;64952:2;64956;64917:14;:42::i;:::-;64981:37;64995:7;65004:2;65008:1;65011:2;65015;64981:13;:37::i;:::-;65029;65043:7;65052:2;65056:1;65059:2;65063;65029:13;:37::i;:::-;65077;65091:7;65100:2;65104:1;65107:2;65111;65077:13;:37::i;:::-;65125;65139:7;65148:2;65152:1;65155:2;65159;65125:13;:37::i;:::-;65173;65187:7;65196:2;65200:1;65203:2;65207;65173:13;:37::i;:::-;65221;65235:7;65244:2;65248:1;65251:2;65255;65221:13;:37::i;:::-;65269;65283:7;65292:2;65296:1;65299:2;65303;65269:13;:37::i;:::-;65317;65331:7;65340:2;65344:1;65347:2;65351;65317:13;:37::i;:::-;63444:1918;;;:::o;67167:377::-;67220:9;67231;67242:18;67278:12;67306:3;67299:4;:10;67278:32;;67337:1;67327:6;:11;;;67323:43;;;67348:4;67354;67340:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67323:43;67406:2;67397:6;:11;;;67393:44;;;67418:4;67424;67410:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67393:44;67461:2;67452:6;:11;;;67448:45;;;67473:4;67479;67465:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67448:45;67518:3;67523;67510:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67167:377;;;;;;:::o;65370:337::-;65470:42;65485:7;65494:2;65498;65502:1;65505:2;65509;65470:14;:42::i;:::-;65532;65547:7;65556:2;65560;65564:1;65567:2;65571;65532:14;:42::i;:::-;65594;65609:7;65618:2;65622;65626:1;65629:2;65633;65594:14;:42::i;:::-;65656;65671:7;65680:2;65684;65688:1;65691:2;65695;65656:14;:42::i;:::-;65370:337;;;:::o;67935:324::-;68065:9;68077:19;68091:1;68077:19;;68094:1;68077:19;;:13;:19::i;:::-;68065:31;;68112:6;68107:141;68128:6;68124:10;;:1;:10;68107:141;;;68189:2;68165:7;68183:1;68181;:3;;;;:::i;:::-;68173:4;:12;;;;:::i;:::-;68165:21;;;;;;;;:::i;:::-;;;;;:26;;;;;;;;;;;68234:2;68206:7;68228:1;68224;68222;:3;;;;:::i;:::-;:7;;;;:::i;:::-;68214:4;:16;;;;:::i;:::-;68206:25;;;;;;;;:::i;:::-;;;;;:30;;;;;;;;;;;68136:3;;;;:::i;:::-;;;68107:141;;;;68054:205;67935:324;;;;;;:::o;30039:::-;30109:14;30342:1;30332:8;30329:15;30303:24;30299:46;30289:56;;30039:324;;;:::o;68267:313::-;68407:6;68402:171;68423:6;68419:10;;:1;:10;68402:171;;;68460:9;68472:21;68486:1;68472:21;;68491:1;68489;:3;;;;;;:::i;:::-;68472:13;:21::i;:::-;68460:33;;68524:2;68508:7;68516:4;68508:13;;;;;;;;:::i;:::-;;;;;:18;;;;;;;;;;;68559:2;68541:7;68554:1;68549:4;:6;;;;:::i;:::-;68541:15;;;;;;;;:::i;:::-;;;;;:20;;;;;;;;;;;68445:128;68431:3;;;;:::i;:::-;;;68402:171;;;;68267:313;;;;;;:::o;68588:218::-;68710:9;68722:19;68736:1;68722:19;;68739:1;68722:19;;:13;:19::i;:::-;68710:31;;68760:38;68776:7;68785:4;68791:2;68795;68760:15;:38::i;:::-;68691:115;68588:218;;;;;:::o;68814:176::-;68947:2;68931:7;68939:4;68931:13;;;;;;;;:::i;:::-;;;;;:18;;;;;;;;;;;68980:2;68960:7;68975:1;68968:4;:8;;;;:::i;:::-;68960:17;;;;;;;;:::i;:::-;;;;;:22;;;;;;;;;;;68814:176;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:141::-;5961:6;5995:5;5989:12;5979:22;;5867:141;;;:::o;6014:211::-;6140:11;6174:6;6169:3;6162:19;6214:4;6209:3;6205:14;6190:29;;6014:211;;;;:::o;6231:159::-;6325:4;6348:3;6340:11;;6378:4;6373:3;6369:14;6361:22;;6231:159;;;:::o;6396:::-;6470:11;6504:6;6499:3;6492:19;6544:4;6539:3;6535:14;6520:29;;6396:159;;;;:::o;6561:357::-;6639:3;6667:39;6700:5;6667:39;:::i;:::-;6722:61;6776:6;6771:3;6722:61;:::i;:::-;6715:68;;6792:65;6850:6;6845:3;6838:4;6831:5;6827:16;6792:65;:::i;:::-;6882:29;6904:6;6882:29;:::i;:::-;6877:3;6873:39;6866:46;;6643:275;6561:357;;;;:::o;6982:673::-;7095:3;7131:4;7126:3;7122:14;7219:4;7212:5;7208:16;7202:23;7272:3;7266:4;7262:14;7255:4;7250:3;7246:14;7239:38;7298:73;7366:4;7352:12;7298:73;:::i;:::-;7290:81;;7146:236;7465:4;7458:5;7454:16;7448:23;7518:3;7512:4;7508:14;7501:4;7496:3;7492:14;7485:38;7544:73;7612:4;7598:12;7544:73;:::i;:::-;7536:81;;7392:236;7645:4;7638:11;;7100:555;6982:673;;;;:::o;7661:264::-;7784:10;7819:100;7915:3;7907:6;7819:100;:::i;:::-;7805:114;;7661:264;;;;:::o;7931:140::-;8028:4;8060;8055:3;8051:14;8043:22;;7931:140;;;:::o;8139:1127::-;8312:3;8341:81;8416:5;8341:81;:::i;:::-;8438:113;8544:6;8539:3;8438:113;:::i;:::-;8431:120;;8577:3;8622:4;8614:6;8610:17;8605:3;8601:27;8652:83;8729:5;8652:83;:::i;:::-;8758:7;8789:1;8774:447;8799:6;8796:1;8793:13;8774:447;;;8870:9;8864:4;8860:20;8855:3;8848:33;8921:6;8915:13;8949:118;9062:4;9047:13;8949:118;:::i;:::-;8941:126;;9090:87;9170:6;9090:87;:::i;:::-;9080:97;;9206:4;9201:3;9197:14;9190:21;;8834:387;8821:1;8818;8814:9;8809:14;;8774:447;;;8778:14;9237:4;9230:11;;9257:3;9250:10;;8317:949;;;;;8139:1127;;;;:::o;9272:792::-;9545:4;9583:2;9572:9;9568:18;9560:26;;9632:9;9626:4;9622:20;9618:1;9607:9;9603:17;9596:47;9660:78;9733:4;9724:6;9660:78;:::i;:::-;9652:86;;9785:9;9779:4;9775:20;9770:2;9759:9;9755:18;9748:48;9813:162;9970:4;9961:6;9813:162;:::i;:::-;9805:170;;9985:72;10053:2;10042:9;10038:18;10029:6;9985:72;:::i;:::-;9272:792;;;;;;:::o;10070:474::-;10138:6;10146;10195:2;10183:9;10174:7;10170:23;10166:32;10163:119;;;10201:79;;:::i;:::-;10163:119;10321:1;10346:53;10391:7;10382:6;10371:9;10367:22;10346:53;:::i;:::-;10336:63;;10292:117;10448:2;10474:53;10519:7;10510:6;10499:9;10495:22;10474:53;:::i;:::-;10464:63;;10419:118;10070:474;;;;;:::o;10550:329::-;10609:6;10658:2;10646:9;10637:7;10633:23;10629:32;10626:119;;;10664:79;;:::i;:::-;10626:119;10784:1;10809:53;10854:7;10845:6;10834:9;10830:22;10809:53;:::i;:::-;10799:63;;10755:117;10550:329;;;;:::o;10885:98::-;10936:6;10970:5;10964:12;10954:22;;10885:98;;;:::o;10989:168::-;11072:11;11106:6;11101:3;11094:19;11146:4;11141:3;11137:14;11122:29;;10989:168;;;;:::o;11163:373::-;11249:3;11277:38;11309:5;11277:38;:::i;:::-;11331:70;11394:6;11389:3;11331:70;:::i;:::-;11324:77;;11410:65;11468:6;11463:3;11456:4;11449:5;11445:16;11410:65;:::i;:::-;11500:29;11522:6;11500:29;:::i;:::-;11495:3;11491:39;11484:46;;11253:283;11163:373;;;;:::o;11542:788::-;11813:4;11851:2;11840:9;11836:18;11828:26;;11900:9;11894:4;11890:20;11886:1;11875:9;11871:17;11864:47;11928:76;11999:4;11990:6;11928:76;:::i;:::-;11920:84;;12051:9;12045:4;12041:20;12036:2;12025:9;12021:18;12014:48;12079:162;12236:4;12227:6;12079:162;:::i;:::-;12071:170;;12251:72;12319:2;12308:9;12304:18;12295:6;12251:72;:::i;:::-;11542:788;;;;;;:::o;12336:116::-;12406:21;12421:5;12406:21;:::i;:::-;12399:5;12396:32;12386:60;;12442:1;12439;12432:12;12386:60;12336:116;:::o;12458:133::-;12501:5;12539:6;12526:20;12517:29;;12555:30;12579:5;12555:30;:::i;:::-;12458:133;;;;:::o;12597:468::-;12662:6;12670;12719:2;12707:9;12698:7;12694:23;12690:32;12687:119;;;12725:79;;:::i;:::-;12687:119;12845:1;12870:53;12915:7;12906:6;12895:9;12891:22;12870:53;:::i;:::-;12860:63;;12816:117;12972:2;12998:50;13040:7;13031:6;13020:9;13016:22;12998:50;:::i;:::-;12988:60;;12943:115;12597:468;;;;;:::o;13071:117::-;13180:1;13177;13170:12;13194:117;13303:1;13300;13293:12;13317:180;13365:77;13362:1;13355:88;13462:4;13459:1;13452:15;13486:4;13483:1;13476:15;13503:281;13586:27;13608:4;13586:27;:::i;:::-;13578:6;13574:40;13716:6;13704:10;13701:22;13680:18;13668:10;13665:34;13662:62;13659:88;;;13727:18;;:::i;:::-;13659:88;13767:10;13763:2;13756:22;13546:238;13503:281;;:::o;13790:129::-;13824:6;13851:20;;:::i;:::-;13841:30;;13880:33;13908:4;13900:6;13880:33;:::i;:::-;13790:129;;;:::o;13925:307::-;13986:4;14076:18;14068:6;14065:30;14062:56;;;14098:18;;:::i;:::-;14062:56;14136:29;14158:6;14136:29;:::i;:::-;14128:37;;14220:4;14214;14210:15;14202:23;;13925:307;;;:::o;14238:146::-;14335:6;14330:3;14325;14312:30;14376:1;14367:6;14362:3;14358:16;14351:27;14238:146;;;:::o;14390:423::-;14467:5;14492:65;14508:48;14549:6;14508:48;:::i;:::-;14492:65;:::i;:::-;14483:74;;14580:6;14573:5;14566:21;14618:4;14611:5;14607:16;14656:3;14647:6;14642:3;14638:16;14635:25;14632:112;;;14663:79;;:::i;:::-;14632:112;14753:54;14800:6;14795:3;14790;14753:54;:::i;:::-;14473:340;14390:423;;;;;:::o;14832:338::-;14887:5;14936:3;14929:4;14921:6;14917:17;14913:27;14903:122;;14944:79;;:::i;:::-;14903:122;15061:6;15048:20;15086:78;15160:3;15152:6;15145:4;15137:6;15133:17;15086:78;:::i;:::-;15077:87;;14893:277;14832:338;;;;:::o;15176:943::-;15271:6;15279;15287;15295;15344:3;15332:9;15323:7;15319:23;15315:33;15312:120;;;15351:79;;:::i;:::-;15312:120;15471:1;15496:53;15541:7;15532:6;15521:9;15517:22;15496:53;:::i;:::-;15486:63;;15442:117;15598:2;15624:53;15669:7;15660:6;15649:9;15645:22;15624:53;:::i;:::-;15614:63;;15569:118;15726:2;15752:53;15797:7;15788:6;15777:9;15773:22;15752:53;:::i;:::-;15742:63;;15697:118;15882:2;15871:9;15867:18;15854:32;15913:18;15905:6;15902:30;15899:117;;;15935:79;;:::i;:::-;15899:117;16040:62;16094:7;16085:6;16074:9;16070:22;16040:62;:::i;:::-;16030:72;;15825:287;15176:943;;;;;;;:::o;16125:474::-;16193:6;16201;16250:2;16238:9;16229:7;16225:23;16221:32;16218:119;;;16256:79;;:::i;:::-;16218:119;16376:1;16401:53;16446:7;16437:6;16426:9;16422:22;16401:53;:::i;:::-;16391:63;;16347:117;16503:2;16529:53;16574:7;16565:6;16554:9;16550:22;16529:53;:::i;:::-;16519:63;;16474:118;16125:474;;;;;:::o;16605:180::-;16653:77;16650:1;16643:88;16750:4;16747:1;16740:15;16774:4;16771:1;16764:15;16791:320;16835:6;16872:1;16866:4;16862:12;16852:22;;16919:1;16913:4;16909:12;16940:18;16930:81;;16996:4;16988:6;16984:17;16974:27;;16930:81;17058:2;17050:6;17047:14;17027:18;17024:38;17021:84;;17077:18;;:::i;:::-;17021:84;16842:269;16791:320;;;:::o;17117:147::-;17218:11;17255:3;17240:18;;17117:147;;;;:::o;17270:386::-;17374:3;17402:38;17434:5;17402:38;:::i;:::-;17456:88;17537:6;17532:3;17456:88;:::i;:::-;17449:95;;17553:65;17611:6;17606:3;17599:4;17592:5;17588:16;17553:65;:::i;:::-;17643:6;17638:3;17634:16;17627:23;;17378:278;17270:386;;;;:::o;17662:427::-;17838:3;17860:93;17949:3;17940:6;17860:93;:::i;:::-;17853:100;;17970:93;18059:3;18050:6;17970:93;:::i;:::-;17963:100;;18080:3;18073:10;;17662:427;;;;;:::o;18095:148::-;18197:11;18234:3;18219:18;;18095:148;;;;:::o;18249:172::-;18389:24;18385:1;18377:6;18373:14;18366:48;18249:172;:::o;18427:402::-;18587:3;18608:85;18690:2;18685:3;18608:85;:::i;:::-;18601:92;;18702:93;18791:3;18702:93;:::i;:::-;18820:2;18815:3;18811:12;18804:19;;18427:402;;;:::o;18835:390::-;18941:3;18969:39;19002:5;18969:39;:::i;:::-;19024:89;19106:6;19101:3;19024:89;:::i;:::-;19017:96;;19122:65;19180:6;19175:3;19168:4;19161:5;19157:16;19122:65;:::i;:::-;19212:6;19207:3;19203:16;19196:23;;18945:280;18835:390;;;;:::o;19231:541::-;19464:3;19486:148;19630:3;19486:148;:::i;:::-;19479:155;;19651:95;19742:3;19733:6;19651:95;:::i;:::-;19644:102;;19763:3;19756:10;;19231:541;;;;:::o;19778:180::-;19826:77;19823:1;19816:88;19923:4;19920:1;19913:15;19947:4;19944:1;19937:15;19964:214;20104:66;20100:1;20092:6;20088:14;20081:90;19964:214;:::o;20184:402::-;20344:3;20365:85;20447:2;20442:3;20365:85;:::i;:::-;20358:92;;20459:93;20548:3;20459:93;:::i;:::-;20577:2;20572:3;20568:12;20561:19;;20184:402;;;:::o;20592:214::-;20732:66;20728:1;20720:6;20716:14;20709:90;20592:214;:::o;20812:402::-;20972:3;20993:85;21075:2;21070:3;20993:85;:::i;:::-;20986:92;;21087:93;21176:3;21087:93;:::i;:::-;21205:2;21200:3;21196:12;21189:19;;20812:402;;;:::o;21220:214::-;21360:66;21356:1;21348:6;21344:14;21337:90;21220:214;:::o;21440:400::-;21600:3;21621:84;21703:1;21698:3;21621:84;:::i;:::-;21614:91;;21714:93;21803:3;21714:93;:::i;:::-;21832:1;21827:3;21823:11;21816:18;;21440:400;;;:::o;21846:1233::-;22329:3;22351:148;22495:3;22351:148;:::i;:::-;22344:155;;22516:95;22607:3;22598:6;22516:95;:::i;:::-;22509:102;;22628:148;22772:3;22628:148;:::i;:::-;22621:155;;22793:95;22884:3;22875:6;22793:95;:::i;:::-;22786:102;;22905:148;23049:3;22905:148;:::i;:::-;22898:155;;23070:3;23063:10;;21846:1233;;;;;:::o;23085:180::-;23133:77;23130:1;23123:88;23230:4;23227:1;23220:15;23254:4;23251:1;23244:15;23271:233;23310:3;23333:24;23351:5;23333:24;:::i;:::-;23324:33;;23379:66;23372:5;23369:77;23366:103;;23449:18;;:::i;:::-;23366:103;23496:1;23489:5;23485:13;23478:20;;23271:233;;;:::o;23510:435::-;23690:3;23712:95;23803:3;23794:6;23712:95;:::i;:::-;23705:102;;23824:95;23915:3;23906:6;23824:95;:::i;:::-;23817:102;;23936:3;23929:10;;23510:435;;;;;:::o;23951:151::-;24091:3;24087:1;24079:6;24075:14;24068:27;23951:151;:::o;24108:400::-;24268:3;24289:84;24371:1;24366:3;24289:84;:::i;:::-;24282:91;;24382:93;24471:3;24382:93;:::i;:::-;24500:1;24495:3;24491:11;24484:18;;24108:400;;;:::o;24514:701::-;24795:3;24817:95;24908:3;24899:6;24817:95;:::i;:::-;24810:102;;24929:148;25073:3;24929:148;:::i;:::-;24922:155;;25094:95;25185:3;25176:6;25094:95;:::i;:::-;25087:102;;25206:3;25199:10;;24514:701;;;;;:::o;25221:151::-;25361:3;25357:1;25349:6;25345:14;25338:27;25221:151;:::o;25378:400::-;25538:3;25559:84;25641:1;25636:3;25559:84;:::i;:::-;25552:91;;25652:93;25741:3;25652:93;:::i;:::-;25770:1;25765:3;25761:11;25754:18;;25378:400;;;:::o;25784:541::-;26017:3;26039:95;26130:3;26121:6;26039:95;:::i;:::-;26032:102;;26151:148;26295:3;26151:148;:::i;:::-;26144:155;;26316:3;26309:10;;25784:541;;;;:::o;26331:214::-;26471:66;26467:1;26459:6;26455:14;26448:90;26331:214;:::o;26551:402::-;26711:3;26732:85;26814:2;26809:3;26732:85;:::i;:::-;26725:92;;26826:93;26915:3;26826:93;:::i;:::-;26944:2;26939:3;26935:12;26928:19;;26551:402;;;:::o;26959:214::-;27099:66;27095:1;27087:6;27083:14;27076:90;26959:214;:::o;27179:402::-;27339:3;27360:85;27442:2;27437:3;27360:85;:::i;:::-;27353:92;;27454:93;27543:3;27454:93;:::i;:::-;27572:2;27567:3;27563:12;27556:19;;27179:402;;;:::o;27587:416::-;27727:66;27723:1;27715:6;27711:14;27704:90;27828:66;27823:2;27815:6;27811:15;27804:91;27929:66;27924:2;27916:6;27912:15;27905:91;27587:416;:::o;28009:402::-;28169:3;28190:85;28272:2;28267:3;28190:85;:::i;:::-;28183:92;;28284:93;28373:3;28284:93;:::i;:::-;28402:2;28397:3;28393:12;28386:19;;28009:402;;;:::o;28417:143::-;28553:3;28549:1;28541:6;28537:14;28530:27;28417:143;:::o;28562:384::-;28722:3;28739:84;28821:1;28816:3;28739:84;:::i;:::-;28732:91;;28828:93;28917:3;28828:93;:::i;:::-;28942:1;28937:3;28933:11;28926:18;;28562:384;;;:::o;28948:1623::-;29580:3;29598:148;29742:3;29598:148;:::i;:::-;29591:155;;29759:95;29850:3;29841:6;29759:95;:::i;:::-;29752:102;;29867:148;30011:3;29867:148;:::i;:::-;29860:155;;30028:95;30119:3;30110:6;30028:95;:::i;:::-;30021:102;;30136:148;30280:3;30136:148;:::i;:::-;30129:155;;30297:95;30388:3;30379:6;30297:95;:::i;:::-;30290:102;;30405:148;30549:3;30405:148;:::i;:::-;30398:155;;30566:3;30559:10;;28948:1623;;;;;;:::o;30573:324::-;30613:7;30632:20;30650:1;30632:20;:::i;:::-;30627:25;;30662:20;30680:1;30662:20;:::i;:::-;30657:25;;30842:1;30774:66;30770:74;30767:1;30764:81;30759:1;30752:9;30745:17;30741:105;30738:131;;;30849:18;;:::i;:::-;30738:131;30893:1;30890;30886:9;30875:20;;30573:324;;;;:::o;30899:171::-;30939:3;30954:20;30972:1;30954:20;:::i;:::-;30949:25;;30984:20;31002:1;30984:20;:::i;:::-;30979:25;;31023:1;31020;31016:9;31009:16;;31040:3;31037:1;31034:10;31031:36;;;31047:18;;:::i;:::-;31031:36;30899:171;;;;:::o;31072:71::-;31111:7;31136:5;31125:16;;31072:71;;;:::o;31145:149::-;31246:45;31266:24;31284:5;31266:24;:::i;:::-;31246:45;:::i;:::-;31241:3;31234:58;31145:149;;:::o;31296:240::-;31408:3;31419:75;31490:3;31481:6;31419:75;:::i;:::-;31515:2;31510:3;31506:12;31499:19;;31531:3;31524:10;;31296:240;;;;:::o;31538:167::-;31674:27;31670:1;31662:6;31658:14;31651:51;31538:167;:::o;31707:350::-;31849:3;31866:67;31930:2;31925:3;31866:67;:::i;:::-;31859:74;;31938:93;32027:3;31938:93;:::i;:::-;32052:2;32047:3;32043:12;32036:19;;31707:350;;;:::o;32059:403::-;32225:4;32259:2;32248:9;32244:18;32236:26;;32304:9;32298:4;32294:20;32290:1;32279:9;32275:17;32268:47;32328:131;32454:4;32328:131;:::i;:::-;32320:139;;32059:403;;;:::o;32464:174::-;32600:34;32596:1;32588:6;32584:14;32577:58;32464:174;:::o;32640:350::-;32782:3;32799:67;32863:2;32858:3;32799:67;:::i;:::-;32792:74;;32871:93;32960:3;32871:93;:::i;:::-;32985:2;32980:3;32976:12;32969:19;;32640:350;;;:::o;32992:403::-;33158:4;33192:2;33181:9;33177:18;33169:26;;33237:9;33231:4;33227:20;33223:1;33212:9;33208:17;33201:47;33261:131;33387:4;33261:131;:::i;:::-;33253:139;;32992:403;;;:::o;33397:171::-;33533:31;33529:1;33521:6;33517:14;33510:55;33397:171;:::o;33570:386::-;33730:3;33747:85;33829:2;33824:3;33747:85;:::i;:::-;33740:92;;33837:93;33926:3;33837:93;:::i;:::-;33951:2;33946:3;33942:12;33935:19;;33570:386;;;:::o;33958:525::-;34191:3;34209:148;34353:3;34209:148;:::i;:::-;34202:155;;34370:95;34461:3;34452:6;34370:95;:::i;:::-;34363:102;;34478:3;34471:10;;33958:525;;;;:::o;34485:164::-;34529:77;34526:1;34519:88;34622:4;34619:1;34612:15;34642:4;34639:1;34632:15;34651:165;34691:1;34704:20;34722:1;34704:20;:::i;:::-;34699:25;;34734:20;34752:1;34734:20;:::i;:::-;34729:25;;34769:1;34759:35;;34774:18;;:::i;:::-;34759:35;34812:1;34809;34805:9;34800:14;;34651:165;;;;:::o;34818:174::-;34858:4;34874:20;34892:1;34874:20;:::i;:::-;34869:25;;34904:20;34922:1;34904:20;:::i;:::-;34899:25;;34944:1;34941;34937:9;34929:17;;34964:1;34958:4;34955:11;34952:37;;;34969:18;;:::i;:::-;34952:37;34818:174;;;;:::o;34994:156::-;35026:1;35039:20;35057:1;35039:20;:::i;:::-;35034:25;;35069:20;35087:1;35069:20;:::i;:::-;35064:25;;35104:1;35094:35;;35109:18;;:::i;:::-;35094:35;35146:1;35143;35139:9;35134:14;;34994:156;;;;:::o;35152:612::-;35347:4;35381:3;35370:9;35366:19;35358:27;;35391:71;35459:1;35448:9;35444:17;35435:6;35391:71;:::i;:::-;35468:72;35536:2;35525:9;35521:18;35512:6;35468:72;:::i;:::-;35546;35614:2;35603:9;35599:18;35590:6;35546:72;:::i;:::-;35661:9;35655:4;35651:20;35646:2;35635:9;35631:18;35624:48;35685:76;35756:4;35747:6;35685:76;:::i;:::-;35677:84;;35152:612;;;;;;;:::o;35766:129::-;35822:5;35849:6;35843:13;35834:22;;35861:32;35887:5;35861:32;:::i;:::-;35766:129;;;;:::o;35897:325::-;35966:6;36011:2;35999:9;35990:7;35986:23;35982:32;35979:119;;;36017:79;;:::i;:::-;35979:119;36129:1;36150:63;36205:7;36196:6;36185:9;36181:22;36150:63;:::i;:::-;36140:73;;36104:115;35897:325;;;;:::o;36224:78::-;36259:7;36295:4;36288:5;36284:16;36273:27;;36224:78;;;:::o;36304:151::-;36341:3;36360:22;36376:5;36360:22;:::i;:::-;36351:31;;36400:4;36393:5;36390:15;36387:41;;36408:18;;:::i;:::-;36387:41;36451:1;36444:5;36440:13;36433:20;;36304:151;;;:::o
Swarm Source
ipfs://eeec1697643f871be6b13516b272b7a8469ca8f581a21448b8a90a196db2adc1
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.