Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,896 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Safe Transfer Fr... | 24498658 | 2 days ago | IN | 0 ETH | 0.00001331 | ||||
| Set Approval For... | 24220996 | 41 days ago | IN | 0 ETH | 0.00000098 | ||||
| Set Approval For... | 24134581 | 53 days ago | IN | 0 ETH | 0.00000307 | ||||
| Set Approval For... | 24131600 | 53 days ago | IN | 0 ETH | 0.00000186 | ||||
| Set Approval For... | 23960349 | 77 days ago | IN | 0 ETH | 0.00010223 | ||||
| Set Approval For... | 23603586 | 127 days ago | IN | 0 ETH | 0.00000838 | ||||
| Set Approval For... | 23599843 | 128 days ago | IN | 0 ETH | 0.00017035 | ||||
| Set Approval For... | 23587390 | 129 days ago | IN | 0 ETH | 0.00000805 | ||||
| Set Approval For... | 23514312 | 139 days ago | IN | 0 ETH | 0.00000628 | ||||
| Set Approval For... | 23325410 | 166 days ago | IN | 0 ETH | 0.00002668 | ||||
| Set Approval For... | 23315235 | 167 days ago | IN | 0 ETH | 0.00005291 | ||||
| Set Approval For... | 22661250 | 259 days ago | IN | 0 ETH | 0.000035 | ||||
| Set Approval For... | 22661039 | 259 days ago | IN | 0 ETH | 0.00004154 | ||||
| Set Approval For... | 22596566 | 268 days ago | IN | 0 ETH | 0.00038606 | ||||
| Set Approval For... | 22553655 | 274 days ago | IN | 0 ETH | 0.00004663 | ||||
| Set Approval For... | 22291993 | 310 days ago | IN | 0 ETH | 0.00002046 | ||||
| Set Approval For... | 22291092 | 311 days ago | IN | 0 ETH | 0.00002273 | ||||
| Set Approval For... | 22251203 | 316 days ago | IN | 0 ETH | 0.0000224 | ||||
| Set Approval For... | 21454088 | 427 days ago | IN | 0 ETH | 0.00048179 | ||||
| Set Approval For... | 21103479 | 476 days ago | IN | 0 ETH | 0.00010374 | ||||
| Set Approval For... | 20988117 | 492 days ago | IN | 0 ETH | 0.00086713 | ||||
| Set Approval For... | 20988116 | 492 days ago | IN | 0 ETH | 0.00089945 | ||||
| Set Approval For... | 20716061 | 530 days ago | IN | 0 ETH | 0.00009476 | ||||
| Set Approval For... | 20634567 | 542 days ago | IN | 0 ETH | 0.00009944 | ||||
| Set Approval For... | 20138105 | 611 days ago | IN | 0 ETH | 0.00013309 |
Latest 14 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16372589 | 1139 days ago | 5.72 ETH | ||||
| Mint | 16372172 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372170 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Mint | 16372165 | 1139 days ago | 0.02 ETH | ||||
| Transfer | 16182726 | 1166 days ago | 0.22 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Hallucigenia
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: UNLICENSED
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Hallucigenia is ERC721Enumerable, Ownable {
bytes10 internal constant _DIGITS = "0123456789";
string internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
bool public PAUSED = true;
uint public MAX_SUPPLY = 1250;
uint public MAX_MINTS_PER_TX = 5;
uint256 private PRICE = 0.02 ether;
mapping(uint256 => uint256) private _generator;
mapping(uint256 => uint) private _palette;
constructor() ERC721("Hallucigenia", "HALLU") {}
function mint(uint amount) public payable {
uint256 currentSupply = totalSupply();
require(!PAUSED, "Sale paused");
require(currentSupply + amount < MAX_SUPPLY, "Sale has already ended");
require(msg.value >= PRICE, "Ether sent is not correct");
require(amount > 0 && amount - 1 < MAX_MINTS_PER_TX, "Too many mints/tx");
for (uint256 i = 0; i < amount; i++) {
_generator[currentSupply] = prng(block.timestamp + currentSupply) + prng(block.number + currentSupply);
_palette[currentSupply] = (prng(block.timestamp + currentSupply) % 6) + 1;
_safeMint(msg.sender, currentSupply);
currentSupply++;
}
}
function pause() public onlyOwner {
PAUSED = !PAUSED;
}
function setMaxSupply(uint256 supply) public onlyOwner {
MAX_SUPPLY = supply;
}
function setMaxMints(uint256 mints) public onlyOwner {
MAX_MINTS_PER_TX = mints;
}
function withdraw() public payable onlyOwner {
require(payable(0xed8D89B01cB469B75a9a18bd4680f0b4c4224a4d).send(address(this).balance));
}
function tokenURI(uint256 index) public view override virtual returns (string memory) {
require(_exists(index), "URI query for nonexistent token");
bytes memory name = abi.encodePacked("Hallucigenia #", str(index), ' [', str(_generator[index]), ']');
bytes memory attr = abi.encodePacked('{"trait_type": "Color", "value": "', colorName(index), '"}');
if (_generator[index] % 7 == 0) {
attr = abi.encodePacked(attr, ', {"trait_type": "Background", "value": "Transparent"}');
} else {
attr = abi.encodePacked(attr, ', {"trait_type": "Background", "value": "Black"}');
}
if (_generator[index] % 6 == 0) {
attr = abi.encodePacked(attr, ', {"trait_type": "Animation", "value": "Discrete"}');
} else {
attr = abi.encodePacked(attr, ', {"trait_type": "Animation", "value": "Fluid"}');
}
bytes memory json = abi.encodePacked('{"name":"', name, '", "description": "waiworinao", "attributes": [', attr, '], "image": "', hallu(index), '"}');
return string(abi.encodePacked('data:application/json;base64,', encode(json)));
}
function colorName(uint256 index) private view returns (bytes memory) {
uint palette = _palette[index];
if (palette == 1) {
return abi.encodePacked("Pastel");
} else if (palette == 2) {
return abi.encodePacked("Neon");
} else if (palette == 3) {
return abi.encodePacked("Magma");
} else if (palette == 4) {
return abi.encodePacked("Amazonia");
} else if (palette == 5) {
return abi.encodePacked("Chrominance");
} else if (palette == 6) {
return abi.encodePacked("Luminance");
} else {
return abi.encodePacked("?????");
}
}
function hallu(uint256 index) private view returns (string memory) {
require(_exists(index), "URI query for nonexistent token");
bytes memory firstPath = getPath(_generator[index] << 3);
uint palette = _palette[index];
bytes memory out = abi.encodePacked('<svg xmlns="http://www.w3.org/2000/svg" version="1.2" viewBox="0 0 500 500">');
if (_generator[index] % 7 != 0) {
out = abi.encodePacked(out, '<rect x="0" y="0" width="500" height="500" fill="#111"><animate attributeName="fill" values="#000;#333;#000" dur="0.01s" repeatCount="indefinite"/></rect>');
}
out = abi.encodePacked(out, '<path d="', firstPath, '" stroke="#fff" fill="none" stroke-width="40" stroke-linecap="round"><animate attributeName="stroke" values="');
if (palette == 1) {
out = abi.encodePacked(out, '#ff71ce;#01cdfe;#05ffa1');
} else if (palette == 2) {
out = abi.encodePacked(out, '#F42B87;#FFC6E9;#2AE8F5');
} else if (palette == 3) {
out = abi.encodePacked(out, '#fff001;#fd1999;#99fc20');
} else if (palette == 4) {
out = abi.encodePacked(out, '#00FF00;#0000FF');
} else if (palette == 5) {
out = abi.encodePacked(out, '#FF0000;#0000FF');
} else if (palette == 6) {
out = abi.encodePacked(out, '#FFFFFF;#000000');
} else {
out = abi.encodePacked(out, '#FF3300');
}
out = abi.encodePacked(out, '" dur="0.1s" repeatCount="indefinite" calcMode="discrete"/><animate attributeName="d" values="', firstPath, ';');
for (uint p = 0; p < 5; p++) {
out = abi.encodePacked(out, getPath(_generator[index] << (p+1)), ";");
}
if (_generator[index] % 6 == 0) {
out = abi.encodePacked(out, firstPath, '" dur="0.95s" calcMode="discrete" repeatCount="indefinite"/><animate attributeName="stroke-width" values="10;50;10" dur="0.7s" repeatCount="indefinite" calcMode="discrete"/></path></svg>');
} else {
out = abi.encodePacked(out, firstPath, '" dur="0.95s" repeatCount="indefinite"/><animate attributeName="stroke-width" values="10;50;10" dur="0.7s" repeatCount="indefinite"/></path></svg>');
}
return string(abi.encodePacked('data:image/svg+xml;base64,', encode(out)));
}
function getPath(uint256 G) private pure returns (bytes memory) {
bytes memory path = abi.encodePacked('M 50,', getPosOffset(G));
path = abi.encodePacked(path, ' C ', getPointOffset(G, 7), ' ');
for (uint x = 0; x < 3; x++) {
path = abi.encodePacked(path, getPointOffset(G + x, x + 1), ' ', str(150 + 100*x), ',', getPosOffset(G << (x+1)), ' S ');
}
return abi.encodePacked(path, getPointOffset(G, 11), ' 450,', getPosOffset(G << 13));
}
function getPointOffset(uint256 G, uint256 i) private pure returns (bytes memory) {
return abi.encodePacked(str(prng(G << i) % 300 + 100), ',', str(prng(G << (i + 1)) % 300 + 100));
}
function getPosOffset(uint256 G) private pure returns (bytes memory) {
return abi.encodePacked(str(prng(G) % 200 + 150));
}
function str(uint value) internal pure returns (bytes memory) {
if (value == 0) {
return "0";
}
uint temp = value;
uint digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = _DIGITS[value % 10];
value /= 10;
}
return buffer;
}
// LuckySeven - @matiasbn_eth
function prng(uint256 mu) internal pure returns (uint O) {
assembly {
let L := exp(10, 250) // 10^p
let U := mul(L, 1) // 10^p * b
let C := exp(10, 10) // 10^n
let K := sub(C, mu) // 10^n - mu
let Y := div(U, K) // (10^p * b)/(10^n - mu)
let S := exp(10, add(2, 3)) // 10^(i+j)
let E := exp(10, 2) // 10^i
let V := mod(Y, S) // Y % 10^(i+j)
let N := mod(Y, E) // Y % 10^i
let I := sub(V, N) // (Y % 10^(i+j)) / (Y % 10^i)
O := div(I, E)
}
}
function encode(bytes memory data) internal pure returns (string memory) {
if (data.length == 0) return "";
// load the table into memory
string memory table = TABLE;
// multiply by 4/3 rounded up
uint256 encodedLen = 4 * ((data.length + 2) / 3);
// add some extra buffer at the end required for the writing
string memory result = new string(encodedLen + 32);
assembly {
// set the actual output length
mstore(result, encodedLen)
// prepare the lookup table
let tablePtr := add(table, 1)
// input ptr
let dataPtr := data
let endPtr := add(dataPtr, mload(data))
// result ptr, jump over length
let resultPtr := add(result, 32)
// run over the input, 3 bytes at a time
for {
} lt(dataPtr, endPtr) {
} {
dataPtr := add(dataPtr, 3)
// read 3 bytes
let input := mload(dataPtr)
// write 4 characters
mstore(
resultPtr,
shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))
)
resultPtr := add(resultPtr, 1)
mstore(
resultPtr,
shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))
)
resultPtr := add(resultPtr, 1)
mstore(
resultPtr,
shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F))))
)
resultPtr := add(resultPtr, 1)
mstore(
resultPtr,
shl(248, mload(add(tablePtr, and(input, 0x3F))))
)
resultPtr := add(resultPtr, 1)
}
// padding with '='
switch mod(mload(data), 3)
case 1 {
mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
}
case 2 {
mstore(sub(resultPtr, 1), shl(248, 0x3d))
}
}
return result;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @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` cannot be the zero address.
* - `to` cannot be the zero address.
*
* 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 override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
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 (last updated v4.7.0) (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: address zero is not a valid owner");
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: invalid token ID");
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) {
_requireMinted(tokenId);
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 overridden 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 token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
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: caller is not token 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: caller is not token 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) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);
_afterTokenTransfer(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);
_afterTokenTransfer(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 from incorrect owner");
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);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @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 {
/// @solidity memory-safe-assembly
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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
*
* 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;
/**
* @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 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 Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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
/// @solidity memory-safe-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 (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}// 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
Contract ABI
API[{"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":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"pause","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":"uint256","name":"mints","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","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":"payable","type":"function"}]Contract Creation Code
60806040526001600a60146101000a81548160ff0219169083151502179055506104e2600b556005600c5566470de4df820000600d553480156200004257600080fd5b506040518060400160405280600c81526020017f48616c6c75636967656e696100000000000000000000000000000000000000008152506040518060400160405280600581526020017f48414c4c550000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c7929190620001d7565b508060019080519060200190620000e0929190620001d7565b50505062000103620000f76200010960201b60201c565b6200011160201b60201c565b620002ec565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e590620002b6565b90600052602060002090601f01602090048101928262000209576000855562000255565b82601f106200022457805160ff191683800117855562000255565b8280016001018555821562000255579182015b828111156200025457825182559160200191906001019062000237565b5b50905062000264919062000268565b5090565b5b808211156200028357600081600090555060010162000269565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002cf57607f821691505b60208210811415620002e657620002e562000287565b5b50919050565b61588080620002fc6000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063c6a91b4211610064578063c6a91b4214610584578063c87b56dd146105af578063e985e9c5146105ec578063f2fde38b146106295761019c565b8063a22cb46514610507578063a9aad58c14610530578063b88d4fde1461055b5761019c565b80638456cb59116100c65780638456cb591461047e5780638da5cb5b1461049557806395d89b41146104c0578063a0712d68146104eb5761019c565b806370a0823114610401578063715018a61461043e57806379c9cb7b146104555761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146103355780634f6ccce71461035e5780636352211e1461039b5780636f8b44b0146103d85761019c565b80632f745c59146102c357806332cb6b0c146103005780633ccfd60b1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612edb565b610652565b6040516101d59190612f23565b60405180910390f35b3480156101ea57600080fd5b506101f36106cc565b6040516102009190612fd7565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061302f565b61075e565b60405161023d919061309d565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906130e4565b6107a4565b005b34801561027b57600080fd5b506102846108bc565b6040516102919190613133565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061314e565b6108c9565b005b3480156102cf57600080fd5b506102ea60048036038101906102e591906130e4565b610929565b6040516102f79190613133565b60405180910390f35b34801561030c57600080fd5b506103156109ce565b6040516103229190613133565b60405180910390f35b6103336109d4565b005b34801561034157600080fd5b5061035c6004803603810190610357919061314e565b610a30565b005b34801561036a57600080fd5b506103856004803603810190610380919061302f565b610a50565b6040516103929190613133565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd919061302f565b610ac1565b6040516103cf919061309d565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa919061302f565b610b73565b005b34801561040d57600080fd5b50610428600480360381019061042391906131a1565b610b85565b6040516104359190613133565b60405180910390f35b34801561044a57600080fd5b50610453610c3d565b005b34801561046157600080fd5b5061047c6004803603810190610477919061302f565b610c51565b005b34801561048a57600080fd5b50610493610c63565b005b3480156104a157600080fd5b506104aa610c97565b6040516104b7919061309d565b60405180910390f35b3480156104cc57600080fd5b506104d5610cc1565b6040516104e29190612fd7565b60405180910390f35b6105056004803603810190610500919061302f565b610d53565b005b34801561051357600080fd5b5061052e600480360381019061052991906131fa565b610f66565b005b34801561053c57600080fd5b50610545610f7c565b6040516105529190612f23565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d919061336f565b610f8f565b005b34801561059057600080fd5b50610599610ff1565b6040516105a69190613133565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d1919061302f565b610ff7565b6040516105e39190612fd7565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e91906133f2565b6111fc565b6040516106209190612f23565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b91906131a1565b611290565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c557506106c482611314565b5b9050919050565b6060600080546106db90613461565b80601f016020809104026020016040519081016040528092919081815260200182805461070790613461565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b6000610769826113f6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107af82610ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081790613505565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661083f611441565b73ffffffffffffffffffffffffffffffffffffffff16148061086e575061086d81610868611441565b6111fc565b5b6108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490613597565b60405180910390fd5b6108b78383611449565b505050565b6000600880549050905090565b6108da6108d4611441565b82611502565b610919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091090613629565b60405180910390fd5b610924838383611597565b505050565b600061093483610b85565b8210610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c906136bb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b6109dc6117fe565b73ed8d89b01cb469b75a9a18bd4680f0b4c4224a4d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610a2e57600080fd5b565b610a4b83838360405180602001604052806000815250610f8f565b505050565b6000610a5a6108bc565b8210610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a929061374d565b60405180910390fd5b60088281548110610aaf57610aae61376d565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906137e8565b60405180910390fd5b80915050919050565b610b7b6117fe565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed9061387a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c456117fe565b610c4f600061187c565b565b610c596117fe565b80600c8190555050565b610c6b6117fe565b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610cd090613461565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfc90613461565b8015610d495780601f10610d1e57610100808354040283529160200191610d49565b820191906000526020600020905b815481529060010190602001808311610d2c57829003601f168201915b5050505050905090565b6000610d5d6108bc565b9050600a60149054906101000a900460ff1615610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906138e6565b60405180910390fd5b600b548282610dbe9190613935565b10610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df5906139d7565b60405180910390fd5b600d54341015610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90613a43565b60405180910390fd5b600082118015610e605750600c54600183610e5e9190613a63565b105b610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613ae3565b60405180910390fd5b60005b82811015610f6157610ebe8243610eb99190613935565b611942565b610ed28342610ecd9190613935565b611942565b610edc9190613935565b600e60008481526020019081526020016000208190555060016006610f0b8442610f069190613935565b611942565b610f159190613b32565b610f1f9190613935565b600f600084815260200190815260200160002081905550610f403383611981565b8180610f4b90613b63565b9250508080610f5990613b63565b915050610ea2565b505050565b610f78610f71611441565b838361199f565b5050565b600a60149054906101000a900460ff1681565b610fa0610f9a611441565b83611502565b610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690613629565b60405180910390fd5b610feb84848484611b0c565b50505050565b600c5481565b606061100282611b68565b611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890613bf8565b60405180910390fd5b600061104c83611bd4565b611068600e600086815260200190815260200160002054611bd4565b604051602001611079929190613d4e565b6040516020818303038152906040529050600061109584611d5c565b6040516020016110a59190613e51565b604051602081830303815290604052905060006007600e6000878152602001908152602001600020546110d89190613b32565b141561110557806040516020016110ef9190613ef0565b6040516020818303038152906040529050611128565b806040516020016111169190613f84565b60405160208183030381529060405290505b60006006600e60008781526020019081526020016000205461114a9190613b32565b141561117757806040516020016111619190614018565b604051602081830303815290604052905061119a565b8060405160200161118891906140ac565b60405160208183030381529060405290505b600082826111a787611eb7565b6040516020016111b993929190614209565b60405160208183030381529060405290506111d38161224f565b6040516020016111e391906142b2565b6040516020818303038152906040529350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112986117fe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90614346565b60405180910390fd5b6113118161187c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113df57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806113ef57506113ee826123d4565b5b9050919050565b6113ff81611b68565b61143e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611435906137e8565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114bc83610ac1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061150e83610ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611550575061154f81856111fc565b5b8061158e57508373ffffffffffffffffffffffffffffffffffffffff166115768461075e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115b782610ac1565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611604906143d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061446a565b60405180910390fd5b61168883838361243e565b611693600082611449565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116e39190613a63565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173a9190613935565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117f9838383612552565b505050565b611806611441565b73ffffffffffffffffffffffffffffffffffffffff16611824610c97565b73ffffffffffffffffffffffffffffffffffffffff161461187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906144d6565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060fa600a0a60018102600a800a8481038083046003600201600a0a6002600a0a8183068184068082038381049a5050505050505050505050919050565b61199b828260405180602001604052806000815250612557565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614542565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aff9190612f23565b60405180910390a3505050565b611b17848484611597565b611b23848484846125b2565b611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b59906145d4565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611c1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d57565b600082905060005b60008214611c4e578080611c3790613b63565b915050600a82611c4791906145f4565b9150611c24565b60008167ffffffffffffffff811115611c6a57611c69613244565b5b6040519080825280601f01601f191660200182016040528015611c9c5781602001600182028036833780820191505090505b5090505b60008514611d5057600182611cb59190613a63565b91507f3031323334353637383900000000000000000000000000000000000000000000600a86611ce59190613b32565b600a8110611cf657611cf561376d565b5b1a60f81b818381518110611d0d57611d0c61376d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d4991906145f4565b9450611ca0565b8093505050505b919050565b60606000600f60008481526020019081526020016000205490506001811415611da557604051602001611d8e90614671565b604051602081830303815290604052915050611eb2565b6002811415611dd457604051602001611dbd906146d2565b604051602081830303815290604052915050611eb2565b6003811415611e0357604051602001611dec90614733565b604051602081830303815290604052915050611eb2565b6004811415611e3257604051602001611e1b90614794565b604051602081830303815290604052915050611eb2565b6005811415611e6157604051602001611e4a906147f5565b604051602081830303815290604052915050611eb2565b6006811415611e9057604051602001611e7990614856565b604051602081830303815290604052915050611eb2565b604051602001611e9f906148b7565b6040516020818303038152906040529150505b919050565b6060611ec282611b68565b611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890613bf8565b60405180910390fd5b6000611f236003600e600086815260200190815260200160002054901b612749565b90506000600f60008581526020019081526020016000205490506000604051602001611f4e90614964565b604051602081830303815290604052905060006007600e600088815260200190815260200160002054611f819190613b32565b14611fa95780604051602001611f979190614a5d565b60405160208183030381529060405290505b8083604051602001611fbc929190614b89565b60405160208183030381529060405290506001821415611ffd5780604051602001611fe79190614c0f565b6040516020818303038152906040529050612115565b600282141561202d57806040516020016120179190614c7d565b6040516020818303038152906040529050612114565b600382141561205d57806040516020016120479190614ceb565b6040516020818303038152906040529050612113565b600482141561208d57806040516020016120779190614d59565b6040516020818303038152906040529050612112565b60058214156120bd57806040516020016120a79190614dc7565b6040516020818303038152906040529050612111565b60068214156120ed57806040516020016120d79190614e35565b6040516020818303038152906040529050612110565b806040516020016120fe9190614ea3565b60405160208183030381529060405290505b5b5b5b5b5b8083604051602001612128929190614fa9565b604051602081830303815290604052905060005b60058110156121a657816121716001836121569190613935565b600e60008a815260200190815260200160002054901b612749565b604051602001612182929190614fe3565b6040516020818303038152906040529150808061219e90613b63565b91505061213c565b5060006006600e6000888152602001908152602001600020546121c99190613b32565b14156121f85780836040516020016121e292919061511c565b604051602081830303815290604052905061221d565b808360405160200161220b92919061522f565b60405160208183030381529060405290505b6122268161224f565b60405160200161223691906152aa565b6040516020818303038152906040529350505050919050565b6060600082511415612272576040518060200160405280600081525090506123cf565b600060405180606001604052806040815260200161580b60409139905060006003600285516122a19190613935565b6122ab91906145f4565b60046122b791906152cc565b905060006020826122c89190613935565b67ffffffffffffffff8111156122e1576122e0613244565b5b6040519080825280601f01601f1916602001820160405280156123135781602001600182028036833780820191505090505b509050818152600183018586518101602084015b8183101561238e576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050612327565b6003895106600181146123a857600281146123b8576123c3565b613d3d60f01b60028303526123c3565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612449838383612886565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561248c576124878161288b565b6124cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124ca576124c983826128d4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250e5761250981612a41565b61254d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461254c5761254b8282612b12565b5b5b505050565b505050565b6125618383612b91565b61256e60008484846125b2565b6125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a4906145d4565b60405180910390fd5b505050565b60006125d38473ffffffffffffffffffffffffffffffffffffffff16612d6b565b1561273c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125fc611441565b8786866040518563ffffffff1660e01b815260040161261e9493929190615370565b602060405180830381600087803b15801561263857600080fd5b505af192505050801561266957506040513d601f19601f8201168201806040525081019061266691906153d1565b60015b6126ec573d8060008114612699576040519150601f19603f3d011682016040523d82523d6000602084013e61269e565b606091505b506000815114156126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db906145d4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612741565b600190505b949350505050565b6060600061275683612d8e565b604051602001612766919061544a565b604051602081830303815290604052905080612783846007612ddf565b604051602001612794929190615504565b604051602081830303815290604052905060005b600381101561284357816127d382866127c19190613935565b6001846127ce9190613935565b612ddf565b6127f48360646127e391906152cc565b60966127ef9190613935565b611bd4565b61280c6001856128049190613935565b88901b612d8e565b60405160200161281f94939291906155d6565b6040516020818303038152906040529150808061283b90613b63565b9150506127a8565b508061285084600b612ddf565b61285d600d86901b612d8e565b60405160200161286f93929190615681565b604051602081830303815290604052915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128e184610b85565b6128eb9190613a63565b90506000600760008481526020019081526020016000205490508181146129d0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a559190613a63565b9050600060096000848152602001908152602001600020549050600060088381548110612a8557612a8461376d565b5b906000526020600020015490508060088381548110612aa757612aa661376d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612af657612af56156bd565b5b6001900381819060005260206000200160009055905550505050565b6000612b1d83610b85565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf890615738565b60405180910390fd5b612c0a81611b68565b15612c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c41906157a4565b60405180910390fd5b612c566000838361243e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca69190613935565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6760008383612552565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060612db9609660c8612da085611942565b612daa9190613b32565b612db49190613935565b611bd4565b604051602001612dc991906157c4565b6040516020818303038152906040529050919050565b6060612e0e606461012c612df58587901b611942565b612dff9190613b32565b612e099190613935565b611bd4565b612e47606461012c612e2e600187612e269190613935565b88901b611942565b612e389190613b32565b612e429190613935565b611bd4565b604051602001612e589291906157db565b604051602081830303815290604052905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612eb881612e83565b8114612ec357600080fd5b50565b600081359050612ed581612eaf565b92915050565b600060208284031215612ef157612ef0612e79565b5b6000612eff84828501612ec6565b91505092915050565b60008115159050919050565b612f1d81612f08565b82525050565b6000602082019050612f386000830184612f14565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f78578082015181840152602081019050612f5d565b83811115612f87576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fa982612f3e565b612fb38185612f49565b9350612fc3818560208601612f5a565b612fcc81612f8d565b840191505092915050565b60006020820190508181036000830152612ff18184612f9e565b905092915050565b6000819050919050565b61300c81612ff9565b811461301757600080fd5b50565b60008135905061302981613003565b92915050565b60006020828403121561304557613044612e79565b5b60006130538482850161301a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130878261305c565b9050919050565b6130978161307c565b82525050565b60006020820190506130b2600083018461308e565b92915050565b6130c18161307c565b81146130cc57600080fd5b50565b6000813590506130de816130b8565b92915050565b600080604083850312156130fb576130fa612e79565b5b6000613109858286016130cf565b925050602061311a8582860161301a565b9150509250929050565b61312d81612ff9565b82525050565b60006020820190506131486000830184613124565b92915050565b60008060006060848603121561316757613166612e79565b5b6000613175868287016130cf565b9350506020613186868287016130cf565b92505060406131978682870161301a565b9150509250925092565b6000602082840312156131b7576131b6612e79565b5b60006131c5848285016130cf565b91505092915050565b6131d781612f08565b81146131e257600080fd5b50565b6000813590506131f4816131ce565b92915050565b6000806040838503121561321157613210612e79565b5b600061321f858286016130cf565b9250506020613230858286016131e5565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61327c82612f8d565b810181811067ffffffffffffffff8211171561329b5761329a613244565b5b80604052505050565b60006132ae612e6f565b90506132ba8282613273565b919050565b600067ffffffffffffffff8211156132da576132d9613244565b5b6132e382612f8d565b9050602081019050919050565b82818337600083830152505050565b600061331261330d846132bf565b6132a4565b90508281526020810184848401111561332e5761332d61323f565b5b6133398482856132f0565b509392505050565b600082601f8301126133565761335561323a565b5b81356133668482602086016132ff565b91505092915050565b6000806000806080858703121561338957613388612e79565b5b6000613397878288016130cf565b94505060206133a8878288016130cf565b93505060406133b98782880161301a565b925050606085013567ffffffffffffffff8111156133da576133d9612e7e565b5b6133e687828801613341565b91505092959194509250565b6000806040838503121561340957613408612e79565b5b6000613417858286016130cf565b9250506020613428858286016130cf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061347957607f821691505b6020821081141561348d5761348c613432565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006134ef602183612f49565b91506134fa82613493565b604082019050919050565b6000602082019050818103600083015261351e816134e2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613581603e83612f49565b915061358c82613525565b604082019050919050565b600060208201905081810360008301526135b081613574565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613613602e83612f49565b915061361e826135b7565b604082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006136a5602b83612f49565b91506136b082613649565b604082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613737602c83612f49565b9150613742826136db565b604082019050919050565b600060208201905081810360008301526137668161372a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006137d2601883612f49565b91506137dd8261379c565b602082019050919050565b60006020820190508181036000830152613801816137c5565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613864602983612f49565b915061386f82613808565b604082019050919050565b6000602082019050818103600083015261389381613857565b9050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b60006138d0600b83612f49565b91506138db8261389a565b602082019050919050565b600060208201905081810360008301526138ff816138c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061394082612ff9565b915061394b83612ff9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139805761397f613906565b5b828201905092915050565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b60006139c1601683612f49565b91506139cc8261398b565b602082019050919050565b600060208201905081810360008301526139f0816139b4565b9050919050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b6000613a2d601983612f49565b9150613a38826139f7565b602082019050919050565b60006020820190508181036000830152613a5c81613a20565b9050919050565b6000613a6e82612ff9565b9150613a7983612ff9565b925082821015613a8c57613a8b613906565b5b828203905092915050565b7f546f6f206d616e79206d696e74732f7478000000000000000000000000000000600082015250565b6000613acd601183612f49565b9150613ad882613a97565b602082019050919050565b60006020820190508181036000830152613afc81613ac0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b3d82612ff9565b9150613b4883612ff9565b925082613b5857613b57613b03565b5b828206905092915050565b6000613b6e82612ff9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba157613ba0613906565b5b600182019050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613be2601f83612f49565b9150613bed82613bac565b602082019050919050565b60006020820190508181036000830152613c1181613bd5565b9050919050565b600081905092915050565b7f48616c6c75636967656e69612023000000000000000000000000000000000000600082015250565b6000613c59600e83613c18565b9150613c6482613c23565b600e82019050919050565b600081519050919050565b600081905092915050565b6000613c9082613c6f565b613c9a8185613c7a565b9350613caa818560208601612f5a565b80840191505092915050565b7f205b000000000000000000000000000000000000000000000000000000000000600082015250565b6000613cec600283613c18565b9150613cf782613cb6565b600282019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613d38600183613c18565b9150613d4382613d02565b600182019050919050565b6000613d5982613c4c565b9150613d658285613c85565b9150613d7082613cdf565b9150613d7c8284613c85565b9150613d8782613d2b565b91508190509392505050565b7f7b2274726169745f74797065223a2022436f6c6f72222c202276616c7565223a60008201527f2022000000000000000000000000000000000000000000000000000000000000602082015250565b6000613def602283613c18565b9150613dfa82613d93565b602282019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000613e3b600283613c18565b9150613e4682613e05565b600282019050919050565b6000613e5c82613de2565b9150613e688284613c85565b9150613e7382613e2e565b915081905092915050565b7f2c207b2274726169745f74797065223a20224261636b67726f756e64222c202260008201527f76616c7565223a20225472616e73706172656e74227d00000000000000000000602082015250565b6000613eda603683613c18565b9150613ee582613e7e565b603682019050919050565b6000613efc8284613c85565b9150613f0782613ecd565b915081905092915050565b7f2c207b2274726169745f74797065223a20224261636b67726f756e64222c202260008201527f76616c7565223a2022426c61636b227d00000000000000000000000000000000602082015250565b6000613f6e603083613c18565b9150613f7982613f12565b603082019050919050565b6000613f908284613c85565b9150613f9b82613f61565b915081905092915050565b7f2c207b2274726169745f74797065223a2022416e696d6174696f6e222c20227660008201527f616c7565223a20224469736372657465227d0000000000000000000000000000602082015250565b6000614002603283613c18565b915061400d82613fa6565b603282019050919050565b60006140248284613c85565b915061402f82613ff5565b915081905092915050565b7f2c207b2274726169745f74797065223a2022416e696d6174696f6e222c20227660008201527f616c7565223a2022466c756964227d0000000000000000000000000000000000602082015250565b6000614096602f83613c18565b91506140a18261403a565b602f82019050919050565b60006140b88284613c85565b91506140c382614089565b915081905092915050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b6000614104600983613c18565b915061410f826140ce565b600982019050919050565b7f222c20226465736372697074696f6e223a2022776169776f72696e616f222c2060008201527f2261747472696275746573223a205b0000000000000000000000000000000000602082015250565b6000614176602f83613c18565b91506141818261411a565b602f82019050919050565b7f5d2c2022696d616765223a202200000000000000000000000000000000000000600082015250565b60006141c2600d83613c18565b91506141cd8261418c565b600d82019050919050565b60006141e382612f3e565b6141ed8185613c18565b93506141fd818560208601612f5a565b80840191505092915050565b6000614214826140f7565b91506142208286613c85565b915061422b82614169565b91506142378285613c85565b9150614242826141b5565b915061424e82846141d8565b915061425982613e2e565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061429c601d83613c18565b91506142a782614266565b601d82019050919050565b60006142bd8261428f565b91506142c982846141d8565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614330602683612f49565b915061433b826142d4565b604082019050919050565b6000602082019050818103600083015261435f81614323565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006143c2602583612f49565b91506143cd82614366565b604082019050919050565b600060208201905081810360008301526143f1816143b5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614454602483612f49565b915061445f826143f8565b604082019050919050565b6000602082019050818103600083015261448381614447565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144c0602083612f49565b91506144cb8261448a565b602082019050919050565b600060208201905081810360008301526144ef816144b3565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061452c601983612f49565b9150614537826144f6565b602082019050919050565b6000602082019050818103600083015261455b8161451f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006145be603283612f49565b91506145c982614562565b604082019050919050565b600060208201905081810360008301526145ed816145b1565b9050919050565b60006145ff82612ff9565b915061460a83612ff9565b92508261461a57614619613b03565b5b828204905092915050565b7f50617374656c0000000000000000000000000000000000000000000000000000600082015250565b600061465b600683613c18565b915061466682614625565b600682019050919050565b600061467c8261464e565b9150819050919050565b7f4e656f6e00000000000000000000000000000000000000000000000000000000600082015250565b60006146bc600483613c18565b91506146c782614686565b600482019050919050565b60006146dd826146af565b9150819050919050565b7f4d61676d61000000000000000000000000000000000000000000000000000000600082015250565b600061471d600583613c18565b9150614728826146e7565b600582019050919050565b600061473e82614710565b9150819050919050565b7f416d617a6f6e6961000000000000000000000000000000000000000000000000600082015250565b600061477e600883613c18565b915061478982614748565b600882019050919050565b600061479f82614771565b9150819050919050565b7f4368726f6d696e616e6365000000000000000000000000000000000000000000600082015250565b60006147df600b83613c18565b91506147ea826147a9565b600b82019050919050565b6000614800826147d2565b9150819050919050565b7f4c756d696e616e63650000000000000000000000000000000000000000000000600082015250565b6000614840600983613c18565b915061484b8261480a565b600982019050919050565b600061486182614833565b9150819050919050565b7f3f3f3f3f3f000000000000000000000000000000000000000000000000000000600082015250565b60006148a1600583613c18565b91506148ac8261486b565b600582019050919050565b60006148c282614894565b9150819050919050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222076657273696f6e3d22312e32222076696577426f783d223060208201527f20302035303020353030223e0000000000000000000000000000000000000000604082015250565b600061494e604c83613c18565b9150614959826148cc565b604c82019050919050565b600061496f82614941565b9150819050919050565b7f3c7265637420783d22302220793d2230222077696474683d223530302220686560008201527f696768743d22353030222066696c6c3d2223313131223e3c616e696d6174652060208201527f6174747269627574654e616d653d2266696c6c222076616c7565733d2223303060408201527f303b233333333b2330303022206475723d22302e30317322207265706561744360608201527f6f756e743d22696e646566696e697465222f3e3c2f726563743e000000000000608082015250565b6000614a47609a83613c18565b9150614a5282614979565b609a82019050919050565b6000614a698284613c85565b9150614a7482614a3a565b915081905092915050565b7f3c7061746820643d220000000000000000000000000000000000000000000000600082015250565b6000614ab5600983613c18565b9150614ac082614a7f565b600982019050919050565b7f22207374726f6b653d2223666666222066696c6c3d226e6f6e6522207374726f60008201527f6b652d77696474683d22343022207374726f6b652d6c696e656361703d22726f60208201527f756e64223e3c616e696d617465206174747269627574654e616d653d2273747260408201527f6f6b65222076616c7565733d2200000000000000000000000000000000000000606082015250565b6000614b73606d83613c18565b9150614b7e82614acb565b606d82019050919050565b6000614b958285613c85565b9150614ba082614aa8565b9150614bac8284613c85565b9150614bb782614b66565b91508190509392505050565b7f236666373163653b233031636466653b23303566666131000000000000000000600082015250565b6000614bf9601783613c18565b9150614c0482614bc3565b601782019050919050565b6000614c1b8284613c85565b9150614c2682614bec565b915081905092915050565b7f234634324238373b234646433645393b23324145384635000000000000000000600082015250565b6000614c67601783613c18565b9150614c7282614c31565b601782019050919050565b6000614c898284613c85565b9150614c9482614c5a565b915081905092915050565b7f236666663030313b236664313939393b23393966633230000000000000000000600082015250565b6000614cd5601783613c18565b9150614ce082614c9f565b601782019050919050565b6000614cf78284613c85565b9150614d0282614cc8565b915081905092915050565b7f233030464630303b233030303046460000000000000000000000000000000000600082015250565b6000614d43600f83613c18565b9150614d4e82614d0d565b600f82019050919050565b6000614d658284613c85565b9150614d7082614d36565b915081905092915050565b7f234646303030303b233030303046460000000000000000000000000000000000600082015250565b6000614db1600f83613c18565b9150614dbc82614d7b565b600f82019050919050565b6000614dd38284613c85565b9150614dde82614da4565b915081905092915050565b7f234646464646463b233030303030300000000000000000000000000000000000600082015250565b6000614e1f600f83613c18565b9150614e2a82614de9565b600f82019050919050565b6000614e418284613c85565b9150614e4c82614e12565b915081905092915050565b7f2346463333303000000000000000000000000000000000000000000000000000600082015250565b6000614e8d600783613c18565b9150614e9882614e57565b600782019050919050565b6000614eaf8284613c85565b9150614eba82614e80565b915081905092915050565b7f22206475723d22302e31732220726570656174436f756e743d22696e6465666960008201527f6e697465222063616c634d6f64653d226469736372657465222f3e3c616e696d60208201527f617465206174747269627574654e616d653d2264222076616c7565733d220000604082015250565b6000614f47605e83613c18565b9150614f5282614ec5565b605e82019050919050565b7f3b00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f93600183613c18565b9150614f9e82614f5d565b600182019050919050565b6000614fb58285613c85565b9150614fc082614f3a565b9150614fcc8284613c85565b9150614fd782614f86565b91508190509392505050565b6000614fef8285613c85565b9150614ffb8284613c85565b915061500682614f86565b91508190509392505050565b7f22206475723d22302e393573222063616c634d6f64653d22646973637265746560008201527f2220726570656174436f756e743d22696e646566696e697465222f3e3c616e6960208201527f6d617465206174747269627574654e616d653d227374726f6b652d776964746860408201527f222076616c7565733d2231303b35303b313022206475723d22302e377322207260608201527f6570656174436f756e743d22696e646566696e697465222063616c634d6f646560808201527f3d226469736372657465222f3e3c2f706174683e3c2f7376673e00000000000060a082015250565b600061510660ba83613c18565b915061511182615012565b60ba82019050919050565b60006151288285613c85565b91506151348284613c85565b915061513f826150f9565b91508190509392505050565b7f22206475723d22302e3935732220726570656174436f756e743d22696e64656660008201527f696e697465222f3e3c616e696d617465206174747269627574654e616d653d2260208201527f7374726f6b652d7769647468222076616c7565733d2231303b35303b3130222060408201527f6475723d22302e37732220726570656174436f756e743d22696e646566696e6960608201527f7465222f3e3c2f706174683e3c2f7376673e0000000000000000000000000000608082015250565b6000615219609283613c18565b91506152248261514b565b609282019050919050565b600061523b8285613c85565b91506152478284613c85565b91506152528261520c565b91508190509392505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b6000615294601a83613c18565b915061529f8261525e565b601a82019050919050565b60006152b582615287565b91506152c182846141d8565b915081905092915050565b60006152d782612ff9565b91506152e283612ff9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561531b5761531a613906565b5b828202905092915050565b600082825260208201905092915050565b600061534282613c6f565b61534c8185615326565b935061535c818560208601612f5a565b61536581612f8d565b840191505092915050565b6000608082019050615385600083018761308e565b615392602083018661308e565b61539f6040830185613124565b81810360608301526153b18184615337565b905095945050505050565b6000815190506153cb81612eaf565b92915050565b6000602082840312156153e7576153e6612e79565b5b60006153f5848285016153bc565b91505092915050565b7f4d2035302c000000000000000000000000000000000000000000000000000000600082015250565b6000615434600583613c18565b915061543f826153fe565b600582019050919050565b600061545582615427565b91506154618284613c85565b915081905092915050565b7f2043200000000000000000000000000000000000000000000000000000000000600082015250565b60006154a2600383613c18565b91506154ad8261546c565b600382019050919050565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b60006154ee600183613c18565b91506154f9826154b8565b600182019050919050565b60006155108285613c85565b915061551b82615495565b91506155278284613c85565b9150615532826154e1565b91508190509392505050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000615574600183613c18565b915061557f8261553e565b600182019050919050565b7f2053200000000000000000000000000000000000000000000000000000000000600082015250565b60006155c0600383613c18565b91506155cb8261558a565b600382019050919050565b60006155e28287613c85565b91506155ee8286613c85565b91506155f9826154e1565b91506156058285613c85565b915061561082615567565b915061561c8284613c85565b9150615627826155b3565b915081905095945050505050565b7f203435302c000000000000000000000000000000000000000000000000000000600082015250565b600061566b600583613c18565b915061567682615635565b600582019050919050565b600061568d8286613c85565b91506156998285613c85565b91506156a48261565e565b91506156b08284613c85565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615722602083612f49565b915061572d826156ec565b602082019050919050565b6000602082019050818103600083015261575181615715565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061578e601c83612f49565b915061579982615758565b602082019050919050565b600060208201905081810360008301526157bd81615781565b9050919050565b60006157d08284613c85565b915081905092915050565b60006157e78285613c85565b91506157f282615567565b91506157fe8284613c85565b9150819050939250505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212204f4dd8a10469ecfed12ba2f53c3c062c196bd7ffee5d18dd0b2d72a561a5548264736f6c63430008090033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063c6a91b4211610064578063c6a91b4214610584578063c87b56dd146105af578063e985e9c5146105ec578063f2fde38b146106295761019c565b8063a22cb46514610507578063a9aad58c14610530578063b88d4fde1461055b5761019c565b80638456cb59116100c65780638456cb591461047e5780638da5cb5b1461049557806395d89b41146104c0578063a0712d68146104eb5761019c565b806370a0823114610401578063715018a61461043e57806379c9cb7b146104555761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146103355780634f6ccce71461035e5780636352211e1461039b5780636f8b44b0146103d85761019c565b80632f745c59146102c357806332cb6b0c146103005780633ccfd60b1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612edb565b610652565b6040516101d59190612f23565b60405180910390f35b3480156101ea57600080fd5b506101f36106cc565b6040516102009190612fd7565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061302f565b61075e565b60405161023d919061309d565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906130e4565b6107a4565b005b34801561027b57600080fd5b506102846108bc565b6040516102919190613133565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061314e565b6108c9565b005b3480156102cf57600080fd5b506102ea60048036038101906102e591906130e4565b610929565b6040516102f79190613133565b60405180910390f35b34801561030c57600080fd5b506103156109ce565b6040516103229190613133565b60405180910390f35b6103336109d4565b005b34801561034157600080fd5b5061035c6004803603810190610357919061314e565b610a30565b005b34801561036a57600080fd5b506103856004803603810190610380919061302f565b610a50565b6040516103929190613133565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd919061302f565b610ac1565b6040516103cf919061309d565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa919061302f565b610b73565b005b34801561040d57600080fd5b50610428600480360381019061042391906131a1565b610b85565b6040516104359190613133565b60405180910390f35b34801561044a57600080fd5b50610453610c3d565b005b34801561046157600080fd5b5061047c6004803603810190610477919061302f565b610c51565b005b34801561048a57600080fd5b50610493610c63565b005b3480156104a157600080fd5b506104aa610c97565b6040516104b7919061309d565b60405180910390f35b3480156104cc57600080fd5b506104d5610cc1565b6040516104e29190612fd7565b60405180910390f35b6105056004803603810190610500919061302f565b610d53565b005b34801561051357600080fd5b5061052e600480360381019061052991906131fa565b610f66565b005b34801561053c57600080fd5b50610545610f7c565b6040516105529190612f23565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d919061336f565b610f8f565b005b34801561059057600080fd5b50610599610ff1565b6040516105a69190613133565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d1919061302f565b610ff7565b6040516105e39190612fd7565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e91906133f2565b6111fc565b6040516106209190612f23565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b91906131a1565b611290565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c557506106c482611314565b5b9050919050565b6060600080546106db90613461565b80601f016020809104026020016040519081016040528092919081815260200182805461070790613461565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b6000610769826113f6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107af82610ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081790613505565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661083f611441565b73ffffffffffffffffffffffffffffffffffffffff16148061086e575061086d81610868611441565b6111fc565b5b6108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490613597565b60405180910390fd5b6108b78383611449565b505050565b6000600880549050905090565b6108da6108d4611441565b82611502565b610919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091090613629565b60405180910390fd5b610924838383611597565b505050565b600061093483610b85565b8210610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c906136bb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b6109dc6117fe565b73ed8d89b01cb469b75a9a18bd4680f0b4c4224a4d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610a2e57600080fd5b565b610a4b83838360405180602001604052806000815250610f8f565b505050565b6000610a5a6108bc565b8210610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a929061374d565b60405180910390fd5b60088281548110610aaf57610aae61376d565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906137e8565b60405180910390fd5b80915050919050565b610b7b6117fe565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed9061387a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c456117fe565b610c4f600061187c565b565b610c596117fe565b80600c8190555050565b610c6b6117fe565b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610cd090613461565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfc90613461565b8015610d495780601f10610d1e57610100808354040283529160200191610d49565b820191906000526020600020905b815481529060010190602001808311610d2c57829003601f168201915b5050505050905090565b6000610d5d6108bc565b9050600a60149054906101000a900460ff1615610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906138e6565b60405180910390fd5b600b548282610dbe9190613935565b10610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df5906139d7565b60405180910390fd5b600d54341015610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90613a43565b60405180910390fd5b600082118015610e605750600c54600183610e5e9190613a63565b105b610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613ae3565b60405180910390fd5b60005b82811015610f6157610ebe8243610eb99190613935565b611942565b610ed28342610ecd9190613935565b611942565b610edc9190613935565b600e60008481526020019081526020016000208190555060016006610f0b8442610f069190613935565b611942565b610f159190613b32565b610f1f9190613935565b600f600084815260200190815260200160002081905550610f403383611981565b8180610f4b90613b63565b9250508080610f5990613b63565b915050610ea2565b505050565b610f78610f71611441565b838361199f565b5050565b600a60149054906101000a900460ff1681565b610fa0610f9a611441565b83611502565b610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690613629565b60405180910390fd5b610feb84848484611b0c565b50505050565b600c5481565b606061100282611b68565b611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890613bf8565b60405180910390fd5b600061104c83611bd4565b611068600e600086815260200190815260200160002054611bd4565b604051602001611079929190613d4e565b6040516020818303038152906040529050600061109584611d5c565b6040516020016110a59190613e51565b604051602081830303815290604052905060006007600e6000878152602001908152602001600020546110d89190613b32565b141561110557806040516020016110ef9190613ef0565b6040516020818303038152906040529050611128565b806040516020016111169190613f84565b60405160208183030381529060405290505b60006006600e60008781526020019081526020016000205461114a9190613b32565b141561117757806040516020016111619190614018565b604051602081830303815290604052905061119a565b8060405160200161118891906140ac565b60405160208183030381529060405290505b600082826111a787611eb7565b6040516020016111b993929190614209565b60405160208183030381529060405290506111d38161224f565b6040516020016111e391906142b2565b6040516020818303038152906040529350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112986117fe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90614346565b60405180910390fd5b6113118161187c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113df57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806113ef57506113ee826123d4565b5b9050919050565b6113ff81611b68565b61143e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611435906137e8565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114bc83610ac1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061150e83610ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611550575061154f81856111fc565b5b8061158e57508373ffffffffffffffffffffffffffffffffffffffff166115768461075e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115b782610ac1565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611604906143d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061446a565b60405180910390fd5b61168883838361243e565b611693600082611449565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116e39190613a63565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173a9190613935565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117f9838383612552565b505050565b611806611441565b73ffffffffffffffffffffffffffffffffffffffff16611824610c97565b73ffffffffffffffffffffffffffffffffffffffff161461187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906144d6565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060fa600a0a60018102600a800a8481038083046003600201600a0a6002600a0a8183068184068082038381049a5050505050505050505050919050565b61199b828260405180602001604052806000815250612557565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614542565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aff9190612f23565b60405180910390a3505050565b611b17848484611597565b611b23848484846125b2565b611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b59906145d4565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611c1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d57565b600082905060005b60008214611c4e578080611c3790613b63565b915050600a82611c4791906145f4565b9150611c24565b60008167ffffffffffffffff811115611c6a57611c69613244565b5b6040519080825280601f01601f191660200182016040528015611c9c5781602001600182028036833780820191505090505b5090505b60008514611d5057600182611cb59190613a63565b91507f3031323334353637383900000000000000000000000000000000000000000000600a86611ce59190613b32565b600a8110611cf657611cf561376d565b5b1a60f81b818381518110611d0d57611d0c61376d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d4991906145f4565b9450611ca0565b8093505050505b919050565b60606000600f60008481526020019081526020016000205490506001811415611da557604051602001611d8e90614671565b604051602081830303815290604052915050611eb2565b6002811415611dd457604051602001611dbd906146d2565b604051602081830303815290604052915050611eb2565b6003811415611e0357604051602001611dec90614733565b604051602081830303815290604052915050611eb2565b6004811415611e3257604051602001611e1b90614794565b604051602081830303815290604052915050611eb2565b6005811415611e6157604051602001611e4a906147f5565b604051602081830303815290604052915050611eb2565b6006811415611e9057604051602001611e7990614856565b604051602081830303815290604052915050611eb2565b604051602001611e9f906148b7565b6040516020818303038152906040529150505b919050565b6060611ec282611b68565b611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890613bf8565b60405180910390fd5b6000611f236003600e600086815260200190815260200160002054901b612749565b90506000600f60008581526020019081526020016000205490506000604051602001611f4e90614964565b604051602081830303815290604052905060006007600e600088815260200190815260200160002054611f819190613b32565b14611fa95780604051602001611f979190614a5d565b60405160208183030381529060405290505b8083604051602001611fbc929190614b89565b60405160208183030381529060405290506001821415611ffd5780604051602001611fe79190614c0f565b6040516020818303038152906040529050612115565b600282141561202d57806040516020016120179190614c7d565b6040516020818303038152906040529050612114565b600382141561205d57806040516020016120479190614ceb565b6040516020818303038152906040529050612113565b600482141561208d57806040516020016120779190614d59565b6040516020818303038152906040529050612112565b60058214156120bd57806040516020016120a79190614dc7565b6040516020818303038152906040529050612111565b60068214156120ed57806040516020016120d79190614e35565b6040516020818303038152906040529050612110565b806040516020016120fe9190614ea3565b60405160208183030381529060405290505b5b5b5b5b5b8083604051602001612128929190614fa9565b604051602081830303815290604052905060005b60058110156121a657816121716001836121569190613935565b600e60008a815260200190815260200160002054901b612749565b604051602001612182929190614fe3565b6040516020818303038152906040529150808061219e90613b63565b91505061213c565b5060006006600e6000888152602001908152602001600020546121c99190613b32565b14156121f85780836040516020016121e292919061511c565b604051602081830303815290604052905061221d565b808360405160200161220b92919061522f565b60405160208183030381529060405290505b6122268161224f565b60405160200161223691906152aa565b6040516020818303038152906040529350505050919050565b6060600082511415612272576040518060200160405280600081525090506123cf565b600060405180606001604052806040815260200161580b60409139905060006003600285516122a19190613935565b6122ab91906145f4565b60046122b791906152cc565b905060006020826122c89190613935565b67ffffffffffffffff8111156122e1576122e0613244565b5b6040519080825280601f01601f1916602001820160405280156123135781602001600182028036833780820191505090505b509050818152600183018586518101602084015b8183101561238e576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050612327565b6003895106600181146123a857600281146123b8576123c3565b613d3d60f01b60028303526123c3565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612449838383612886565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561248c576124878161288b565b6124cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124ca576124c983826128d4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250e5761250981612a41565b61254d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461254c5761254b8282612b12565b5b5b505050565b505050565b6125618383612b91565b61256e60008484846125b2565b6125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a4906145d4565b60405180910390fd5b505050565b60006125d38473ffffffffffffffffffffffffffffffffffffffff16612d6b565b1561273c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125fc611441565b8786866040518563ffffffff1660e01b815260040161261e9493929190615370565b602060405180830381600087803b15801561263857600080fd5b505af192505050801561266957506040513d601f19601f8201168201806040525081019061266691906153d1565b60015b6126ec573d8060008114612699576040519150601f19603f3d011682016040523d82523d6000602084013e61269e565b606091505b506000815114156126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db906145d4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612741565b600190505b949350505050565b6060600061275683612d8e565b604051602001612766919061544a565b604051602081830303815290604052905080612783846007612ddf565b604051602001612794929190615504565b604051602081830303815290604052905060005b600381101561284357816127d382866127c19190613935565b6001846127ce9190613935565b612ddf565b6127f48360646127e391906152cc565b60966127ef9190613935565b611bd4565b61280c6001856128049190613935565b88901b612d8e565b60405160200161281f94939291906155d6565b6040516020818303038152906040529150808061283b90613b63565b9150506127a8565b508061285084600b612ddf565b61285d600d86901b612d8e565b60405160200161286f93929190615681565b604051602081830303815290604052915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128e184610b85565b6128eb9190613a63565b90506000600760008481526020019081526020016000205490508181146129d0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a559190613a63565b9050600060096000848152602001908152602001600020549050600060088381548110612a8557612a8461376d565b5b906000526020600020015490508060088381548110612aa757612aa661376d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612af657612af56156bd565b5b6001900381819060005260206000200160009055905550505050565b6000612b1d83610b85565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf890615738565b60405180910390fd5b612c0a81611b68565b15612c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c41906157a4565b60405180910390fd5b612c566000838361243e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca69190613935565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6760008383612552565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060612db9609660c8612da085611942565b612daa9190613b32565b612db49190613935565b611bd4565b604051602001612dc991906157c4565b6040516020818303038152906040529050919050565b6060612e0e606461012c612df58587901b611942565b612dff9190613b32565b612e099190613935565b611bd4565b612e47606461012c612e2e600187612e269190613935565b88901b611942565b612e389190613b32565b612e429190613935565b611bd4565b604051602001612e589291906157db565b604051602081830303815290604052905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612eb881612e83565b8114612ec357600080fd5b50565b600081359050612ed581612eaf565b92915050565b600060208284031215612ef157612ef0612e79565b5b6000612eff84828501612ec6565b91505092915050565b60008115159050919050565b612f1d81612f08565b82525050565b6000602082019050612f386000830184612f14565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f78578082015181840152602081019050612f5d565b83811115612f87576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fa982612f3e565b612fb38185612f49565b9350612fc3818560208601612f5a565b612fcc81612f8d565b840191505092915050565b60006020820190508181036000830152612ff18184612f9e565b905092915050565b6000819050919050565b61300c81612ff9565b811461301757600080fd5b50565b60008135905061302981613003565b92915050565b60006020828403121561304557613044612e79565b5b60006130538482850161301a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130878261305c565b9050919050565b6130978161307c565b82525050565b60006020820190506130b2600083018461308e565b92915050565b6130c18161307c565b81146130cc57600080fd5b50565b6000813590506130de816130b8565b92915050565b600080604083850312156130fb576130fa612e79565b5b6000613109858286016130cf565b925050602061311a8582860161301a565b9150509250929050565b61312d81612ff9565b82525050565b60006020820190506131486000830184613124565b92915050565b60008060006060848603121561316757613166612e79565b5b6000613175868287016130cf565b9350506020613186868287016130cf565b92505060406131978682870161301a565b9150509250925092565b6000602082840312156131b7576131b6612e79565b5b60006131c5848285016130cf565b91505092915050565b6131d781612f08565b81146131e257600080fd5b50565b6000813590506131f4816131ce565b92915050565b6000806040838503121561321157613210612e79565b5b600061321f858286016130cf565b9250506020613230858286016131e5565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61327c82612f8d565b810181811067ffffffffffffffff8211171561329b5761329a613244565b5b80604052505050565b60006132ae612e6f565b90506132ba8282613273565b919050565b600067ffffffffffffffff8211156132da576132d9613244565b5b6132e382612f8d565b9050602081019050919050565b82818337600083830152505050565b600061331261330d846132bf565b6132a4565b90508281526020810184848401111561332e5761332d61323f565b5b6133398482856132f0565b509392505050565b600082601f8301126133565761335561323a565b5b81356133668482602086016132ff565b91505092915050565b6000806000806080858703121561338957613388612e79565b5b6000613397878288016130cf565b94505060206133a8878288016130cf565b93505060406133b98782880161301a565b925050606085013567ffffffffffffffff8111156133da576133d9612e7e565b5b6133e687828801613341565b91505092959194509250565b6000806040838503121561340957613408612e79565b5b6000613417858286016130cf565b9250506020613428858286016130cf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061347957607f821691505b6020821081141561348d5761348c613432565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006134ef602183612f49565b91506134fa82613493565b604082019050919050565b6000602082019050818103600083015261351e816134e2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613581603e83612f49565b915061358c82613525565b604082019050919050565b600060208201905081810360008301526135b081613574565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613613602e83612f49565b915061361e826135b7565b604082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006136a5602b83612f49565b91506136b082613649565b604082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613737602c83612f49565b9150613742826136db565b604082019050919050565b600060208201905081810360008301526137668161372a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006137d2601883612f49565b91506137dd8261379c565b602082019050919050565b60006020820190508181036000830152613801816137c5565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613864602983612f49565b915061386f82613808565b604082019050919050565b6000602082019050818103600083015261389381613857565b9050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b60006138d0600b83612f49565b91506138db8261389a565b602082019050919050565b600060208201905081810360008301526138ff816138c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061394082612ff9565b915061394b83612ff9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139805761397f613906565b5b828201905092915050565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b60006139c1601683612f49565b91506139cc8261398b565b602082019050919050565b600060208201905081810360008301526139f0816139b4565b9050919050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b6000613a2d601983612f49565b9150613a38826139f7565b602082019050919050565b60006020820190508181036000830152613a5c81613a20565b9050919050565b6000613a6e82612ff9565b9150613a7983612ff9565b925082821015613a8c57613a8b613906565b5b828203905092915050565b7f546f6f206d616e79206d696e74732f7478000000000000000000000000000000600082015250565b6000613acd601183612f49565b9150613ad882613a97565b602082019050919050565b60006020820190508181036000830152613afc81613ac0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b3d82612ff9565b9150613b4883612ff9565b925082613b5857613b57613b03565b5b828206905092915050565b6000613b6e82612ff9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba157613ba0613906565b5b600182019050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613be2601f83612f49565b9150613bed82613bac565b602082019050919050565b60006020820190508181036000830152613c1181613bd5565b9050919050565b600081905092915050565b7f48616c6c75636967656e69612023000000000000000000000000000000000000600082015250565b6000613c59600e83613c18565b9150613c6482613c23565b600e82019050919050565b600081519050919050565b600081905092915050565b6000613c9082613c6f565b613c9a8185613c7a565b9350613caa818560208601612f5a565b80840191505092915050565b7f205b000000000000000000000000000000000000000000000000000000000000600082015250565b6000613cec600283613c18565b9150613cf782613cb6565b600282019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613d38600183613c18565b9150613d4382613d02565b600182019050919050565b6000613d5982613c4c565b9150613d658285613c85565b9150613d7082613cdf565b9150613d7c8284613c85565b9150613d8782613d2b565b91508190509392505050565b7f7b2274726169745f74797065223a2022436f6c6f72222c202276616c7565223a60008201527f2022000000000000000000000000000000000000000000000000000000000000602082015250565b6000613def602283613c18565b9150613dfa82613d93565b602282019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000613e3b600283613c18565b9150613e4682613e05565b600282019050919050565b6000613e5c82613de2565b9150613e688284613c85565b9150613e7382613e2e565b915081905092915050565b7f2c207b2274726169745f74797065223a20224261636b67726f756e64222c202260008201527f76616c7565223a20225472616e73706172656e74227d00000000000000000000602082015250565b6000613eda603683613c18565b9150613ee582613e7e565b603682019050919050565b6000613efc8284613c85565b9150613f0782613ecd565b915081905092915050565b7f2c207b2274726169745f74797065223a20224261636b67726f756e64222c202260008201527f76616c7565223a2022426c61636b227d00000000000000000000000000000000602082015250565b6000613f6e603083613c18565b9150613f7982613f12565b603082019050919050565b6000613f908284613c85565b9150613f9b82613f61565b915081905092915050565b7f2c207b2274726169745f74797065223a2022416e696d6174696f6e222c20227660008201527f616c7565223a20224469736372657465227d0000000000000000000000000000602082015250565b6000614002603283613c18565b915061400d82613fa6565b603282019050919050565b60006140248284613c85565b915061402f82613ff5565b915081905092915050565b7f2c207b2274726169745f74797065223a2022416e696d6174696f6e222c20227660008201527f616c7565223a2022466c756964227d0000000000000000000000000000000000602082015250565b6000614096602f83613c18565b91506140a18261403a565b602f82019050919050565b60006140b88284613c85565b91506140c382614089565b915081905092915050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b6000614104600983613c18565b915061410f826140ce565b600982019050919050565b7f222c20226465736372697074696f6e223a2022776169776f72696e616f222c2060008201527f2261747472696275746573223a205b0000000000000000000000000000000000602082015250565b6000614176602f83613c18565b91506141818261411a565b602f82019050919050565b7f5d2c2022696d616765223a202200000000000000000000000000000000000000600082015250565b60006141c2600d83613c18565b91506141cd8261418c565b600d82019050919050565b60006141e382612f3e565b6141ed8185613c18565b93506141fd818560208601612f5a565b80840191505092915050565b6000614214826140f7565b91506142208286613c85565b915061422b82614169565b91506142378285613c85565b9150614242826141b5565b915061424e82846141d8565b915061425982613e2e565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061429c601d83613c18565b91506142a782614266565b601d82019050919050565b60006142bd8261428f565b91506142c982846141d8565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614330602683612f49565b915061433b826142d4565b604082019050919050565b6000602082019050818103600083015261435f81614323565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006143c2602583612f49565b91506143cd82614366565b604082019050919050565b600060208201905081810360008301526143f1816143b5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614454602483612f49565b915061445f826143f8565b604082019050919050565b6000602082019050818103600083015261448381614447565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144c0602083612f49565b91506144cb8261448a565b602082019050919050565b600060208201905081810360008301526144ef816144b3565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061452c601983612f49565b9150614537826144f6565b602082019050919050565b6000602082019050818103600083015261455b8161451f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006145be603283612f49565b91506145c982614562565b604082019050919050565b600060208201905081810360008301526145ed816145b1565b9050919050565b60006145ff82612ff9565b915061460a83612ff9565b92508261461a57614619613b03565b5b828204905092915050565b7f50617374656c0000000000000000000000000000000000000000000000000000600082015250565b600061465b600683613c18565b915061466682614625565b600682019050919050565b600061467c8261464e565b9150819050919050565b7f4e656f6e00000000000000000000000000000000000000000000000000000000600082015250565b60006146bc600483613c18565b91506146c782614686565b600482019050919050565b60006146dd826146af565b9150819050919050565b7f4d61676d61000000000000000000000000000000000000000000000000000000600082015250565b600061471d600583613c18565b9150614728826146e7565b600582019050919050565b600061473e82614710565b9150819050919050565b7f416d617a6f6e6961000000000000000000000000000000000000000000000000600082015250565b600061477e600883613c18565b915061478982614748565b600882019050919050565b600061479f82614771565b9150819050919050565b7f4368726f6d696e616e6365000000000000000000000000000000000000000000600082015250565b60006147df600b83613c18565b91506147ea826147a9565b600b82019050919050565b6000614800826147d2565b9150819050919050565b7f4c756d696e616e63650000000000000000000000000000000000000000000000600082015250565b6000614840600983613c18565b915061484b8261480a565b600982019050919050565b600061486182614833565b9150819050919050565b7f3f3f3f3f3f000000000000000000000000000000000000000000000000000000600082015250565b60006148a1600583613c18565b91506148ac8261486b565b600582019050919050565b60006148c282614894565b9150819050919050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222076657273696f6e3d22312e32222076696577426f783d223060208201527f20302035303020353030223e0000000000000000000000000000000000000000604082015250565b600061494e604c83613c18565b9150614959826148cc565b604c82019050919050565b600061496f82614941565b9150819050919050565b7f3c7265637420783d22302220793d2230222077696474683d223530302220686560008201527f696768743d22353030222066696c6c3d2223313131223e3c616e696d6174652060208201527f6174747269627574654e616d653d2266696c6c222076616c7565733d2223303060408201527f303b233333333b2330303022206475723d22302e30317322207265706561744360608201527f6f756e743d22696e646566696e697465222f3e3c2f726563743e000000000000608082015250565b6000614a47609a83613c18565b9150614a5282614979565b609a82019050919050565b6000614a698284613c85565b9150614a7482614a3a565b915081905092915050565b7f3c7061746820643d220000000000000000000000000000000000000000000000600082015250565b6000614ab5600983613c18565b9150614ac082614a7f565b600982019050919050565b7f22207374726f6b653d2223666666222066696c6c3d226e6f6e6522207374726f60008201527f6b652d77696474683d22343022207374726f6b652d6c696e656361703d22726f60208201527f756e64223e3c616e696d617465206174747269627574654e616d653d2273747260408201527f6f6b65222076616c7565733d2200000000000000000000000000000000000000606082015250565b6000614b73606d83613c18565b9150614b7e82614acb565b606d82019050919050565b6000614b958285613c85565b9150614ba082614aa8565b9150614bac8284613c85565b9150614bb782614b66565b91508190509392505050565b7f236666373163653b233031636466653b23303566666131000000000000000000600082015250565b6000614bf9601783613c18565b9150614c0482614bc3565b601782019050919050565b6000614c1b8284613c85565b9150614c2682614bec565b915081905092915050565b7f234634324238373b234646433645393b23324145384635000000000000000000600082015250565b6000614c67601783613c18565b9150614c7282614c31565b601782019050919050565b6000614c898284613c85565b9150614c9482614c5a565b915081905092915050565b7f236666663030313b236664313939393b23393966633230000000000000000000600082015250565b6000614cd5601783613c18565b9150614ce082614c9f565b601782019050919050565b6000614cf78284613c85565b9150614d0282614cc8565b915081905092915050565b7f233030464630303b233030303046460000000000000000000000000000000000600082015250565b6000614d43600f83613c18565b9150614d4e82614d0d565b600f82019050919050565b6000614d658284613c85565b9150614d7082614d36565b915081905092915050565b7f234646303030303b233030303046460000000000000000000000000000000000600082015250565b6000614db1600f83613c18565b9150614dbc82614d7b565b600f82019050919050565b6000614dd38284613c85565b9150614dde82614da4565b915081905092915050565b7f234646464646463b233030303030300000000000000000000000000000000000600082015250565b6000614e1f600f83613c18565b9150614e2a82614de9565b600f82019050919050565b6000614e418284613c85565b9150614e4c82614e12565b915081905092915050565b7f2346463333303000000000000000000000000000000000000000000000000000600082015250565b6000614e8d600783613c18565b9150614e9882614e57565b600782019050919050565b6000614eaf8284613c85565b9150614eba82614e80565b915081905092915050565b7f22206475723d22302e31732220726570656174436f756e743d22696e6465666960008201527f6e697465222063616c634d6f64653d226469736372657465222f3e3c616e696d60208201527f617465206174747269627574654e616d653d2264222076616c7565733d220000604082015250565b6000614f47605e83613c18565b9150614f5282614ec5565b605e82019050919050565b7f3b00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f93600183613c18565b9150614f9e82614f5d565b600182019050919050565b6000614fb58285613c85565b9150614fc082614f3a565b9150614fcc8284613c85565b9150614fd782614f86565b91508190509392505050565b6000614fef8285613c85565b9150614ffb8284613c85565b915061500682614f86565b91508190509392505050565b7f22206475723d22302e393573222063616c634d6f64653d22646973637265746560008201527f2220726570656174436f756e743d22696e646566696e697465222f3e3c616e6960208201527f6d617465206174747269627574654e616d653d227374726f6b652d776964746860408201527f222076616c7565733d2231303b35303b313022206475723d22302e377322207260608201527f6570656174436f756e743d22696e646566696e697465222063616c634d6f646560808201527f3d226469736372657465222f3e3c2f706174683e3c2f7376673e00000000000060a082015250565b600061510660ba83613c18565b915061511182615012565b60ba82019050919050565b60006151288285613c85565b91506151348284613c85565b915061513f826150f9565b91508190509392505050565b7f22206475723d22302e3935732220726570656174436f756e743d22696e64656660008201527f696e697465222f3e3c616e696d617465206174747269627574654e616d653d2260208201527f7374726f6b652d7769647468222076616c7565733d2231303b35303b3130222060408201527f6475723d22302e37732220726570656174436f756e743d22696e646566696e6960608201527f7465222f3e3c2f706174683e3c2f7376673e0000000000000000000000000000608082015250565b6000615219609283613c18565b91506152248261514b565b609282019050919050565b600061523b8285613c85565b91506152478284613c85565b91506152528261520c565b91508190509392505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b6000615294601a83613c18565b915061529f8261525e565b601a82019050919050565b60006152b582615287565b91506152c182846141d8565b915081905092915050565b60006152d782612ff9565b91506152e283612ff9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561531b5761531a613906565b5b828202905092915050565b600082825260208201905092915050565b600061534282613c6f565b61534c8185615326565b935061535c818560208601612f5a565b61536581612f8d565b840191505092915050565b6000608082019050615385600083018761308e565b615392602083018661308e565b61539f6040830185613124565b81810360608301526153b18184615337565b905095945050505050565b6000815190506153cb81612eaf565b92915050565b6000602082840312156153e7576153e6612e79565b5b60006153f5848285016153bc565b91505092915050565b7f4d2035302c000000000000000000000000000000000000000000000000000000600082015250565b6000615434600583613c18565b915061543f826153fe565b600582019050919050565b600061545582615427565b91506154618284613c85565b915081905092915050565b7f2043200000000000000000000000000000000000000000000000000000000000600082015250565b60006154a2600383613c18565b91506154ad8261546c565b600382019050919050565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b60006154ee600183613c18565b91506154f9826154b8565b600182019050919050565b60006155108285613c85565b915061551b82615495565b91506155278284613c85565b9150615532826154e1565b91508190509392505050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000615574600183613c18565b915061557f8261553e565b600182019050919050565b7f2053200000000000000000000000000000000000000000000000000000000000600082015250565b60006155c0600383613c18565b91506155cb8261558a565b600382019050919050565b60006155e28287613c85565b91506155ee8286613c85565b91506155f9826154e1565b91506156058285613c85565b915061561082615567565b915061561c8284613c85565b9150615627826155b3565b915081905095945050505050565b7f203435302c000000000000000000000000000000000000000000000000000000600082015250565b600061566b600583613c18565b915061567682615635565b600582019050919050565b600061568d8286613c85565b91506156998285613c85565b91506156a48261565e565b91506156b08284613c85565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615722602083612f49565b915061572d826156ec565b602082019050919050565b6000602082019050818103600083015261575181615715565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061578e601c83612f49565b915061579982615758565b602082019050919050565b600060208201905081810360008301526157bd81615781565b9050919050565b60006157d08284613c85565b915081905092915050565b60006157e78285613c85565b91506157f282615567565b91506157fe8284613c85565b9150819050939250505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212204f4dd8a10469ecfed12ba2f53c3c062c196bd7ffee5d18dd0b2d72a561a5548264736f6c63430008090033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.