ERC-721
Overview
Max Total Supply
89 SWT
Holders
30
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 SWTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SmolWingedTurtlez
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 /* ▄████████ ▄▄▄▄███▄▄▄▄ ▄██████▄ ▄█ ███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ █▀ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▀███████████ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄█ ███ ███ ███ ███ ███ ███ ███▌ ▄ ▄████████▀ ▀█ ███ █▀ ▀██████▀ █████▄▄██ ▀ ▄█ █▄ ▄█ ███▄▄▄▄ ▄██████▄ ▄████████ ████████▄ ███ ███ ███ ███▀▀▀██▄ ███ ███ ███ ███ ███ ▀███ ███ ███ ███▌ ███ ███ ███ █▀ ███ █▀ ███ ███ ███ ███ ███▌ ███ ███ ▄███ ▄███▄▄▄ ███ ███ ███ ███ ███▌ ███ ███ ▀▀███ ████▄ ▀▀███▀▀▀ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▄ ███ ███ ███ ▄█▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄███ ▀███▀███▀ █▀ ▀█ █▀ ████████▀ ██████████ ████████▀ ███ ███ █▄ ▄████████ ███ ▄█ ▄████████ ▄███████▄ ▀█████████▄ ███ ███ ███ ███ ▀█████████▄ ███ ███ ███ ██▀ ▄██ ▀███▀▀██ ███ ███ ███ ███ ▀███▀▀██ ███ ███ █▀ ▄███▀ ███ ▀ ███ ███ ▄███▄▄▄▄██▀ ███ ▀ ███ ▄███▄▄▄ ▀█▀▄███▀▄▄ ███ ███ ███ ▀▀███▀▀▀▀▀ ███ ███ ▀▀███▀▀▀ ▄███▀ ▀ ███ ███ ███ ▀███████████ ███ ███ ███ █▄ ▄███▀ ███ ███ ███ ███ ███ ███ ███▌ ▄ ███ ███ ███▄ ▄█ ▄████▀ ████████▀ ███ ███ ▄████▀ █████▄▄██ ██████████ ▀████████▀ */ // @title Smol Winged Turtlez // @author @tom_hirst pragma solidity ^0.8.9; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Counters.sol'; import './SmolWingedTurtlezLibrary.sol'; import './Base64.sol'; contract SmolWingedTurtlez is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _nextTokenId; uint256 public maxSupply = 6969; uint256 public constant TOKEN_PRICE = 0.02 ether; struct Hash { uint16 backgroundColor; uint16 wingColor; uint16 wingType; bool bandana; uint16 bandanaColor; bool boots; uint16 bootsColor; uint16 pupil; bool tongue; bool tail; } struct Coordinates { string x; string y; } struct Color { string hexCode; string name; } Hash[] private tokenIdHash; mapping(uint256 => Coordinates) private pupils; mapping(uint256 => Coordinates[]) private wingTypes; mapping(uint256 => Color[]) private colorPalettes; string[] private wingTypeValues = [ 'Regular', 'Long', 'Tall', 'Spiky', 'Ruffled', 'Loose Feathers', 'Sparkly', 'Claw' ]; string[] private pupilValues = ['Mindful', 'Positive', 'Reserved', 'Focused']; uint16[][5] traitWeights; function setPupil( uint48 pupilIndex, string memory x, string memory y ) private { pupils[pupilIndex] = Coordinates(x, y); } function setWingType(uint48 wingTypeIndex, Coordinates[3] memory coordinates) private { for (uint8 i = 0; i < coordinates.length; i++) { wingTypes[wingTypeIndex].push(coordinates[i]); } } function setColorPalette(uint48 colorPaletteIndex, Color[8] memory colors) private { for (uint8 i = 0; i < colors.length; i++) { colorPalettes[colorPaletteIndex].push(colors[i]); } } constructor() ERC721('Smol Winged Turtlez', 'SWT') { // Start at token 1 _nextTokenId.increment(); // Dummy value to prevent need for offset tokenIdHash.push( Hash({ backgroundColor: 0, wingType: 0, wingColor: 0, bandana: false, bandanaColor: 0, boots: false, bootsColor: 0, pupil: 0, tongue: false, tail: false }) ); // Wing type rarity traitWeights[0] = [1600, 1350, 1200, 1050, 850, 550, 369]; // Wing color rarity traitWeights[1] = [3400, 2250, 1250, 69]; // Boots rarity traitWeights[2] = [1500, 5469]; // Bandana rarity traitWeights[3] = [2069, 4900]; // Tongue rarity traitWeights[4] = [5000, 1969]; // Background colors setColorPalette( 0, [ Color({ hexCode: '#bcdfb9', name: 'Green' }), Color({ hexCode: '#d5bada', name: 'Purple' }), Color({ hexCode: '#ecc1db', name: 'Pink' }), Color({ hexCode: '#e3c29e', name: 'Orange' }), Color({ hexCode: '#84cfc6', name: 'Turquoise' }), Color({ hexCode: '#faf185', name: 'Yellow' }), Color({ hexCode: '#b0d9f4', name: 'Blue' }), Color({ hexCode: '#444444', name: 'Black' }) ] ); // Accessory colors setColorPalette( 1, [ Color({ hexCode: '#567e39', name: 'Green' }), Color({ hexCode: '#8c3895', name: 'Purple' }), Color({ hexCode: '#ab62a8', name: 'Pink' }), Color({ hexCode: '#da7327', name: 'Orange' }), Color({ hexCode: '#00a794', name: 'Turquoise' }), Color({ hexCode: '#decf22', name: 'Yellow' }), Color({ hexCode: '#1b80c4', name: 'Blue' }), Color({ hexCode: '#222222', name: 'Black' }) ] ); // Wing colors setColorPalette( 2, [ Color({ hexCode: '#ffffff', name: 'White' }), Color({ hexCode: '#af8d56', name: 'Bronze' }), Color({ hexCode: '#a7a5a5', name: 'Silver' }), Color({ hexCode: '#d4af34', name: 'Gold' }), Color({ hexCode: '#ffffff', name: 'White' }), Color({ hexCode: '#af8d56', name: 'Bronze' }), Color({ hexCode: '#a7a5a5', name: 'Silver' }), Color({ hexCode: '#d4af34', name: 'Gold' }) ] ); // Mindful setPupil(0, '16', '10'); // Positive setPupil(1, '17', '10'); // Reserved setPupil(2, '16', '11'); // Focused setPupil(3, '17', '11'); // Regular setWingType( 0, [Coordinates({ x: '0', y: '0' }), Coordinates({ x: '0', y: '0' }), Coordinates({ x: '0', y: '0' })] ); // Long setWingType( 1, [Coordinates({ x: '3', y: '8' }), Coordinates({ x: '4', y: '8' }), Coordinates({ x: '5', y: '8' })] ); // Tall setWingType( 2, [Coordinates({ x: '5', y: '8' }), Coordinates({ x: '5', y: '7' }), Coordinates({ x: '5', y: '6' })] ); // Spiky setWingType( 3, [Coordinates({ x: '4', y: '7' }), Coordinates({ x: '6', y: '7' }), Coordinates({ x: '8', y: '7' })] ); // Ruffled setWingType( 4, [Coordinates({ x: '6', y: '7' }), Coordinates({ x: '9', y: '7' }), Coordinates({ x: '10', y: '6' })] ); // Loose setWingType( 5, [Coordinates({ x: '8', y: '12' }), Coordinates({ x: '10', y: '12' }), Coordinates({ x: '12', y: '12' })] ); // Sparkly setWingType( 6, [Coordinates({ x: '4', y: '6' }), Coordinates({ x: '2', y: '7' }), Coordinates({ x: '3', y: '8' })] ); // Claw setWingType( 7, [Coordinates({ x: '4', y: '9' }), Coordinates({ x: '3', y: '10' }), Coordinates({ x: '5', y: '10' })] ); } function totalSupply() public view returns (uint256) { return _nextTokenId.current() - 1; } function weightedRarityGenerator(uint16 pseudoRandomNumber, uint8 trait) internal view returns (uint16) { uint16 lowerBound = 0; for (uint8 i = 0; i < traitWeights[trait].length; i++) { uint16 weight = traitWeights[trait][i]; if (pseudoRandomNumber >= lowerBound && pseudoRandomNumber < lowerBound + weight) { return i; } lowerBound = lowerBound + weight; } revert(); } function createTokenIdHash(uint256 tokenId) public view returns (Hash memory) { uint256 pseudoRandomBase = uint256(keccak256(abi.encodePacked(blockhash(block.number - 1), tokenId))); return Hash({ backgroundColor: uint16(uint16(pseudoRandomBase) % 8), wingType: weightedRarityGenerator(uint16(uint16(pseudoRandomBase) % 6969), 0), wingColor: weightedRarityGenerator(uint16(uint16(pseudoRandomBase >> 48) % 6969), 1), bandana: weightedRarityGenerator(uint16(uint16(pseudoRandomBase >> 96) % 6969), 2) == 1, bandanaColor: uint16(uint16(pseudoRandomBase >> 144) % 8), boots: weightedRarityGenerator(uint16(uint16(pseudoRandomBase >> 192) % 6969), 3) == 1, bootsColor: uint16(uint16(pseudoRandomBase >> 240) % 8), pupil: uint16(uint16(pseudoRandomBase) % 4), tongue: weightedRarityGenerator(uint16(uint16(pseudoRandomBase) % 6969), 4) == 1, tail: uint16(uint16(pseudoRandomBase) % 2) == 1 }); } function getTokenIdHashSvg(Hash memory hash) public view returns (string memory svg) { svg = string( abi.encodePacked( svg, "<rect fill='", colorPalettes[0][hash.backgroundColor].hexCode, "' height='24' width='24' />", "<rect fill='#567e39' height='1' width='4' x='9' y='9' />", "<rect fill='#567e39' height='1' width='6' x='8' y='10' />", "<rect fill='#567e39' height='3' width='8' x='7' y='11' />", "<rect fill='#65bc48' height='1' width='3' x='15' y='9' />", "<rect fill='#65bc48' height='3' width='4' x='15' y='10' />", "<rect fill='#65bc48' height='1' width='3' x='15' y='13' />", "<rect fill='#65bc48' height='1' width='8' x='7' y='14' />", "<rect fill='#65bc48' height='1' width='2' x='7' y='15' />", "<rect fill='#65bc48' height='1' width='2' x='13' y='15' />" "<rect fill='#ffffff' height='2' width='2' x='16' y='10' />", "<rect fill='", colorPalettes[2][hash.wingColor].hexCode, "' height='1' width='6' x='5' y='8' />", "<rect fill='", colorPalettes[2][hash.wingColor].hexCode, "' height='1' width='4' x='7' y='9' />", "<rect fill='", colorPalettes[2][hash.wingColor].hexCode, "' height='1' width='2' x='9' y='10' />", "<rect fill='#65bc48' height='1' width='1' x='6' y='13' />", "<rect fill='#000000' height='1' width='1' x='", pupils[hash.pupil].x, "' y='", pupils[hash.pupil].y, "' />" ) ); if (hash.wingType != 0) { for (uint8 i = 0; i < wingTypes[hash.wingType].length; i++) { svg = string( abi.encodePacked( svg, "<rect fill='", colorPalettes[2][hash.wingColor].hexCode, "' height='1' width='1' x='", wingTypes[hash.wingType][i].x, "' y='", wingTypes[hash.wingType][i].y, "' />" ) ); } } if (hash.boots) { svg = string( abi.encodePacked( svg, "<rect fill='", colorPalettes[1][hash.bootsColor].hexCode, "' height='1' width='2' x='7' y='15' /><rect fill='", colorPalettes[1][hash.bootsColor].hexCode, "' height='1' width='2' x='13' y='15' />" ) ); } if (hash.bandana) { svg = string( abi.encodePacked( svg, "<rect fill='", colorPalettes[1][hash.bandanaColor].hexCode, "' height='1' width='1' x='14' y='8' /><rect fill='", colorPalettes[1][hash.bandanaColor].hexCode, "' height='1' width='3' x='15' y='9' />" ) ); } if (hash.tongue) { svg = string(abi.encodePacked(svg, "<rect fill='#ed2024' height='1' width='1' x='18' y='13' />")); } if (hash.tail) { svg = string(abi.encodePacked(svg, "<rect fill='#65bc48' height='1' width='1' x='5' y='12' />")); } else { svg = string(abi.encodePacked(svg, "<rect fill='#65bc48' height='1' width='1' x='5' y='14' />")); } return string( abi.encodePacked( "<svg id='smol-winged-turtle' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 24 24'>", svg, '<style>#smol-winged-turtle{shape-rendering:crispedges;}</style></svg>' ) ); } function getTokenIdHashMetadata(Hash memory hash) public view returns (string memory metadata) { metadata = string( abi.encodePacked( metadata, '{"trait_type":"Background", "value":"', colorPalettes[0][hash.backgroundColor].name, '"},', '{"trait_type":"Wing Type", "value":"', wingTypeValues[hash.wingType], '"},', '{"trait_type":"Wing Color", "value":"', colorPalettes[2][hash.wingColor].name, '"},', '{"trait_type":"Eyes", "value":"', pupilValues[hash.pupil], '"}' ) ); if (hash.boots) { metadata = string( abi.encodePacked( metadata, ',{"trait_type":"Boots", "value":"', colorPalettes[1][hash.bootsColor].name, '"}' ) ); } if (hash.bandana) { metadata = string( abi.encodePacked( metadata, ',{"trait_type":"Bandana", "value":"', colorPalettes[1][hash.bandanaColor].name, '"}' ) ); } if (hash.tongue) { metadata = string(abi.encodePacked(metadata, ',{"trait_type":"Tongue", "value":"True"}')); } if (hash.tail) { metadata = string(abi.encodePacked(metadata, ',{"trait_type":"Tail", "value":"Up"}')); } else { metadata = string(abi.encodePacked(metadata, ',{"trait_type":"Tail", "value":"Down"}')); } return string(abi.encodePacked('[', metadata, ']')); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId)); Hash memory hash = tokenIdHash[tokenId]; return string( abi.encodePacked( 'data:application/json;base64,', Base64.encode( bytes( string( abi.encodePacked( '{"name": "Smol Winged Turtle #', SmolWingedTurtlezLibrary.toString(tokenId), '", "description": "Smol Winged Turtlez is a collection of up to 6,969 fully on-chain characters that might be a great investment opportunity. Mint your turtlez before they fly away!", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(getTokenIdHashSvg(hash))), '","attributes":', getTokenIdHashMetadata(hash), '}' ) ) ) ) ) ); } function mint(uint256 numberOfTokens) public payable { require(numberOfTokens > 0, 'Quantity must be greater than 0.'); require(numberOfTokens < 6, 'Exceeds max per mint.'); require(totalSupply() + numberOfTokens <= maxSupply, 'Exceeds max supply.'); require(msg.value >= numberOfTokens * TOKEN_PRICE, 'Wrong ETH value sent.'); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = _nextTokenId.current(); tokenIdHash.push(createTokenIdHash(tokenId)); _safeMint(msg.sender, tokenId); _nextTokenId.increment(); } } function reduceSupply() external onlyOwner { require(totalSupply() < maxSupply, 'All minted.'); maxSupply = totalSupply(); } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: GPL-3.0 /* ▄████████ ▄▄▄▄███▄▄▄▄ ▄██████▄ ▄█ ███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ █▀ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▀███████████ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄█ ███ ███ ███ ███ ███ ███ ███▌ ▄ ▄████████▀ ▀█ ███ █▀ ▀██████▀ █████▄▄██ ▀ ▄█ █▄ ▄█ ███▄▄▄▄ ▄██████▄ ▄████████ ████████▄ ███ ███ ███ ███▀▀▀██▄ ███ ███ ███ ███ ███ ▀███ ███ ███ ███▌ ███ ███ ███ █▀ ███ █▀ ███ ███ ███ ███ ███▌ ███ ███ ▄███ ▄███▄▄▄ ███ ███ ███ ███ ███▌ ███ ███ ▀▀███ ████▄ ▀▀███▀▀▀ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▄ ███ ███ ███ ▄█▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄███ ▀███▀███▀ █▀ ▀█ █▀ ████████▀ ██████████ ████████▀ ███ ███ █▄ ▄████████ ███ ▄█ ▄████████ ▄███████▄ ▀█████████▄ ███ ███ ███ ███ ▀█████████▄ ███ ███ ███ ██▀ ▄██ ▀███▀▀██ ███ ███ ███ ███ ▀███▀▀██ ███ ███ █▀ ▄███▀ ███ ▀ ███ ███ ▄███▄▄▄▄██▀ ███ ▀ ███ ▄███▄▄▄ ▀█▀▄███▀▄▄ ███ ███ ███ ▀▀███▀▀▀▀▀ ███ ███ ▀▀███▀▀▀ ▄███▀ ▀ ███ ███ ███ ▀███████████ ███ ███ ███ █▄ ▄███▀ ███ ███ ███ ███ ███ ███ ███▌ ▄ ███ ███ ███▄ ▄█ ▄████▀ ████████▀ ███ ███ ▄████▀ █████▄▄██ ██████████ ▀████████▀ */ // @title Smol Winged Turtlez Library // @author @tom_hirst pragma solidity ^0.8.9; library SmolWingedTurtlezLibrary { /** * @dev Inspired by OraclizeAPI's implementation - MIT license * @dev https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol */ function toString(uint256 value) internal pure returns (string memory) { 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); } }
// SPDX-License-Identifier: MIT /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> pragma solidity ^0.8.9; library Base64 { bytes internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ''; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"createTokenIdHash","outputs":[{"components":[{"internalType":"uint16","name":"backgroundColor","type":"uint16"},{"internalType":"uint16","name":"wingColor","type":"uint16"},{"internalType":"uint16","name":"wingType","type":"uint16"},{"internalType":"bool","name":"bandana","type":"bool"},{"internalType":"uint16","name":"bandanaColor","type":"uint16"},{"internalType":"bool","name":"boots","type":"bool"},{"internalType":"uint16","name":"bootsColor","type":"uint16"},{"internalType":"uint16","name":"pupil","type":"uint16"},{"internalType":"bool","name":"tongue","type":"bool"},{"internalType":"bool","name":"tail","type":"bool"}],"internalType":"struct SmolWingedTurtlez.Hash","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint16","name":"backgroundColor","type":"uint16"},{"internalType":"uint16","name":"wingColor","type":"uint16"},{"internalType":"uint16","name":"wingType","type":"uint16"},{"internalType":"bool","name":"bandana","type":"bool"},{"internalType":"uint16","name":"bandanaColor","type":"uint16"},{"internalType":"bool","name":"boots","type":"bool"},{"internalType":"uint16","name":"bootsColor","type":"uint16"},{"internalType":"uint16","name":"pupil","type":"uint16"},{"internalType":"bool","name":"tongue","type":"bool"},{"internalType":"bool","name":"tail","type":"bool"}],"internalType":"struct SmolWingedTurtlez.Hash","name":"hash","type":"tuple"}],"name":"getTokenIdHashMetadata","outputs":[{"internalType":"string","name":"metadata","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint16","name":"backgroundColor","type":"uint16"},{"internalType":"uint16","name":"wingColor","type":"uint16"},{"internalType":"uint16","name":"wingType","type":"uint16"},{"internalType":"bool","name":"bandana","type":"bool"},{"internalType":"uint16","name":"bandanaColor","type":"uint16"},{"internalType":"bool","name":"boots","type":"bool"},{"internalType":"uint16","name":"bootsColor","type":"uint16"},{"internalType":"uint16","name":"pupil","type":"uint16"},{"internalType":"bool","name":"tongue","type":"bool"},{"internalType":"bool","name":"tail","type":"bool"}],"internalType":"struct SmolWingedTurtlez.Hash","name":"hash","type":"tuple"}],"name":"getTokenIdHashSvg","outputs":[{"internalType":"string","name":"svg","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611b396008556040518061010001604052806040518060400160405280600781526020017f526567756c61720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4c6f6e670000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f54616c6c0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5370696b7900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f527566666c65640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4c6f6f736520466561746865727300000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f537061726b6c790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f436c617700000000000000000000000000000000000000000000000000000000815250815250600d906008620001fe92919062002681565b5060405180608001604052806040518060400160405280600781526020017f4d696e6466756c0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f506f73697469766500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f526573657276656400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f466f637573656400000000000000000000000000000000000000000000000000815250815250600e90600462000306929190620026e8565b503480156200031457600080fd5b506040518060400160405280601381526020017f536d6f6c2057696e67656420547572746c657a000000000000000000000000008152506040518060400160405280600381526020017f53575400000000000000000000000000000000000000000000000000000000008152508160009080519060200190620003999291906200274f565b508060019080519060200190620003b29291906200274f565b505050620003d5620003c96200238d60201b60201c565b6200239560201b60201c565b620003ec60076200245b60201b62001d7e1760201c565b6009604051806101400160405280600061ffff168152602001600061ffff168152602001600061ffff168152602001600015158152602001600061ffff168152602001600015158152602001600061ffff168152602001600061ffff168152602001600015158152602001600015158152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff16021790555060608201518160000160066101000a81548160ff02191690831515021790555060808201518160000160076101000a81548161ffff021916908361ffff16021790555060a08201518160000160096101000a81548160ff02191690831515021790555060c082015181600001600a6101000a81548161ffff021916908361ffff16021790555060e082015181600001600c6101000a81548161ffff021916908361ffff16021790555061010082015181600001600e6101000a81548160ff02191690831515021790555061012082015181600001600f6101000a81548160ff02191690831515021790555050506040518060e0016040528061064061ffff16815260200161054661ffff1681526020016104b061ffff16815260200161041a61ffff16815260200161035261ffff16815260200161022661ffff16815260200161017161ffff16815250600f6000600581106200064e576200064d62002a80565b5b019060076200065f929190620027e0565b506040518060800160405280610d4861ffff1681526020016108ca61ffff1681526020016104e261ffff168152602001604561ffff16815250600f600160058110620006b057620006af62002a80565b5b01906004620006c192919062002891565b5060405180604001604052806105dc61ffff16815260200161155d61ffff16815250600f600260058110620006fb57620006fa62002a80565b5b019060026200070c92919062002942565b50604051806040016040528061081561ffff16815260200161132461ffff16815250600f60036005811062000746576200074562002a80565b5b019060026200075792919062002942565b50604051806040016040528061138861ffff1681526020016107b161ffff16815250600f60046005811062000791576200079062002a80565b5b01906002620007a292919062002942565b5062000bdf600060405180610100016040528060405180604001604052806040518060400160405280600781526020017f236263646662390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f477265656e000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236435626164610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f507572706c650000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236563633164620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f50696e6b00000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236533633239650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4f72616e67650000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f233834636663360000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f54757271756f6973650000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236661663138350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f59656c6c6f770000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236230643966340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426c756500000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f233434343434340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426c61636b0000000000000000000000000000000000000000000000000000008152508152508152506200247160201b60201c565b6200101b600160405180610100016040528060405180604001604052806040518060400160405280600781526020017f233536376533390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f477265656e000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f233863333839350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f507572706c650000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236162363261380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f50696e6b00000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236461373332370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4f72616e67650000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f233030613739340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f54757271756f6973650000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236465636632320000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f59656c6c6f770000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f233162383063340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426c756500000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f233232323232320000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426c61636b0000000000000000000000000000000000000000000000000000008152508152508152506200247160201b60201c565b62001457600260405180610100016040528060405180604001604052806040518060400160405280600781526020017f236666666666660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5768697465000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236166386435360000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f42726f6e7a650000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236137613561350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f53696c7665720000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236434616633340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f476f6c6400000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236666666666660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5768697465000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236166386435360000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f42726f6e7a650000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236137613561350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f53696c7665720000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600781526020017f236434616633340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f476f6c64000000000000000000000000000000000000000000000000000000008152508152508152506200247160201b60201c565b620014d560006040518060400160405280600281526020017f31360000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f31300000000000000000000000000000000000000000000000000000000000008152506200253e60201b60201c565b6200155360016040518060400160405280600281526020017f31370000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f31300000000000000000000000000000000000000000000000000000000000008152506200253e60201b60201c565b620015d160026040518060400160405280600281526020017f31360000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f31310000000000000000000000000000000000000000000000000000000000008152506200253e60201b60201c565b6200164f60036040518060400160405280600281526020017f31370000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f31310000000000000000000000000000000000000000000000000000000000008152506200253e60201b60201c565b620017f66000604051806060016040528060405180604001604052806040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250815250815250620025b460201b60201c565b6200199d6001604051806060016040528060405180604001604052806040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3800000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3800000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3800000000000000000000000000000000000000000000000000000000000000815250815250815250620025b460201b60201c565b62001b446002604051806060016040528060405180604001604052806040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3800000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3700000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3600000000000000000000000000000000000000000000000000000000000000815250815250815250620025b460201b60201c565b62001ceb6003604051806060016040528060405180604001604052806040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3700000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f360000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3700000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f380000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3700000000000000000000000000000000000000000000000000000000000000815250815250815250620025b460201b60201c565b62001e926004604051806060016040528060405180604001604052806040518060400160405280600181526020017f360000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3700000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f390000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3700000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3600000000000000000000000000000000000000000000000000000000000000815250815250815250620025b460201b60201c565b620020396005604051806060016040528060405180604001604052806040518060400160405280600181526020017f380000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f3132000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f3132000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600281526020017f313200000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f3132000000000000000000000000000000000000000000000000000000000000815250815250815250620025b460201b60201c565b620021e06006604051806060016040528060405180604001604052806040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3600000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f320000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3700000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3800000000000000000000000000000000000000000000000000000000000000815250815250815250620025b460201b60201c565b620023876007604051806060016040528060405180604001604052806040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3900000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f3130000000000000000000000000000000000000000000000000000000000000815250815250815260200160405180604001604052806040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f3130000000000000000000000000000000000000000000000000000000000000815250815250815250620025b460201b60201c565b62002b7f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b60005b60088160ff1610156200253957600c60008465ffffffffffff168152602001908152602001600020828260ff1660088110620024b557620024b462002a80565b5b602002015190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000019080519060200190620025019291906200274f565b506020820151816001019080519060200190620025209291906200274f565b5050508080620025309062002aeb565b91505062002474565b505050565b604051806040016040528083815260200182815250600a60008565ffffffffffff16815260200190815260200160002060008201518160000190805190602001906200258c9291906200274f565b506020820151816001019080519060200190620025ab9291906200274f565b50905050505050565b60005b60038160ff1610156200267c57600b60008465ffffffffffff168152602001908152602001600020828260ff1660038110620025f857620025f762002a80565b5b602002015190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000019080519060200190620026449291906200274f565b506020820151816001019080519060200190620026639291906200274f565b5050508080620026739062002aeb565b915050620025b7565b505050565b828054828255906000526020600020908101928215620026d5579160200282015b82811115620026d4578251829080519060200190620026c39291906200274f565b5091602001919060010190620026a2565b5b509050620026e49190620029f3565b5090565b8280548282559060005260206000209081019282156200273c579160200282015b828111156200273b5782518290805190602001906200272a9291906200274f565b509160200191906001019062002709565b5b5090506200274b9190620029f3565b5090565b8280546200275d9062002b49565b90600052602060002090601f016020900481019282620027815760008555620027cd565b82601f106200279c57805160ff1916838001178555620027cd565b82800160010185558215620027cd579182015b82811115620027cc578251825591602001919060010190620027af565b5b509050620027dc919062002a1b565b5090565b82805482825590600052602060002090600f016010900481019282156200287e5791602002820160005b838211156200284c57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026200280a565b80156200287c5782816101000a81549061ffff02191690556002016020816001010492830192600103026200284c565b505b5090506200288d919062002a1b565b5090565b82805482825590600052602060002090600f016010900481019282156200292f5791602002820160005b83821115620028fd57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302620028bb565b80156200292d5782816101000a81549061ffff0219169055600201602081600101049283019260010302620028fd565b505b5090506200293e919062002a1b565b5090565b82805482825590600052602060002090600f01601090048101928215620029e05791602002820160005b83821115620029ae57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026200296c565b8015620029de5782816101000a81549061ffff0219169055600201602081600101049283019260010302620029ae565b505b509050620029ef919062002a1b565b5090565b5b8082111562002a17576000818162002a0d919062002a3a565b50600101620029f4565b5090565b5b8082111562002a3657600081600090555060010162002a1c565b5090565b50805462002a489062002b49565b6000825580601f1062002a5c575062002a7d565b601f01602090049060005260206000209081019062002a7c919062002a1b565b5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b600062002af88262002ade565b915060ff82141562002b0f5762002b0e62002aaf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062002b6257607f821691505b6020821081141562002b795762002b7862002b1a565b5b50919050565b615e4a8062002b8f6000396000f3fe6080604052600436106101665760003560e01c80637d24648d116100d1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb0114610541578063e104f60c1461056c578063e985e9c514610583578063f2fde38b146105c057610166565b8063b88d4fde146104b0578063c87b56dd146104d9578063d2d8cb671461051657610166565b80637d24648d1461039b578063857b5c7b146103d85780638da5cb5b1461041557806395d89b4114610440578063a0712d681461046b578063a22cb4651461048757610166565b806335f6a79d1161012357806335f6a79d1461028d5780633ccfd60b146102ca57806342842e0e146102e15780636352211e1461030a57806370a0823114610347578063715018a61461038457610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612dc0565b6105e9565b60405161019f9190612e08565b60405180910390f35b3480156101b457600080fd5b506101bd6106cb565b6040516101ca9190612ebc565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612f14565b61075d565b6040516102079190612f82565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612fc9565b6107e2565b005b34801561024557600080fd5b5061024e6108fa565b60405161025b9190613018565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190613033565b610917565b005b34801561029957600080fd5b506102b460048036038101906102af9190612f14565b610977565b6040516102c1919061317e565b60405180910390f35b3480156102d657600080fd5b506102df610b09565b005b3480156102ed57600080fd5b5061030860048036038101906103039190613033565b610bd5565b005b34801561031657600080fd5b50610331600480360381019061032c9190612f14565b610bf5565b60405161033e9190612f82565b60405180910390f35b34801561035357600080fd5b5061036e6004803603810190610369919061319a565b610ca7565b60405161037b9190613018565b60405180910390f35b34801561039057600080fd5b50610399610d5f565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190613395565b610de7565b6040516103cf9190612ebc565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613395565b611283565b60405161040c9190612ebc565b60405180910390f35b34801561042157600080fd5b5061042a6114f8565b6040516104379190612f82565b60405180910390f35b34801561044c57600080fd5b50610455611522565b6040516104629190612ebc565b60405180910390f35b61048560048036038101906104809190612f14565b6115b4565b005b34801561049357600080fd5b506104ae60048036038101906104a991906133c3565b6118b1565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906134bd565b6118c7565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190612f14565b611929565b60405161050d9190612ebc565b60405180910390f35b34801561052257600080fd5b5061052b611b0a565b6040516105389190613018565b60405180910390f35b34801561054d57600080fd5b50610556611b15565b6040516105639190613018565b60405180910390f35b34801561057857600080fd5b50610581611b1b565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190613540565b611bf2565b6040516105b79190612e08565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e2919061319a565b611c86565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c457506106c382611d94565b5b9050919050565b6060600080546106da906135af565b80601f0160208091040260200160405190810160405280929190818152602001828054610706906135af565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600061076882611dfe565b6107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90613653565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ed82610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906136e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087d611e6a565b73ffffffffffffffffffffffffffffffffffffffff1614806108ac57506108ab816108a6611e6a565b611bf2565b5b6108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613777565b60405180910390fd5b6108f58383611e72565b505050565b600060016109086007611f2b565b61091291906137c6565b905090565b610928610922611e6a565b82611f39565b610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e9061386c565b60405180910390fd5b610972838383612017565b505050565b61097f612ce1565b600060014361098e91906137c6565b40836040516020016109a19291906138d8565b6040516020818303038152906040528051906020012060001c90506040518061014001604052806008836109d59190613933565b61ffff1681526020016109fa611b39603085901c6109f39190613933565b6001612273565b61ffff168152602001610a1b611b3984610a149190613933565b6000612273565b61ffff1681526020016001610a42611b39606086901c610a3b9190613933565b6002612273565b61ffff1614151581526020016008609084901c610a5f9190613933565b61ffff1681526020016001610a86611b3960c086901c610a7f9190613933565b6003612273565b61ffff161415158152602001600860f084901c610aa39190613933565b61ffff168152602001600483610ab99190613933565b61ffff1681526020016001610adc611b3985610ad59190613933565b6004612273565b61ffff1614151581526020016001600284610af79190613933565b61ffff16141515815250915050919050565b610b11611e6a565b73ffffffffffffffffffffffffffffffffffffffff16610b2f6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906139b0565b60405180910390fd5b610b8d6114f8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bd2573d6000803e3d6000fd5b50565b610bf0838383604051806020016040528060008152506118c7565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613a42565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90613ad4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d67611e6a565b73ffffffffffffffffffffffffffffffffffffffff16610d856114f8565b73ffffffffffffffffffffffffffffffffffffffff1614610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906139b0565b60405180910390fd5b610de56000612363565b565b606080600c6000808152602001908152602001600020836000015161ffff1681548110610e1757610e16613af4565b5b9060005260206000209060020201600001600c600060028152602001908152602001600020846020015161ffff1681548110610e5657610e55613af4565b5b9060005260206000209060020201600001600c600060028152602001908152602001600020856020015161ffff1681548110610e9557610e94613af4565b5b9060005260206000209060020201600001600c600060028152602001908152602001600020866020015161ffff1681548110610ed457610ed3613af4565b5b9060005260206000209060020201600001600a60008860e0015161ffff168152602001908152602001600020600001600a60008960e0015161ffff168152602001908152602001600020600101604051602001610f3797969594939291906143ab565b60405160208183030381529060405290506000826040015161ffff161461107f5760005b600b6000846040015161ffff168152602001908152602001600020805490508160ff16101561107d5781600c600060028152602001908152602001600020846020015161ffff1681548110610fb357610fb2613af4565b5b9060005260206000209060020201600001600b6000866040015161ffff1681526020019081526020016000208360ff1681548110610ff457610ff3613af4565b5b9060005260206000209060020201600001600b6000876040015161ffff1681526020019081526020016000208460ff168154811061103557611034613af4565b5b90600052602060002090600202016001016040516020016110599493929190614543565b60405160208183030381529060405291508080611075906145ba565b915050610f5b565b505b8160a001511561112c5780600c6000600181526020019081526020016000208360c0015161ffff16815481106110b8576110b7613af4565b5b9060005260206000209060020201600001600c6000600181526020019081526020016000208460c0015161ffff16815481106110f7576110f6613af4565b5b906000526020600020906002020160000160405160200161111a939291906146c8565b60405160208183030381529060405290505b8160600151156111d95780600c600060018152602001908152602001600020836080015161ffff168154811061116557611164613af4565b5b9060005260206000209060020201600001600c600060018152602001908152602001600020846080015161ffff16815481106111a4576111a3613af4565b5b90600052602060002090600202016000016040516020016111c7939291906147fe565b60405160208183030381529060405290505b8161010001511561120757806040516020016111f591906148c2565b60405160208183030381529060405290505b8161012001511561123957806040516020016112239190614956565b604051602081830303815290604052905061125c565b8060405160200161124a91906149ea565b60405160208183030381529060405290505b8060405160200161126d9190614b62565b6040516020818303038152906040529050919050565b606080600c6000808152602001908152602001600020836000015161ffff16815481106112b3576112b2613af4565b5b9060005260206000209060020201600101600d846040015161ffff16815481106112e0576112df613af4565b5b90600052602060002001600c600060028152602001908152602001600020856020015161ffff168154811061131857611317613af4565b5b9060005260206000209060020201600101600e8660e0015161ffff168154811061134557611344613af4565b5b90600052602060002001604051602001611363959493929190614dc9565b60405160208183030381529060405290508160a00151156113e15780600c6000600181526020019081526020016000208360c0015161ffff16815481106113ad576113ac613af4565b5b90600052602060002090600202016001016040516020016113cf929190614ede565b60405160208183030381529060405290505b81606001511561144e5780600c600060018152602001908152602001600020836080015161ffff168154811061141a57611419613af4565b5b906000526020600020906002020160010160405160200161143c929190614f8a565b60405160208183030381529060405290505b8161010001511561147c578060405160200161146a9190615036565b60405160208183030381529060405290505b816101200151156114ae578060405160200161149891906150ca565b60405160208183030381529060405290506114d1565b806040516020016114bf919061515e565b60405160208183030381529060405290505b806040516020016114e29190615218565b6040516020818303038152906040529050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611531906135af565b80601f016020809104026020016040519081016040528092919081815260200182805461155d906135af565b80156115aa5780601f1061157f576101008083540402835291602001916115aa565b820191906000526020600020905b81548152906001019060200180831161158d57829003601f168201915b5050505050905090565b600081116115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90615291565b60405180910390fd5b6006811061163a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611631906152fd565b60405180910390fd5b600854816116466108fa565b611650919061531d565b1115611691576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611688906153bf565b60405180910390fd5b66470de4df820000816116a491906153df565b3410156116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90615485565b60405180910390fd5b60005b818110156118ad5760006116fd6007611f2b565b9050600961170a82610977565b9080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff16021790555060608201518160000160066101000a81548160ff02191690831515021790555060808201518160000160076101000a81548161ffff021916908361ffff16021790555060a08201518160000160096101000a81548160ff02191690831515021790555060c082015181600001600a6101000a81548161ffff021916908361ffff16021790555060e082015181600001600c6101000a81548161ffff021916908361ffff16021790555061010082015181600001600e6101000a81548160ff02191690831515021790555061012082015181600001600f6101000a81548160ff021916908315150217905550505061188f3382612429565b6118996007611d7e565b5080806118a5906154a5565b9150506116e9565b5050565b6118c36118bc611e6a565b8383612447565b5050565b6118d86118d2611e6a565b83611f39565b611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e9061386c565b60405180910390fd5b611923848484846125b4565b50505050565b606061193482611dfe565b61193d57600080fd5b60006009838154811061195357611952613af4565b5b90600052602060002001604051806101400160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900461ffff1661ffff1661ffff1681526020016000820160069054906101000a900460ff161515151581526020016000820160079054906101000a900461ffff1661ffff1661ffff1681526020016000820160099054906101000a900460ff1615151515815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815260200160008201600c9054906101000a900461ffff1661ffff1661ffff16815260200160008201600e9054906101000a900460ff1615151515815260200160008201600f9054906101000a900460ff1615151515815250509050611ae3611aa384612610565b611ab4611aaf84610de7565b612771565b611abd84611283565b604051602001611acf93929190615702565b604051602081830303815290604052612771565b604051602001611af391906157ab565b604051602081830303815290604052915050919050565b66470de4df82000081565b60085481565b611b23611e6a565b73ffffffffffffffffffffffffffffffffffffffff16611b416114f8565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e906139b0565b60405180910390fd5b600854611ba26108fa565b10611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990615819565b60405180910390fd5b611bea6108fa565b600881905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c8e611e6a565b73ffffffffffffffffffffffffffffffffffffffff16611cac6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906139b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d69906158ab565b60405180910390fd5b611d7b81612363565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ee583610bf5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611f4482611dfe565b611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a9061593d565b60405180910390fd5b6000611f8e83610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ffd57508373ffffffffffffffffffffffffffffffffffffffff16611fe58461075d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200e575061200d8185611bf2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203782610bf5565b73ffffffffffffffffffffffffffffffffffffffff161461208d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612084906159cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490615a61565b60405180910390fd5b612108838383612909565b612113600082611e72565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216391906137c6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ba919061531d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000806000905060005b600f8460ff166005811061229457612293613af4565b5b01805490508160ff161015612357576000600f8560ff16600581106122bc576122bb613af4565b5b018260ff16815481106122d2576122d1613af4565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508261ffff168661ffff1610158015612322575080836123179190615a81565b61ffff168661ffff16105b15612335578160ff16935050505061235d565b80836123419190615a81565b925050808061234f906145ba565b91505061227d565b50600080fd5b92915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61244382826040518060200160405280600081525061290e565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad90615b05565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125a79190612e08565b60405180910390a3505050565b6125bf848484612017565b6125cb84848484612969565b61260a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260190615b97565b60405180910390fd5b50505050565b60606000821415612658576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061276c565b600082905060005b6000821461268a578080612673906154a5565b915050600a826126839190615bb7565b9150612660565b60008167ffffffffffffffff8111156126a6576126a56131cc565b5b6040519080825280601f01601f1916602001820160405280156126d85781602001600182028036833780820191505090505b5090505b60008514612765576001826126f191906137c6565b9150600a856127009190615be8565b603061270c919061531d565b60f81b81838151811061272257612721613af4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561275e9190615bb7565b94506126dc565b8093505050505b919050565b6060600082519050600081141561279a5760405180602001604052806000815250915050612904565b600060036002836127ab919061531d565b6127b59190615bb7565b60046127c191906153df565b905060006020826127d2919061531d565b67ffffffffffffffff8111156127eb576127ea6131cc565b5b6040519080825280601f01601f19166020018201604052801561281d5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615dd5604091399050600181016020830160005b868110156128c15760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612848565b5060038606600181146128db57600281146128eb576128f6565b613d3d60f01b60028303526128f6565b603d60f81b60018303525b508484525050819450505050505b919050565b505050565b6129188383612b00565b6129256000848484612969565b612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90615b97565b60405180910390fd5b505050565b600061298a8473ffffffffffffffffffffffffffffffffffffffff16612cce565b15612af3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b3611e6a565b8786866040518563ffffffff1660e01b81526004016129d59493929190615c6e565b602060405180830381600087803b1580156129ef57600080fd5b505af1925050508015612a2057506040513d601f19601f82011682018060405250810190612a1d9190615ccf565b60015b612aa3573d8060008114612a50576040519150601f19603f3d011682016040523d82523d6000602084013e612a55565b606091505b50600081511415612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9290615b97565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af8565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790615d48565b60405180910390fd5b612b7981611dfe565b15612bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb090615db4565b60405180910390fd5b612bc560008383612909565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c15919061531d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b604051806101400160405280600061ffff168152602001600061ffff168152602001600061ffff168152602001600015158152602001600061ffff168152602001600015158152602001600061ffff168152602001600061ffff1681526020016000151581526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9d81612d68565b8114612da857600080fd5b50565b600081359050612dba81612d94565b92915050565b600060208284031215612dd657612dd5612d5e565b5b6000612de484828501612dab565b91505092915050565b60008115159050919050565b612e0281612ded565b82525050565b6000602082019050612e1d6000830184612df9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e5d578082015181840152602081019050612e42565b83811115612e6c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e8e82612e23565b612e988185612e2e565b9350612ea8818560208601612e3f565b612eb181612e72565b840191505092915050565b60006020820190508181036000830152612ed68184612e83565b905092915050565b6000819050919050565b612ef181612ede565b8114612efc57600080fd5b50565b600081359050612f0e81612ee8565b92915050565b600060208284031215612f2a57612f29612d5e565b5b6000612f3884828501612eff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6c82612f41565b9050919050565b612f7c81612f61565b82525050565b6000602082019050612f976000830184612f73565b92915050565b612fa681612f61565b8114612fb157600080fd5b50565b600081359050612fc381612f9d565b92915050565b60008060408385031215612fe057612fdf612d5e565b5b6000612fee85828601612fb4565b9250506020612fff85828601612eff565b9150509250929050565b61301281612ede565b82525050565b600060208201905061302d6000830184613009565b92915050565b60008060006060848603121561304c5761304b612d5e565b5b600061305a86828701612fb4565b935050602061306b86828701612fb4565b925050604061307c86828701612eff565b9150509250925092565b600061ffff82169050919050565b61309d81613086565b82525050565b6130ac81612ded565b82525050565b610140820160008201516130c96000850182613094565b5060208201516130dc6020850182613094565b5060408201516130ef6040850182613094565b50606082015161310260608501826130a3565b5060808201516131156080850182613094565b5060a082015161312860a08501826130a3565b5060c082015161313b60c0850182613094565b5060e082015161314e60e0850182613094565b506101008201516131636101008501826130a3565b506101208201516131786101208501826130a3565b50505050565b60006101408201905061319460008301846130b2565b92915050565b6000602082840312156131b0576131af612d5e565b5b60006131be84828501612fb4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61320482612e72565b810181811067ffffffffffffffff82111715613223576132226131cc565b5b80604052505050565b6000613236612d54565b905061324282826131fb565b919050565b61325081613086565b811461325b57600080fd5b50565b60008135905061326d81613247565b92915050565b61327c81612ded565b811461328757600080fd5b50565b60008135905061329981613273565b92915050565b600061014082840312156132b6576132b56131c7565b5b6132c161014061322c565b905060006132d18482850161325e565b60008301525060206132e58482850161325e565b60208301525060406132f98482850161325e565b604083015250606061330d8482850161328a565b60608301525060806133218482850161325e565b60808301525060a06133358482850161328a565b60a08301525060c06133498482850161325e565b60c08301525060e061335d8482850161325e565b60e0830152506101006133728482850161328a565b610100830152506101206133888482850161328a565b6101208301525092915050565b600061014082840312156133ac576133ab612d5e565b5b60006133ba8482850161329f565b91505092915050565b600080604083850312156133da576133d9612d5e565b5b60006133e885828601612fb4565b92505060206133f98582860161328a565b9150509250929050565b600080fd5b600080fd5b600067ffffffffffffffff821115613428576134276131cc565b5b61343182612e72565b9050602081019050919050565b82818337600083830152505050565b600061346061345b8461340d565b61322c565b90508281526020810184848401111561347c5761347b613408565b5b61348784828561343e565b509392505050565b600082601f8301126134a4576134a3613403565b5b81356134b484826020860161344d565b91505092915050565b600080600080608085870312156134d7576134d6612d5e565b5b60006134e587828801612fb4565b94505060206134f687828801612fb4565b935050604061350787828801612eff565b925050606085013567ffffffffffffffff81111561352857613527612d63565b5b6135348782880161348f565b91505092959194509250565b6000806040838503121561355757613556612d5e565b5b600061356585828601612fb4565b925050602061357685828601612fb4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135c757607f821691505b602082108114156135db576135da613580565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061363d602c83612e2e565b9150613648826135e1565b604082019050919050565b6000602082019050818103600083015261366c81613630565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006136cf602183612e2e565b91506136da82613673565b604082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613761603883612e2e565b915061376c82613705565b604082019050919050565b6000602082019050818103600083015261379081613754565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137d182612ede565b91506137dc83612ede565b9250828210156137ef576137ee613797565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613856603183612e2e565b9150613861826137fa565b604082019050919050565b6000602082019050818103600083015261388581613849565b9050919050565b6000819050919050565b6000819050919050565b6138b16138ac8261388c565b613896565b82525050565b6000819050919050565b6138d26138cd82612ede565b6138b7565b82525050565b60006138e482856138a0565b6020820191506138f482846138c1565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061393e82613086565b915061394983613086565b92508261395957613958613904565b5b828206905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061399a602083612e2e565b91506139a582613964565b602082019050919050565b600060208201905081810360008301526139c98161398d565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a2c602983612e2e565b9150613a37826139d0565b604082019050919050565b60006020820190508181036000830152613a5b81613a1f565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613abe602a83612e2e565b9150613ac982613a62565b604082019050919050565b60006020820190508181036000830152613aed81613ab1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000613b3982612e23565b613b438185613b23565b9350613b53818560208601612e3f565b80840191505092915050565b7f3c726563742066696c6c3d270000000000000000000000000000000000000000600082015250565b6000613b95600c83613b23565b9150613ba082613b5f565b600c82019050919050565b60008190508160005260206000209050919050565b60008154613bcd816135af565b613bd78186613b23565b94506001821660008114613bf25760018114613c0357613c36565b60ff19831686528186019350613c36565b613c0c85613bab565b60005b83811015613c2e57815481890152600182019150602081019050613c0f565b838801955050505b50505092915050565b7f27206865696768743d273234272077696474683d27323427202f3e0000000000600082015250565b6000613c75601b83613b23565b9150613c8082613c3f565b601b82019050919050565b7f3c726563742066696c6c3d272335363765333927206865696768743d2731272060008201527f77696474683d27342720783d27392720793d273927202f3e0000000000000000602082015250565b6000613ce7603883613b23565b9150613cf282613c8b565b603882019050919050565b7f3c726563742066696c6c3d272335363765333927206865696768743d2731272060008201527f77696474683d27362720783d27382720793d27313027202f3e00000000000000602082015250565b6000613d59603983613b23565b9150613d6482613cfd565b603982019050919050565b7f3c726563742066696c6c3d272335363765333927206865696768743d2733272060008201527f77696474683d27382720783d27372720793d27313127202f3e00000000000000602082015250565b6000613dcb603983613b23565b9150613dd682613d6f565b603982019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27332720783d2731352720793d273927202f3e00000000000000602082015250565b6000613e3d603983613b23565b9150613e4882613de1565b603982019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2733272060008201527f77696474683d27342720783d2731352720793d27313027202f3e000000000000602082015250565b6000613eaf603a83613b23565b9150613eba82613e53565b603a82019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27332720783d2731352720793d27313327202f3e000000000000602082015250565b6000613f21603a83613b23565b9150613f2c82613ec5565b603a82019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27382720783d27372720793d27313427202f3e00000000000000602082015250565b6000613f93603983613b23565b9150613f9e82613f37565b603982019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27322720783d27372720793d27313527202f3e00000000000000602082015250565b6000614005603983613b23565b915061401082613fa9565b603982019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27322720783d2731332720793d27313527202f3e3c726563742060208201527f66696c6c3d272366666666666627206865696768743d2732272077696474683d60408201527f27322720783d2731362720793d27313027202f3e000000000000000000000000606082015250565b60006140c3607483613b23565b91506140ce8261401b565b607482019050919050565b7f27206865696768743d2731272077696474683d27362720783d27352720793d2760008201527f3827202f3e000000000000000000000000000000000000000000000000000000602082015250565b6000614135602583613b23565b9150614140826140d9565b602582019050919050565b7f27206865696768743d2731272077696474683d27342720783d27372720793d2760008201527f3927202f3e000000000000000000000000000000000000000000000000000000602082015250565b60006141a7602583613b23565b91506141b28261414b565b602582019050919050565b7f27206865696768743d2731272077696474683d27322720783d27392720793d2760008201527f313027202f3e0000000000000000000000000000000000000000000000000000602082015250565b6000614219602683613b23565b9150614224826141bd565b602682019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27312720783d27362720793d27313327202f3e00000000000000602082015250565b600061428b603983613b23565b91506142968261422f565b603982019050919050565b7f3c726563742066696c6c3d272330303030303027206865696768743d2731272060008201527f77696474683d27312720783d2700000000000000000000000000000000000000602082015250565b60006142fd602d83613b23565b9150614308826142a1565b602d82019050919050565b7f2720793d27000000000000000000000000000000000000000000000000000000600082015250565b6000614349600583613b23565b915061435482614313565b600582019050919050565b7f27202f3e00000000000000000000000000000000000000000000000000000000600082015250565b6000614395600483613b23565b91506143a08261435f565b600482019050919050565b60006143b7828a613b2e565b91506143c282613b88565b91506143ce8289613bc0565b91506143d982613c68565b91506143e482613cda565b91506143ef82613d4c565b91506143fa82613dbe565b915061440582613e30565b915061441082613ea2565b915061441b82613f14565b915061442682613f86565b915061443182613ff8565b915061443c826140b6565b915061444782613b88565b91506144538288613bc0565b915061445e82614128565b915061446982613b88565b91506144758287613bc0565b91506144808261419a565b915061448b82613b88565b91506144978286613bc0565b91506144a28261420c565b91506144ad8261427e565b91506144b8826142f0565b91506144c48285613bc0565b91506144cf8261433c565b91506144db8284613bc0565b91506144e682614388565b915081905098975050505050505050565b7f27206865696768743d2731272077696474683d27312720783d27000000000000600082015250565b600061452d601a83613b23565b9150614538826144f7565b601a82019050919050565b600061454f8287613b2e565b915061455a82613b88565b91506145668286613bc0565b915061457182614520565b915061457d8285613bc0565b91506145888261433c565b91506145948284613bc0565b915061459f82614388565b915081905095945050505050565b600060ff82169050919050565b60006145c5826145ad565b915060ff8214156145d9576145d8613797565b5b600182019050919050565b7f27206865696768743d2731272077696474683d27322720783d27372720793d2760008201527f313527202f3e3c726563742066696c6c3d270000000000000000000000000000602082015250565b6000614640603283613b23565b915061464b826145e4565b603282019050919050565b7f27206865696768743d2731272077696474683d27322720783d2731332720793d60008201527f27313527202f3e00000000000000000000000000000000000000000000000000602082015250565b60006146b2602783613b23565b91506146bd82614656565b602782019050919050565b60006146d48286613b2e565b91506146df82613b88565b91506146eb8285613bc0565b91506146f682614633565b91506147028284613bc0565b915061470d826146a5565b9150819050949350505050565b7f27206865696768743d2731272077696474683d27312720783d2731342720793d60008201527f273827202f3e3c726563742066696c6c3d270000000000000000000000000000602082015250565b6000614776603283613b23565b91506147818261471a565b603282019050919050565b7f27206865696768743d2731272077696474683d27332720783d2731352720793d60008201527f273927202f3e0000000000000000000000000000000000000000000000000000602082015250565b60006147e8602683613b23565b91506147f38261478c565b602682019050919050565b600061480a8286613b2e565b915061481582613b88565b91506148218285613bc0565b915061482c82614769565b91506148388284613bc0565b9150614843826147db565b9150819050949350505050565b7f3c726563742066696c6c3d272365643230323427206865696768743d2731272060008201527f77696474683d27312720783d2731382720793d27313327202f3e000000000000602082015250565b60006148ac603a83613b23565b91506148b782614850565b603a82019050919050565b60006148ce8284613b2e565b91506148d98261489f565b915081905092915050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27312720783d27352720793d27313227202f3e00000000000000602082015250565b6000614940603983613b23565b915061494b826148e4565b603982019050919050565b60006149628284613b2e565b915061496d82614933565b915081905092915050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27312720783d27352720793d27313427202f3e00000000000000602082015250565b60006149d4603983613b23565b91506149df82614978565b603982019050919050565b60006149f68284613b2e565b9150614a01826149c7565b915081905092915050565b7f3c7376672069643d27736d6f6c2d77696e6765642d747572746c652720786d6c60008201527f6e733d27687474703a2f2f7777772e77332e6f72672f323030302f737667272060208201527f7072657365727665417370656374526174696f3d27784d696e594d696e206d6560408201527f6574272076696577426f783d27302030203234203234273e0000000000000000606082015250565b6000614ab4607883613b23565b9150614abf82614a0c565b607882019050919050565b7f3c7374796c653e23736d6f6c2d77696e6765642d747572746c657b736861706560008201527f2d72656e646572696e673a637269737065646765733b7d3c2f7374796c653e3c60208201527f2f7376673e000000000000000000000000000000000000000000000000000000604082015250565b6000614b4c604583613b23565b9150614b5782614aca565b604582019050919050565b6000614b6d82614aa7565b9150614b798284613b2e565b9150614b8482614b3f565b915081905092915050565b7f7b2274726169745f74797065223a224261636b67726f756e64222c202276616c60008201527f7565223a22000000000000000000000000000000000000000000000000000000602082015250565b6000614beb602583613b23565b9150614bf682614b8f565b602582019050919050565b7f227d2c0000000000000000000000000000000000000000000000000000000000600082015250565b6000614c37600383613b23565b9150614c4282614c01565b600382019050919050565b7f7b2274726169745f74797065223a2257696e672054797065222c202276616c7560008201527f65223a2200000000000000000000000000000000000000000000000000000000602082015250565b6000614ca9602483613b23565b9150614cb482614c4d565b602482019050919050565b7f7b2274726169745f74797065223a2257696e6720436f6c6f72222c202276616c60008201527f7565223a22000000000000000000000000000000000000000000000000000000602082015250565b6000614d1b602583613b23565b9150614d2682614cbf565b602582019050919050565b7f7b2274726169745f74797065223a2245796573222c202276616c7565223a2200600082015250565b6000614d67601f83613b23565b9150614d7282614d31565b601f82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000614db3600283613b23565b9150614dbe82614d7d565b600282019050919050565b6000614dd58288613b2e565b9150614de082614bde565b9150614dec8287613bc0565b9150614df782614c2a565b9150614e0282614c9c565b9150614e0e8286613bc0565b9150614e1982614c2a565b9150614e2482614d0e565b9150614e308285613bc0565b9150614e3b82614c2a565b9150614e4682614d5a565b9150614e528284613bc0565b9150614e5d82614da6565b91508190509695505050505050565b7f2c7b2274726169745f74797065223a22426f6f7473222c202276616c7565223a60008201527f2200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ec8602183613b23565b9150614ed382614e6c565b602182019050919050565b6000614eea8285613b2e565b9150614ef582614ebb565b9150614f018284613bc0565b9150614f0c82614da6565b91508190509392505050565b7f2c7b2274726169745f74797065223a2242616e64616e61222c202276616c756560008201527f223a220000000000000000000000000000000000000000000000000000000000602082015250565b6000614f74602383613b23565b9150614f7f82614f18565b602382019050919050565b6000614f968285613b2e565b9150614fa182614f67565b9150614fad8284613bc0565b9150614fb882614da6565b91508190509392505050565b7f2c7b2274726169745f74797065223a22546f6e677565222c202276616c75652260008201527f3a2254727565227d000000000000000000000000000000000000000000000000602082015250565b6000615020602883613b23565b915061502b82614fc4565b602882019050919050565b60006150428284613b2e565b915061504d82615013565b915081905092915050565b7f2c7b2274726169745f74797065223a225461696c222c202276616c7565223a2260008201527f5570227d00000000000000000000000000000000000000000000000000000000602082015250565b60006150b4602483613b23565b91506150bf82615058565b602482019050919050565b60006150d68284613b2e565b91506150e1826150a7565b915081905092915050565b7f2c7b2274726169745f74797065223a225461696c222c202276616c7565223a2260008201527f446f776e227d0000000000000000000000000000000000000000000000000000602082015250565b6000615148602683613b23565b9150615153826150ec565b602682019050919050565b600061516a8284613b2e565b91506151758261513b565b915081905092915050565b7f5b00000000000000000000000000000000000000000000000000000000000000600082015250565b60006151b6600183613b23565b91506151c182615180565b600182019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000615202600183613b23565b915061520d826151cc565b600182019050919050565b6000615223826151a9565b915061522f8284613b2e565b915061523a826151f5565b915081905092915050565b7f5175616e74697479206d7573742062652067726561746572207468616e20302e600082015250565b600061527b602083612e2e565b915061528682615245565b602082019050919050565b600060208201905081810360008301526152aa8161526e565b9050919050565b7f45786365656473206d617820706572206d696e742e0000000000000000000000600082015250565b60006152e7601583612e2e565b91506152f2826152b1565b602082019050919050565b60006020820190508181036000830152615316816152da565b9050919050565b600061532882612ede565b915061533383612ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561536857615367613797565b5b828201905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006153a9601383612e2e565b91506153b482615373565b602082019050919050565b600060208201905081810360008301526153d88161539c565b9050919050565b60006153ea82612ede565b91506153f583612ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561542e5761542d613797565b5b828202905092915050565b7f57726f6e67204554482076616c75652073656e742e0000000000000000000000600082015250565b600061546f601583612e2e565b915061547a82615439565b602082019050919050565b6000602082019050818103600083015261549e81615462565b9050919050565b60006154b082612ede565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154e3576154e2613797565b5b600182019050919050565b7f7b226e616d65223a2022536d6f6c2057696e67656420547572746c6520230000600082015250565b6000615524601e83613b23565b915061552f826154ee565b601e82019050919050565b7f222c20226465736372697074696f6e223a2022536d6f6c2057696e676564205460008201527f7572746c657a206973206120636f6c6c656374696f6e206f6620757020746f2060208201527f362c3936392066756c6c79206f6e2d636861696e20636861726163746572732060408201527f74686174206d69676874206265206120677265617420696e766573746d656e7460608201527f206f70706f7274756e6974792e204d696e7420796f757220747572746c657a2060808201527f6265666f7265207468657920666c79206177617921222c2022696d616765223a60a08201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c0000000060c082015250565b600061565460dc83613b23565b915061565f8261553a565b60dc82019050919050565b7f222c2261747472696275746573223a0000000000000000000000000000000000600082015250565b60006156a0600f83613b23565b91506156ab8261566a565b600f82019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006156ec600183613b23565b91506156f7826156b6565b600182019050919050565b600061570d82615517565b91506157198286613b2e565b915061572482615647565b91506157308285613b2e565b915061573b82615693565b91506157478284613b2e565b9150615752826156df565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000615795601d83613b23565b91506157a08261575f565b601d82019050919050565b60006157b682615788565b91506157c28284613b2e565b915081905092915050565b7f416c6c206d696e7465642e000000000000000000000000000000000000000000600082015250565b6000615803600b83612e2e565b915061580e826157cd565b602082019050919050565b60006020820190508181036000830152615832816157f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615895602683612e2e565b91506158a082615839565b604082019050919050565b600060208201905081810360008301526158c481615888565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615927602c83612e2e565b9150615932826158cb565b604082019050919050565b600060208201905081810360008301526159568161591a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006159b9602983612e2e565b91506159c48261595d565b604082019050919050565b600060208201905081810360008301526159e8816159ac565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615a4b602483612e2e565b9150615a56826159ef565b604082019050919050565b60006020820190508181036000830152615a7a81615a3e565b9050919050565b6000615a8c82613086565b9150615a9783613086565b92508261ffff03821115615aae57615aad613797565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615aef601983612e2e565b9150615afa82615ab9565b602082019050919050565b60006020820190508181036000830152615b1e81615ae2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615b81603283612e2e565b9150615b8c82615b25565b604082019050919050565b60006020820190508181036000830152615bb081615b74565b9050919050565b6000615bc282612ede565b9150615bcd83612ede565b925082615bdd57615bdc613904565b5b828204905092915050565b6000615bf382612ede565b9150615bfe83612ede565b925082615c0e57615c0d613904565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615c4082615c19565b615c4a8185615c24565b9350615c5a818560208601612e3f565b615c6381612e72565b840191505092915050565b6000608082019050615c836000830187612f73565b615c906020830186612f73565b615c9d6040830185613009565b8181036060830152615caf8184615c35565b905095945050505050565b600081519050615cc981612d94565b92915050565b600060208284031215615ce557615ce4612d5e565b5b6000615cf384828501615cba565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d32602083612e2e565b9150615d3d82615cfc565b602082019050919050565b60006020820190508181036000830152615d6181615d25565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615d9e601c83612e2e565b9150615da982615d68565b602082019050919050565b60006020820190508181036000830152615dcd81615d91565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220cc47a2ddcaf6e10c4666a37241c0c26523c2a5f509b4544d8ff440443ff0f6f964736f6c63430008090033
Deployed Bytecode
0x6080604052600436106101665760003560e01c80637d24648d116100d1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb0114610541578063e104f60c1461056c578063e985e9c514610583578063f2fde38b146105c057610166565b8063b88d4fde146104b0578063c87b56dd146104d9578063d2d8cb671461051657610166565b80637d24648d1461039b578063857b5c7b146103d85780638da5cb5b1461041557806395d89b4114610440578063a0712d681461046b578063a22cb4651461048757610166565b806335f6a79d1161012357806335f6a79d1461028d5780633ccfd60b146102ca57806342842e0e146102e15780636352211e1461030a57806370a0823114610347578063715018a61461038457610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612dc0565b6105e9565b60405161019f9190612e08565b60405180910390f35b3480156101b457600080fd5b506101bd6106cb565b6040516101ca9190612ebc565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612f14565b61075d565b6040516102079190612f82565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612fc9565b6107e2565b005b34801561024557600080fd5b5061024e6108fa565b60405161025b9190613018565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190613033565b610917565b005b34801561029957600080fd5b506102b460048036038101906102af9190612f14565b610977565b6040516102c1919061317e565b60405180910390f35b3480156102d657600080fd5b506102df610b09565b005b3480156102ed57600080fd5b5061030860048036038101906103039190613033565b610bd5565b005b34801561031657600080fd5b50610331600480360381019061032c9190612f14565b610bf5565b60405161033e9190612f82565b60405180910390f35b34801561035357600080fd5b5061036e6004803603810190610369919061319a565b610ca7565b60405161037b9190613018565b60405180910390f35b34801561039057600080fd5b50610399610d5f565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190613395565b610de7565b6040516103cf9190612ebc565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613395565b611283565b60405161040c9190612ebc565b60405180910390f35b34801561042157600080fd5b5061042a6114f8565b6040516104379190612f82565b60405180910390f35b34801561044c57600080fd5b50610455611522565b6040516104629190612ebc565b60405180910390f35b61048560048036038101906104809190612f14565b6115b4565b005b34801561049357600080fd5b506104ae60048036038101906104a991906133c3565b6118b1565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906134bd565b6118c7565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190612f14565b611929565b60405161050d9190612ebc565b60405180910390f35b34801561052257600080fd5b5061052b611b0a565b6040516105389190613018565b60405180910390f35b34801561054d57600080fd5b50610556611b15565b6040516105639190613018565b60405180910390f35b34801561057857600080fd5b50610581611b1b565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190613540565b611bf2565b6040516105b79190612e08565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e2919061319a565b611c86565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c457506106c382611d94565b5b9050919050565b6060600080546106da906135af565b80601f0160208091040260200160405190810160405280929190818152602001828054610706906135af565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600061076882611dfe565b6107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90613653565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ed82610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906136e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087d611e6a565b73ffffffffffffffffffffffffffffffffffffffff1614806108ac57506108ab816108a6611e6a565b611bf2565b5b6108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613777565b60405180910390fd5b6108f58383611e72565b505050565b600060016109086007611f2b565b61091291906137c6565b905090565b610928610922611e6a565b82611f39565b610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e9061386c565b60405180910390fd5b610972838383612017565b505050565b61097f612ce1565b600060014361098e91906137c6565b40836040516020016109a19291906138d8565b6040516020818303038152906040528051906020012060001c90506040518061014001604052806008836109d59190613933565b61ffff1681526020016109fa611b39603085901c6109f39190613933565b6001612273565b61ffff168152602001610a1b611b3984610a149190613933565b6000612273565b61ffff1681526020016001610a42611b39606086901c610a3b9190613933565b6002612273565b61ffff1614151581526020016008609084901c610a5f9190613933565b61ffff1681526020016001610a86611b3960c086901c610a7f9190613933565b6003612273565b61ffff161415158152602001600860f084901c610aa39190613933565b61ffff168152602001600483610ab99190613933565b61ffff1681526020016001610adc611b3985610ad59190613933565b6004612273565b61ffff1614151581526020016001600284610af79190613933565b61ffff16141515815250915050919050565b610b11611e6a565b73ffffffffffffffffffffffffffffffffffffffff16610b2f6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906139b0565b60405180910390fd5b610b8d6114f8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bd2573d6000803e3d6000fd5b50565b610bf0838383604051806020016040528060008152506118c7565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613a42565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90613ad4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d67611e6a565b73ffffffffffffffffffffffffffffffffffffffff16610d856114f8565b73ffffffffffffffffffffffffffffffffffffffff1614610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906139b0565b60405180910390fd5b610de56000612363565b565b606080600c6000808152602001908152602001600020836000015161ffff1681548110610e1757610e16613af4565b5b9060005260206000209060020201600001600c600060028152602001908152602001600020846020015161ffff1681548110610e5657610e55613af4565b5b9060005260206000209060020201600001600c600060028152602001908152602001600020856020015161ffff1681548110610e9557610e94613af4565b5b9060005260206000209060020201600001600c600060028152602001908152602001600020866020015161ffff1681548110610ed457610ed3613af4565b5b9060005260206000209060020201600001600a60008860e0015161ffff168152602001908152602001600020600001600a60008960e0015161ffff168152602001908152602001600020600101604051602001610f3797969594939291906143ab565b60405160208183030381529060405290506000826040015161ffff161461107f5760005b600b6000846040015161ffff168152602001908152602001600020805490508160ff16101561107d5781600c600060028152602001908152602001600020846020015161ffff1681548110610fb357610fb2613af4565b5b9060005260206000209060020201600001600b6000866040015161ffff1681526020019081526020016000208360ff1681548110610ff457610ff3613af4565b5b9060005260206000209060020201600001600b6000876040015161ffff1681526020019081526020016000208460ff168154811061103557611034613af4565b5b90600052602060002090600202016001016040516020016110599493929190614543565b60405160208183030381529060405291508080611075906145ba565b915050610f5b565b505b8160a001511561112c5780600c6000600181526020019081526020016000208360c0015161ffff16815481106110b8576110b7613af4565b5b9060005260206000209060020201600001600c6000600181526020019081526020016000208460c0015161ffff16815481106110f7576110f6613af4565b5b906000526020600020906002020160000160405160200161111a939291906146c8565b60405160208183030381529060405290505b8160600151156111d95780600c600060018152602001908152602001600020836080015161ffff168154811061116557611164613af4565b5b9060005260206000209060020201600001600c600060018152602001908152602001600020846080015161ffff16815481106111a4576111a3613af4565b5b90600052602060002090600202016000016040516020016111c7939291906147fe565b60405160208183030381529060405290505b8161010001511561120757806040516020016111f591906148c2565b60405160208183030381529060405290505b8161012001511561123957806040516020016112239190614956565b604051602081830303815290604052905061125c565b8060405160200161124a91906149ea565b60405160208183030381529060405290505b8060405160200161126d9190614b62565b6040516020818303038152906040529050919050565b606080600c6000808152602001908152602001600020836000015161ffff16815481106112b3576112b2613af4565b5b9060005260206000209060020201600101600d846040015161ffff16815481106112e0576112df613af4565b5b90600052602060002001600c600060028152602001908152602001600020856020015161ffff168154811061131857611317613af4565b5b9060005260206000209060020201600101600e8660e0015161ffff168154811061134557611344613af4565b5b90600052602060002001604051602001611363959493929190614dc9565b60405160208183030381529060405290508160a00151156113e15780600c6000600181526020019081526020016000208360c0015161ffff16815481106113ad576113ac613af4565b5b90600052602060002090600202016001016040516020016113cf929190614ede565b60405160208183030381529060405290505b81606001511561144e5780600c600060018152602001908152602001600020836080015161ffff168154811061141a57611419613af4565b5b906000526020600020906002020160010160405160200161143c929190614f8a565b60405160208183030381529060405290505b8161010001511561147c578060405160200161146a9190615036565b60405160208183030381529060405290505b816101200151156114ae578060405160200161149891906150ca565b60405160208183030381529060405290506114d1565b806040516020016114bf919061515e565b60405160208183030381529060405290505b806040516020016114e29190615218565b6040516020818303038152906040529050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611531906135af565b80601f016020809104026020016040519081016040528092919081815260200182805461155d906135af565b80156115aa5780601f1061157f576101008083540402835291602001916115aa565b820191906000526020600020905b81548152906001019060200180831161158d57829003601f168201915b5050505050905090565b600081116115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90615291565b60405180910390fd5b6006811061163a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611631906152fd565b60405180910390fd5b600854816116466108fa565b611650919061531d565b1115611691576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611688906153bf565b60405180910390fd5b66470de4df820000816116a491906153df565b3410156116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90615485565b60405180910390fd5b60005b818110156118ad5760006116fd6007611f2b565b9050600961170a82610977565b9080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548161ffff021916908361ffff16021790555060608201518160000160066101000a81548160ff02191690831515021790555060808201518160000160076101000a81548161ffff021916908361ffff16021790555060a08201518160000160096101000a81548160ff02191690831515021790555060c082015181600001600a6101000a81548161ffff021916908361ffff16021790555060e082015181600001600c6101000a81548161ffff021916908361ffff16021790555061010082015181600001600e6101000a81548160ff02191690831515021790555061012082015181600001600f6101000a81548160ff021916908315150217905550505061188f3382612429565b6118996007611d7e565b5080806118a5906154a5565b9150506116e9565b5050565b6118c36118bc611e6a565b8383612447565b5050565b6118d86118d2611e6a565b83611f39565b611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e9061386c565b60405180910390fd5b611923848484846125b4565b50505050565b606061193482611dfe565b61193d57600080fd5b60006009838154811061195357611952613af4565b5b90600052602060002001604051806101400160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900461ffff1661ffff1661ffff1681526020016000820160069054906101000a900460ff161515151581526020016000820160079054906101000a900461ffff1661ffff1661ffff1681526020016000820160099054906101000a900460ff1615151515815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815260200160008201600c9054906101000a900461ffff1661ffff1661ffff16815260200160008201600e9054906101000a900460ff1615151515815260200160008201600f9054906101000a900460ff1615151515815250509050611ae3611aa384612610565b611ab4611aaf84610de7565b612771565b611abd84611283565b604051602001611acf93929190615702565b604051602081830303815290604052612771565b604051602001611af391906157ab565b604051602081830303815290604052915050919050565b66470de4df82000081565b60085481565b611b23611e6a565b73ffffffffffffffffffffffffffffffffffffffff16611b416114f8565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e906139b0565b60405180910390fd5b600854611ba26108fa565b10611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990615819565b60405180910390fd5b611bea6108fa565b600881905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c8e611e6a565b73ffffffffffffffffffffffffffffffffffffffff16611cac6114f8565b73ffffffffffffffffffffffffffffffffffffffff1614611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906139b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d69906158ab565b60405180910390fd5b611d7b81612363565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ee583610bf5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611f4482611dfe565b611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a9061593d565b60405180910390fd5b6000611f8e83610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ffd57508373ffffffffffffffffffffffffffffffffffffffff16611fe58461075d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200e575061200d8185611bf2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203782610bf5565b73ffffffffffffffffffffffffffffffffffffffff161461208d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612084906159cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490615a61565b60405180910390fd5b612108838383612909565b612113600082611e72565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216391906137c6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ba919061531d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000806000905060005b600f8460ff166005811061229457612293613af4565b5b01805490508160ff161015612357576000600f8560ff16600581106122bc576122bb613af4565b5b018260ff16815481106122d2576122d1613af4565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508261ffff168661ffff1610158015612322575080836123179190615a81565b61ffff168661ffff16105b15612335578160ff16935050505061235d565b80836123419190615a81565b925050808061234f906145ba565b91505061227d565b50600080fd5b92915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61244382826040518060200160405280600081525061290e565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad90615b05565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125a79190612e08565b60405180910390a3505050565b6125bf848484612017565b6125cb84848484612969565b61260a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260190615b97565b60405180910390fd5b50505050565b60606000821415612658576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061276c565b600082905060005b6000821461268a578080612673906154a5565b915050600a826126839190615bb7565b9150612660565b60008167ffffffffffffffff8111156126a6576126a56131cc565b5b6040519080825280601f01601f1916602001820160405280156126d85781602001600182028036833780820191505090505b5090505b60008514612765576001826126f191906137c6565b9150600a856127009190615be8565b603061270c919061531d565b60f81b81838151811061272257612721613af4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561275e9190615bb7565b94506126dc565b8093505050505b919050565b6060600082519050600081141561279a5760405180602001604052806000815250915050612904565b600060036002836127ab919061531d565b6127b59190615bb7565b60046127c191906153df565b905060006020826127d2919061531d565b67ffffffffffffffff8111156127eb576127ea6131cc565b5b6040519080825280601f01601f19166020018201604052801561281d5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615dd5604091399050600181016020830160005b868110156128c15760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612848565b5060038606600181146128db57600281146128eb576128f6565b613d3d60f01b60028303526128f6565b603d60f81b60018303525b508484525050819450505050505b919050565b505050565b6129188383612b00565b6129256000848484612969565b612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90615b97565b60405180910390fd5b505050565b600061298a8473ffffffffffffffffffffffffffffffffffffffff16612cce565b15612af3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b3611e6a565b8786866040518563ffffffff1660e01b81526004016129d59493929190615c6e565b602060405180830381600087803b1580156129ef57600080fd5b505af1925050508015612a2057506040513d601f19601f82011682018060405250810190612a1d9190615ccf565b60015b612aa3573d8060008114612a50576040519150601f19603f3d011682016040523d82523d6000602084013e612a55565b606091505b50600081511415612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9290615b97565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af8565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790615d48565b60405180910390fd5b612b7981611dfe565b15612bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb090615db4565b60405180910390fd5b612bc560008383612909565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c15919061531d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b604051806101400160405280600061ffff168152602001600061ffff168152602001600061ffff168152602001600015158152602001600061ffff168152602001600015158152602001600061ffff168152602001600061ffff1681526020016000151581526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9d81612d68565b8114612da857600080fd5b50565b600081359050612dba81612d94565b92915050565b600060208284031215612dd657612dd5612d5e565b5b6000612de484828501612dab565b91505092915050565b60008115159050919050565b612e0281612ded565b82525050565b6000602082019050612e1d6000830184612df9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e5d578082015181840152602081019050612e42565b83811115612e6c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e8e82612e23565b612e988185612e2e565b9350612ea8818560208601612e3f565b612eb181612e72565b840191505092915050565b60006020820190508181036000830152612ed68184612e83565b905092915050565b6000819050919050565b612ef181612ede565b8114612efc57600080fd5b50565b600081359050612f0e81612ee8565b92915050565b600060208284031215612f2a57612f29612d5e565b5b6000612f3884828501612eff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6c82612f41565b9050919050565b612f7c81612f61565b82525050565b6000602082019050612f976000830184612f73565b92915050565b612fa681612f61565b8114612fb157600080fd5b50565b600081359050612fc381612f9d565b92915050565b60008060408385031215612fe057612fdf612d5e565b5b6000612fee85828601612fb4565b9250506020612fff85828601612eff565b9150509250929050565b61301281612ede565b82525050565b600060208201905061302d6000830184613009565b92915050565b60008060006060848603121561304c5761304b612d5e565b5b600061305a86828701612fb4565b935050602061306b86828701612fb4565b925050604061307c86828701612eff565b9150509250925092565b600061ffff82169050919050565b61309d81613086565b82525050565b6130ac81612ded565b82525050565b610140820160008201516130c96000850182613094565b5060208201516130dc6020850182613094565b5060408201516130ef6040850182613094565b50606082015161310260608501826130a3565b5060808201516131156080850182613094565b5060a082015161312860a08501826130a3565b5060c082015161313b60c0850182613094565b5060e082015161314e60e0850182613094565b506101008201516131636101008501826130a3565b506101208201516131786101208501826130a3565b50505050565b60006101408201905061319460008301846130b2565b92915050565b6000602082840312156131b0576131af612d5e565b5b60006131be84828501612fb4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61320482612e72565b810181811067ffffffffffffffff82111715613223576132226131cc565b5b80604052505050565b6000613236612d54565b905061324282826131fb565b919050565b61325081613086565b811461325b57600080fd5b50565b60008135905061326d81613247565b92915050565b61327c81612ded565b811461328757600080fd5b50565b60008135905061329981613273565b92915050565b600061014082840312156132b6576132b56131c7565b5b6132c161014061322c565b905060006132d18482850161325e565b60008301525060206132e58482850161325e565b60208301525060406132f98482850161325e565b604083015250606061330d8482850161328a565b60608301525060806133218482850161325e565b60808301525060a06133358482850161328a565b60a08301525060c06133498482850161325e565b60c08301525060e061335d8482850161325e565b60e0830152506101006133728482850161328a565b610100830152506101206133888482850161328a565b6101208301525092915050565b600061014082840312156133ac576133ab612d5e565b5b60006133ba8482850161329f565b91505092915050565b600080604083850312156133da576133d9612d5e565b5b60006133e885828601612fb4565b92505060206133f98582860161328a565b9150509250929050565b600080fd5b600080fd5b600067ffffffffffffffff821115613428576134276131cc565b5b61343182612e72565b9050602081019050919050565b82818337600083830152505050565b600061346061345b8461340d565b61322c565b90508281526020810184848401111561347c5761347b613408565b5b61348784828561343e565b509392505050565b600082601f8301126134a4576134a3613403565b5b81356134b484826020860161344d565b91505092915050565b600080600080608085870312156134d7576134d6612d5e565b5b60006134e587828801612fb4565b94505060206134f687828801612fb4565b935050604061350787828801612eff565b925050606085013567ffffffffffffffff81111561352857613527612d63565b5b6135348782880161348f565b91505092959194509250565b6000806040838503121561355757613556612d5e565b5b600061356585828601612fb4565b925050602061357685828601612fb4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135c757607f821691505b602082108114156135db576135da613580565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061363d602c83612e2e565b9150613648826135e1565b604082019050919050565b6000602082019050818103600083015261366c81613630565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006136cf602183612e2e565b91506136da82613673565b604082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613761603883612e2e565b915061376c82613705565b604082019050919050565b6000602082019050818103600083015261379081613754565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137d182612ede565b91506137dc83612ede565b9250828210156137ef576137ee613797565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613856603183612e2e565b9150613861826137fa565b604082019050919050565b6000602082019050818103600083015261388581613849565b9050919050565b6000819050919050565b6000819050919050565b6138b16138ac8261388c565b613896565b82525050565b6000819050919050565b6138d26138cd82612ede565b6138b7565b82525050565b60006138e482856138a0565b6020820191506138f482846138c1565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061393e82613086565b915061394983613086565b92508261395957613958613904565b5b828206905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061399a602083612e2e565b91506139a582613964565b602082019050919050565b600060208201905081810360008301526139c98161398d565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a2c602983612e2e565b9150613a37826139d0565b604082019050919050565b60006020820190508181036000830152613a5b81613a1f565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613abe602a83612e2e565b9150613ac982613a62565b604082019050919050565b60006020820190508181036000830152613aed81613ab1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000613b3982612e23565b613b438185613b23565b9350613b53818560208601612e3f565b80840191505092915050565b7f3c726563742066696c6c3d270000000000000000000000000000000000000000600082015250565b6000613b95600c83613b23565b9150613ba082613b5f565b600c82019050919050565b60008190508160005260206000209050919050565b60008154613bcd816135af565b613bd78186613b23565b94506001821660008114613bf25760018114613c0357613c36565b60ff19831686528186019350613c36565b613c0c85613bab565b60005b83811015613c2e57815481890152600182019150602081019050613c0f565b838801955050505b50505092915050565b7f27206865696768743d273234272077696474683d27323427202f3e0000000000600082015250565b6000613c75601b83613b23565b9150613c8082613c3f565b601b82019050919050565b7f3c726563742066696c6c3d272335363765333927206865696768743d2731272060008201527f77696474683d27342720783d27392720793d273927202f3e0000000000000000602082015250565b6000613ce7603883613b23565b9150613cf282613c8b565b603882019050919050565b7f3c726563742066696c6c3d272335363765333927206865696768743d2731272060008201527f77696474683d27362720783d27382720793d27313027202f3e00000000000000602082015250565b6000613d59603983613b23565b9150613d6482613cfd565b603982019050919050565b7f3c726563742066696c6c3d272335363765333927206865696768743d2733272060008201527f77696474683d27382720783d27372720793d27313127202f3e00000000000000602082015250565b6000613dcb603983613b23565b9150613dd682613d6f565b603982019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27332720783d2731352720793d273927202f3e00000000000000602082015250565b6000613e3d603983613b23565b9150613e4882613de1565b603982019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2733272060008201527f77696474683d27342720783d2731352720793d27313027202f3e000000000000602082015250565b6000613eaf603a83613b23565b9150613eba82613e53565b603a82019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27332720783d2731352720793d27313327202f3e000000000000602082015250565b6000613f21603a83613b23565b9150613f2c82613ec5565b603a82019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27382720783d27372720793d27313427202f3e00000000000000602082015250565b6000613f93603983613b23565b9150613f9e82613f37565b603982019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27322720783d27372720793d27313527202f3e00000000000000602082015250565b6000614005603983613b23565b915061401082613fa9565b603982019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27322720783d2731332720793d27313527202f3e3c726563742060208201527f66696c6c3d272366666666666627206865696768743d2732272077696474683d60408201527f27322720783d2731362720793d27313027202f3e000000000000000000000000606082015250565b60006140c3607483613b23565b91506140ce8261401b565b607482019050919050565b7f27206865696768743d2731272077696474683d27362720783d27352720793d2760008201527f3827202f3e000000000000000000000000000000000000000000000000000000602082015250565b6000614135602583613b23565b9150614140826140d9565b602582019050919050565b7f27206865696768743d2731272077696474683d27342720783d27372720793d2760008201527f3927202f3e000000000000000000000000000000000000000000000000000000602082015250565b60006141a7602583613b23565b91506141b28261414b565b602582019050919050565b7f27206865696768743d2731272077696474683d27322720783d27392720793d2760008201527f313027202f3e0000000000000000000000000000000000000000000000000000602082015250565b6000614219602683613b23565b9150614224826141bd565b602682019050919050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27312720783d27362720793d27313327202f3e00000000000000602082015250565b600061428b603983613b23565b91506142968261422f565b603982019050919050565b7f3c726563742066696c6c3d272330303030303027206865696768743d2731272060008201527f77696474683d27312720783d2700000000000000000000000000000000000000602082015250565b60006142fd602d83613b23565b9150614308826142a1565b602d82019050919050565b7f2720793d27000000000000000000000000000000000000000000000000000000600082015250565b6000614349600583613b23565b915061435482614313565b600582019050919050565b7f27202f3e00000000000000000000000000000000000000000000000000000000600082015250565b6000614395600483613b23565b91506143a08261435f565b600482019050919050565b60006143b7828a613b2e565b91506143c282613b88565b91506143ce8289613bc0565b91506143d982613c68565b91506143e482613cda565b91506143ef82613d4c565b91506143fa82613dbe565b915061440582613e30565b915061441082613ea2565b915061441b82613f14565b915061442682613f86565b915061443182613ff8565b915061443c826140b6565b915061444782613b88565b91506144538288613bc0565b915061445e82614128565b915061446982613b88565b91506144758287613bc0565b91506144808261419a565b915061448b82613b88565b91506144978286613bc0565b91506144a28261420c565b91506144ad8261427e565b91506144b8826142f0565b91506144c48285613bc0565b91506144cf8261433c565b91506144db8284613bc0565b91506144e682614388565b915081905098975050505050505050565b7f27206865696768743d2731272077696474683d27312720783d27000000000000600082015250565b600061452d601a83613b23565b9150614538826144f7565b601a82019050919050565b600061454f8287613b2e565b915061455a82613b88565b91506145668286613bc0565b915061457182614520565b915061457d8285613bc0565b91506145888261433c565b91506145948284613bc0565b915061459f82614388565b915081905095945050505050565b600060ff82169050919050565b60006145c5826145ad565b915060ff8214156145d9576145d8613797565b5b600182019050919050565b7f27206865696768743d2731272077696474683d27322720783d27372720793d2760008201527f313527202f3e3c726563742066696c6c3d270000000000000000000000000000602082015250565b6000614640603283613b23565b915061464b826145e4565b603282019050919050565b7f27206865696768743d2731272077696474683d27322720783d2731332720793d60008201527f27313527202f3e00000000000000000000000000000000000000000000000000602082015250565b60006146b2602783613b23565b91506146bd82614656565b602782019050919050565b60006146d48286613b2e565b91506146df82613b88565b91506146eb8285613bc0565b91506146f682614633565b91506147028284613bc0565b915061470d826146a5565b9150819050949350505050565b7f27206865696768743d2731272077696474683d27312720783d2731342720793d60008201527f273827202f3e3c726563742066696c6c3d270000000000000000000000000000602082015250565b6000614776603283613b23565b91506147818261471a565b603282019050919050565b7f27206865696768743d2731272077696474683d27332720783d2731352720793d60008201527f273927202f3e0000000000000000000000000000000000000000000000000000602082015250565b60006147e8602683613b23565b91506147f38261478c565b602682019050919050565b600061480a8286613b2e565b915061481582613b88565b91506148218285613bc0565b915061482c82614769565b91506148388284613bc0565b9150614843826147db565b9150819050949350505050565b7f3c726563742066696c6c3d272365643230323427206865696768743d2731272060008201527f77696474683d27312720783d2731382720793d27313327202f3e000000000000602082015250565b60006148ac603a83613b23565b91506148b782614850565b603a82019050919050565b60006148ce8284613b2e565b91506148d98261489f565b915081905092915050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27312720783d27352720793d27313227202f3e00000000000000602082015250565b6000614940603983613b23565b915061494b826148e4565b603982019050919050565b60006149628284613b2e565b915061496d82614933565b915081905092915050565b7f3c726563742066696c6c3d272336356263343827206865696768743d2731272060008201527f77696474683d27312720783d27352720793d27313427202f3e00000000000000602082015250565b60006149d4603983613b23565b91506149df82614978565b603982019050919050565b60006149f68284613b2e565b9150614a01826149c7565b915081905092915050565b7f3c7376672069643d27736d6f6c2d77696e6765642d747572746c652720786d6c60008201527f6e733d27687474703a2f2f7777772e77332e6f72672f323030302f737667272060208201527f7072657365727665417370656374526174696f3d27784d696e594d696e206d6560408201527f6574272076696577426f783d27302030203234203234273e0000000000000000606082015250565b6000614ab4607883613b23565b9150614abf82614a0c565b607882019050919050565b7f3c7374796c653e23736d6f6c2d77696e6765642d747572746c657b736861706560008201527f2d72656e646572696e673a637269737065646765733b7d3c2f7374796c653e3c60208201527f2f7376673e000000000000000000000000000000000000000000000000000000604082015250565b6000614b4c604583613b23565b9150614b5782614aca565b604582019050919050565b6000614b6d82614aa7565b9150614b798284613b2e565b9150614b8482614b3f565b915081905092915050565b7f7b2274726169745f74797065223a224261636b67726f756e64222c202276616c60008201527f7565223a22000000000000000000000000000000000000000000000000000000602082015250565b6000614beb602583613b23565b9150614bf682614b8f565b602582019050919050565b7f227d2c0000000000000000000000000000000000000000000000000000000000600082015250565b6000614c37600383613b23565b9150614c4282614c01565b600382019050919050565b7f7b2274726169745f74797065223a2257696e672054797065222c202276616c7560008201527f65223a2200000000000000000000000000000000000000000000000000000000602082015250565b6000614ca9602483613b23565b9150614cb482614c4d565b602482019050919050565b7f7b2274726169745f74797065223a2257696e6720436f6c6f72222c202276616c60008201527f7565223a22000000000000000000000000000000000000000000000000000000602082015250565b6000614d1b602583613b23565b9150614d2682614cbf565b602582019050919050565b7f7b2274726169745f74797065223a2245796573222c202276616c7565223a2200600082015250565b6000614d67601f83613b23565b9150614d7282614d31565b601f82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000614db3600283613b23565b9150614dbe82614d7d565b600282019050919050565b6000614dd58288613b2e565b9150614de082614bde565b9150614dec8287613bc0565b9150614df782614c2a565b9150614e0282614c9c565b9150614e0e8286613bc0565b9150614e1982614c2a565b9150614e2482614d0e565b9150614e308285613bc0565b9150614e3b82614c2a565b9150614e4682614d5a565b9150614e528284613bc0565b9150614e5d82614da6565b91508190509695505050505050565b7f2c7b2274726169745f74797065223a22426f6f7473222c202276616c7565223a60008201527f2200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ec8602183613b23565b9150614ed382614e6c565b602182019050919050565b6000614eea8285613b2e565b9150614ef582614ebb565b9150614f018284613bc0565b9150614f0c82614da6565b91508190509392505050565b7f2c7b2274726169745f74797065223a2242616e64616e61222c202276616c756560008201527f223a220000000000000000000000000000000000000000000000000000000000602082015250565b6000614f74602383613b23565b9150614f7f82614f18565b602382019050919050565b6000614f968285613b2e565b9150614fa182614f67565b9150614fad8284613bc0565b9150614fb882614da6565b91508190509392505050565b7f2c7b2274726169745f74797065223a22546f6e677565222c202276616c75652260008201527f3a2254727565227d000000000000000000000000000000000000000000000000602082015250565b6000615020602883613b23565b915061502b82614fc4565b602882019050919050565b60006150428284613b2e565b915061504d82615013565b915081905092915050565b7f2c7b2274726169745f74797065223a225461696c222c202276616c7565223a2260008201527f5570227d00000000000000000000000000000000000000000000000000000000602082015250565b60006150b4602483613b23565b91506150bf82615058565b602482019050919050565b60006150d68284613b2e565b91506150e1826150a7565b915081905092915050565b7f2c7b2274726169745f74797065223a225461696c222c202276616c7565223a2260008201527f446f776e227d0000000000000000000000000000000000000000000000000000602082015250565b6000615148602683613b23565b9150615153826150ec565b602682019050919050565b600061516a8284613b2e565b91506151758261513b565b915081905092915050565b7f5b00000000000000000000000000000000000000000000000000000000000000600082015250565b60006151b6600183613b23565b91506151c182615180565b600182019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000615202600183613b23565b915061520d826151cc565b600182019050919050565b6000615223826151a9565b915061522f8284613b2e565b915061523a826151f5565b915081905092915050565b7f5175616e74697479206d7573742062652067726561746572207468616e20302e600082015250565b600061527b602083612e2e565b915061528682615245565b602082019050919050565b600060208201905081810360008301526152aa8161526e565b9050919050565b7f45786365656473206d617820706572206d696e742e0000000000000000000000600082015250565b60006152e7601583612e2e565b91506152f2826152b1565b602082019050919050565b60006020820190508181036000830152615316816152da565b9050919050565b600061532882612ede565b915061533383612ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561536857615367613797565b5b828201905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006153a9601383612e2e565b91506153b482615373565b602082019050919050565b600060208201905081810360008301526153d88161539c565b9050919050565b60006153ea82612ede565b91506153f583612ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561542e5761542d613797565b5b828202905092915050565b7f57726f6e67204554482076616c75652073656e742e0000000000000000000000600082015250565b600061546f601583612e2e565b915061547a82615439565b602082019050919050565b6000602082019050818103600083015261549e81615462565b9050919050565b60006154b082612ede565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154e3576154e2613797565b5b600182019050919050565b7f7b226e616d65223a2022536d6f6c2057696e67656420547572746c6520230000600082015250565b6000615524601e83613b23565b915061552f826154ee565b601e82019050919050565b7f222c20226465736372697074696f6e223a2022536d6f6c2057696e676564205460008201527f7572746c657a206973206120636f6c6c656374696f6e206f6620757020746f2060208201527f362c3936392066756c6c79206f6e2d636861696e20636861726163746572732060408201527f74686174206d69676874206265206120677265617420696e766573746d656e7460608201527f206f70706f7274756e6974792e204d696e7420796f757220747572746c657a2060808201527f6265666f7265207468657920666c79206177617921222c2022696d616765223a60a08201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c0000000060c082015250565b600061565460dc83613b23565b915061565f8261553a565b60dc82019050919050565b7f222c2261747472696275746573223a0000000000000000000000000000000000600082015250565b60006156a0600f83613b23565b91506156ab8261566a565b600f82019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006156ec600183613b23565b91506156f7826156b6565b600182019050919050565b600061570d82615517565b91506157198286613b2e565b915061572482615647565b91506157308285613b2e565b915061573b82615693565b91506157478284613b2e565b9150615752826156df565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000615795601d83613b23565b91506157a08261575f565b601d82019050919050565b60006157b682615788565b91506157c28284613b2e565b915081905092915050565b7f416c6c206d696e7465642e000000000000000000000000000000000000000000600082015250565b6000615803600b83612e2e565b915061580e826157cd565b602082019050919050565b60006020820190508181036000830152615832816157f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615895602683612e2e565b91506158a082615839565b604082019050919050565b600060208201905081810360008301526158c481615888565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615927602c83612e2e565b9150615932826158cb565b604082019050919050565b600060208201905081810360008301526159568161591a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006159b9602983612e2e565b91506159c48261595d565b604082019050919050565b600060208201905081810360008301526159e8816159ac565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615a4b602483612e2e565b9150615a56826159ef565b604082019050919050565b60006020820190508181036000830152615a7a81615a3e565b9050919050565b6000615a8c82613086565b9150615a9783613086565b92508261ffff03821115615aae57615aad613797565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615aef601983612e2e565b9150615afa82615ab9565b602082019050919050565b60006020820190508181036000830152615b1e81615ae2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615b81603283612e2e565b9150615b8c82615b25565b604082019050919050565b60006020820190508181036000830152615bb081615b74565b9050919050565b6000615bc282612ede565b9150615bcd83612ede565b925082615bdd57615bdc613904565b5b828204905092915050565b6000615bf382612ede565b9150615bfe83612ede565b925082615c0e57615c0d613904565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615c4082615c19565b615c4a8185615c24565b9350615c5a818560208601612e3f565b615c6381612e72565b840191505092915050565b6000608082019050615c836000830187612f73565b615c906020830186612f73565b615c9d6040830185613009565b8181036060830152615caf8184615c35565b905095945050505050565b600081519050615cc981612d94565b92915050565b600060208284031215615ce557615ce4612d5e565b5b6000615cf384828501615cba565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d32602083612e2e565b9150615d3d82615cfc565b602082019050919050565b60006020820190508181036000830152615d6181615d25565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615d9e601c83612e2e565b9150615da982615d68565b602082019050919050565b60006020820190508181036000830152615dcd81615d91565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220cc47a2ddcaf6e10c4666a37241c0c26523c2a5f509b4544d8ff440443ff0f6f964736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.