ETH Price: $3,386.32 (-1.49%)
Gas: 1 Gwei

Token

Goofy Oversized Optics People (GOOP)
 

Overview

Max Total Supply

10,000 GOOP

Holders

2,258

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
oneloveonelink.eth
Balance
1 GOOP
0xB49b4a2d614a340818e43C4769a303eECcD040Fc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GOOP TROOP: GOOFY OVERSIZED OPTICS PEOPLE GOOPs are entirely on-chain and no external servers are utilized. GOOP owners can change the description of their GOOP on-chain, which will be reflected in OpenSea. GOOPs are community driven and can be used in a variety of different...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GOOPsToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : GOOPsToken.sol
//  SPDX-License-Identifier: GPL-3.0

/*

 ██████╗  ██████╗  ██████╗ ██████╗         
██╔════╝ ██╔═══██╗██╔═══██╗██╔══██╗        
██║  ███╗██║   ██║██║   ██║██████╔╝        
██║   ██║██║   ██║██║   ██║██╔═══╝         
╚██████╔╝╚██████╔╝╚██████╔╝██║             
 ╚═════╝  ╚═════╝  ╚═════╝ ╚═╝             
                                           
████████╗██████╗  ██████╗  ██████╗ ██████╗ 
╚══██╔══╝██╔══██╗██╔═══██╗██╔═══██╗██╔══██╗
   ██║   ██████╔╝██║   ██║██║   ██║██████╔╝
   ██║   ██╔══██╗██║   ██║██║   ██║██╔═══╝ 
   ██║   ██║  ██║╚██████╔╝╚██████╔╝██║     
   ╚═╝   ╚═╝  ╚═╝ ╚═════╝  ╚═════╝ ╚═╝     
                                           
GOOP Troop: Goofy Oversized Optics People


GOOP Troop project source code is derivative of the Nouns project token (0x9C8fF314C9Bc7F6e59A9d9225Fb22946427eDC03) by Nouns DAO, which is licensed under GPL-3.0.
*/
pragma solidity ^0.8.6;
    
import { Ownable } from './Ownable.sol';
import { IGOOPsDescriptor } from './IGOOPsDescriptor.sol';
import { IGOOPsSeeder } from './IGOOPsSeeder.sol';
import { IGOOPsToken } from './IGOOPsToken.sol';
import { ERC721 } from './ERC721.sol';
import { IERC721 } from './IERC721.sol';
import { IProxyRegistry } from './IProxyRegistry.sol';
import { Strings } from './Strings.sol';
import { ERC721Enumerable } from './ERC721Enumerable.sol';


contract GOOPsToken is IGOOPsToken, Ownable, ERC721Enumerable {
    using Strings for uint256;

    // Price and maximum number of GOOPs
    uint256 public price = 36942000000000000;
    uint256 public max_tokens = 10000;
    uint256 public mint_limit= 20;

    // Store custom descriptions for GOOPs
    mapping (uint => string) public customDescription; 

    // The GOOPs token URI descriptor
    IGOOPsDescriptor public descriptor;

    // The GOOPs token seeder
    IGOOPsSeeder public seeder;

    // Whether the descriptor can be updated
    bool public isDescriptorLocked;

    // Whether the seeder can be updated
    bool public isSeederLocked;

    // The GOOP seeds
    mapping(uint256 => IGOOPsSeeder.Seed) public seeds;

    // The internal GOOP ID tracker
    uint256 private _currentGOOPId;

    // IPFS content hash of contract-level metadata
    string private _contractURIHash;

    // OpenSea's Proxy Registry
    IProxyRegistry public immutable proxyRegistry;

    // Withdraw Addresses
    address t1;
    address t2;

    // Sale Status

    bool public sale_active =false;

    /**
     * @notice Require that the descriptor has not been locked.
     */
    modifier whenDescriptorNotLocked() {
        require(!isDescriptorLocked, 'Descriptor is locked');
        _;
    }

    /**
     * @notice Require that the seeder has not been locked.
     */
    modifier whenSeederNotLocked() {
        require(!isSeederLocked, 'Seeder is locked');
        _;
    }

    /**
     * @notice Set a custom description for a GOOP token on-chain that will display on OpenSea and other sites.
     * Takes the format of "GOOP [tokenId] is a [....]"
     * May be modified at any time
     * Send empty string to revert to default.
     * @dev Only callable by the holder of the token.
     */
    function setCustomDescription (uint256 tokenId, string calldata _description) external returns (string memory){
        require (msg.sender==ownerOf(tokenId),"not your GOOP");
        customDescription[tokenId]=_description;
        string memory GOOPId = tokenId.toString();
        string memory returnMessage=string(abi.encodePacked("Description set to: " , viewDescription(tokenId)));
        return returnMessage;
    }

    function viewDescription (uint256 tokenId) public view returns (string memory){
        string memory description="";
        string memory GOOPId = tokenId.toString();

        if (bytes(customDescription[tokenId]).length!=0)
        {
            description = string(abi.encodePacked(description,'GOOP ', GOOPId, ' is a ', customDescription[tokenId]));
        }
        else
        {
            description = string(abi.encodePacked(description,'GOOP ', GOOPId, ' is a member of the Goofy Oversized Optics People, otherwise known as the GOOP Troop'));
        }
        return description;
    }
    
    constructor() ERC721('Goofy Oversized Optics People', 'GOOP') {
        descriptor = IGOOPsDescriptor(0x0Cfdb3Ba1694c2bb2CFACB0339ad7b1Ae5932B63);
        seeder = IGOOPsSeeder(0xCC8a0FB5ab3C7132c1b2A0109142Fb112c4Ce515);
        proxyRegistry = IProxyRegistry(0xa5409ec958C83C3f309868babACA7c86DCB077c1);
        _contractURIHash="";
        
        t1 = 0x5A1ED1bEB3A8f5979c7f9920834Ee5e54415ffa0;
        t2 = 0xb753f3DD55dAC6ebCD5d204828642A1482D99B2c;

    }

    /**
     * @notice The IPFS URI of contract-level metadata.
     */
    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked('ipfs://', _contractURIHash));
    }

    /**
     * @notice Set the _contractURIHash.
     * @dev Only callable by the owner.
     */
    function setContractURIHash(string memory newContractURIHash) external onlyOwner {
        _contractURIHash = newContractURIHash;
    }

    function toggleSale() external onlyOwner {
        sale_active=!sale_active;
    }

    /**
     * @notice Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator) public view override(IERC721, ERC721) returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        if (proxyRegistry.proxies(owner) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }

    /**
     * @notice Mint GOOPs to sender
     */
    function mint(uint256 num_tokens) public override payable {

        require (sale_active,"sale not active");

        require (num_tokens<=mint_limit,"minted too many");

        require(num_tokens+totalSupply()<=max_tokens,"exceeds maximum tokens");

        require(msg.value>=num_tokens*price,"not enough ethers sent");

        for (uint256 x=0;x<num_tokens;x++)
        {
            _mintTo(msg.sender, _currentGOOPId++);
        }
    }


    /**
     * @notice Burn a GOOP.
     */
    function burn(uint256 GOOPId) public override onlyOwner {
        _burn(GOOPId);
        emit GOOPBurned(GOOPId);
    }

    /**
     * @notice A distinct Uniform Resource Identifier (URI) for a given asset.
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), 'GOOPsToken: URI query for nonexistent token');
        string memory GOOPId = tokenId.toString();
        string memory name = string(abi.encodePacked('GOOP ', GOOPId)); 
        string memory description=viewDescription(tokenId);
        return descriptor.genericDataURI(name, description, seeds[tokenId]);
    }

    /**
     * @notice Set the token URI descriptor.
     * @dev Only callable by the owner when not locked.
     */
    function setDescriptor(IGOOPsDescriptor _descriptor) external override onlyOwner whenDescriptorNotLocked {
        descriptor = _descriptor;

        emit DescriptorUpdated(_descriptor);
    }

    /**
     * @notice Lock the descriptor.
     * @dev This cannot be reversed and is only callable by the owner when not locked.
     */
    function lockDescriptor() external override onlyOwner whenDescriptorNotLocked {
        isDescriptorLocked = true;

        emit DescriptorLocked();
    }

    /**
     * @notice Set the token seeder.
     * @dev Only callable by the owner when not locked.
     */
    function setSeeder(IGOOPsSeeder _seeder) external override onlyOwner whenSeederNotLocked {
        seeder = _seeder;

        emit SeederUpdated(_seeder);
    }

    /**
     * @notice Lock the seeder.
     * @dev This cannot be reversed and is only callable by the owner when not locked.
     */
    function lockSeeder() external override onlyOwner whenSeederNotLocked {
        isSeederLocked = true;

        emit SeederLocked();
    }

    /**
     * @notice Mint a GOOP with `GOOPId` to the provided `to` address.
     */
    function _mintTo(address to, uint256 GOOPId) internal returns (uint256) {
        IGOOPsSeeder.Seed memory seed = seeds[GOOPId] = seeder.generateSeed(GOOPId, descriptor);

        _mint(to, GOOPId);
        emit GOOPCreated(GOOPId, seed);

        return GOOPId;
    }

    /**
     * @notice Contract balance is sent to the team.
     */
    function withdrawAll() public {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
    
}

File 2 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 17 : IGOOPsDescriptor.sol
// SPDX-License-Identifier: GPL-3.0



pragma solidity ^0.8.6;

import { IGOOPsSeeder } from './IGOOPsSeeder.sol';

interface IGOOPsDescriptor {
    event PartsLocked();

    event DataURIToggled(bool enabled);

    event BaseURIUpdated(string baseURI);

    function arePartsLocked() external returns (bool);

    function isDataURIEnabled() external returns (bool);

    function baseURI() external returns (string memory);

    function palettes(uint8 paletteIndex, uint256 colorIndex) external view returns (string memory);

    function backgrounds(uint256 index) external view returns (string memory);

    function bodies(uint256 index) external view returns (bytes memory);

    function accessories(uint256 index) external view returns (bytes memory);

    function heads(uint256 index) external view returns (bytes memory);

    function glasses(uint256 index) external view returns (bytes memory);

    function backgroundCount() external view returns (uint256);

    function bodyCount() external view returns (uint256);

    function accessoryCount() external view returns (uint256);

    function headCount() external view returns (uint256);

    function glassesCount() external view returns (uint256);

    function addManyColorsToPalette(uint8 paletteIndex, string[] calldata newColors) external;

    function addManyBackgrounds(string[] calldata backgrounds) external;

    function addManyBodies(bytes[] calldata bodies) external;

    function addManyAccessories(bytes[] calldata accessories) external;

    function addManyHeads(bytes[] calldata heads) external;

    function addManyGlasses(bytes[] calldata glasses) external;

    function addColorToPalette(uint8 paletteIndex, string calldata color) external;

    function addBackground(string calldata background) external;

    function addBody(bytes calldata body) external;

    function addAccessory(bytes calldata accessory) external;

    function addHead(bytes calldata head) external;

    function addGlasses(bytes calldata glasses) external;

    function lockParts() external;

    function toggleDataURIEnabled() external;

    function setBaseURI(string calldata baseURI) external;

    function tokenURI(uint256 tokenId, IGOOPsSeeder.Seed memory seed) external view returns (string memory);

    function dataURI(uint256 tokenId, IGOOPsSeeder.Seed memory seed) external view returns (string memory);

    function genericDataURI(
        string calldata name,
        string calldata description,
        IGOOPsSeeder.Seed memory seed
    ) external view returns (string memory);

    function generateSVGImage(IGOOPsSeeder.Seed memory seed) external view returns (string memory);
}

File 4 of 17 : IGOOPsSeeder.sol
// SPDX-License-Identifier: GPL-3.0



pragma solidity ^0.8.6;

import { IGOOPsDescriptor } from './IGOOPsDescriptor.sol';

interface IGOOPsSeeder {
    struct Seed {
        uint48 background;
        uint48 body;
        uint48 accessory;
        uint48 head;
        uint48 glasses;
    }

    function generateSeed(uint256 GOOPId, IGOOPsDescriptor descriptor) external view returns (Seed memory);
}

File 5 of 17 : IGOOPsToken.sol
// SPDX-License-Identifier: GPL-3.0



pragma solidity ^0.8.6;

import { IERC721 } from './IERC721.sol';
import { IGOOPsDescriptor } from './IGOOPsDescriptor.sol';
import { IGOOPsSeeder } from './IGOOPsSeeder.sol';

interface IGOOPsToken is IERC721 {
    event GOOPCreated(uint256 indexed tokenId, IGOOPsSeeder.Seed seed);

    event GOOPBurned(uint256 indexed tokenId);

    event DescriptorUpdated(IGOOPsDescriptor descriptor);

    event DescriptorLocked();

    event SeederUpdated(IGOOPsSeeder seeder);

    event SeederLocked();

    function mint(uint256 num_tokens) external payable;

    function burn(uint256 tokenId) external;

    function setDescriptor(IGOOPsDescriptor descriptor) external;

    function lockDescriptor() external;

    function setSeeder(IGOOPsSeeder seeder) external;

    function lockSeeder() external;



}

File 6 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT



// LICENSE
// ERC721.sol modifies OpenZeppelin's ERC721.sol:
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/6618f9f18424ade44116d0221719f4c93be6a078/contracts/token/ERC721/ERC721.sol
//
// ERC721.sol source code copyright OpenZeppelin licensed under the MIT License.
//


pragma solidity ^0.8.6;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), 'ERC721: balance query for the zero address');
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), 'ERC721: owner query for nonexistent token');
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, 'ERC721: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), 'ERC721: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), 'ERC721: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer');
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), 'ERC721: operator query for nonexistent token');
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId`, 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`, transfers it to `to`, and emits a log event
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 tokenId
    ) internal virtual {
        require(to != address(0), 'ERC721: mint to the zero address');
        require(!_exists(tokenId), 'ERC721: token already minted');

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, 'ERC721: transfer of token that is not own');
        require(to != address(0), 'ERC721: transfer to the zero address');

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 8 of 17 : IProxyRegistry.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

interface IProxyRegistry {
    function proxies(address) external view returns (address);
}

File 9 of 17 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 10 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT


// LICENSE
// ERC721.sol modifies OpenZeppelin's ERC721Enumerable.sol:
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/6618f9f18424ade44116d0221719f4c93be6a078/contracts/token/ERC721/extensions/ERC721Enumerable.sol
//
// ERC721Enumerable.sol source code copyright OpenZeppelin licensed under the MIT License.
// With modifications by REDACTED
//
// MODIFICATIONS:
// Consumes modified `ERC721` contract. See notes in `ERC721.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();
    }
}

File 11 of 17 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 12 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 13 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 14 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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);
}

File 15 of 17 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 16 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT

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;
    }
}

File 17 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"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":[],"name":"DescriptorLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IGOOPsDescriptor","name":"descriptor","type":"address"}],"name":"DescriptorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"GOOPBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint48","name":"background","type":"uint48"},{"internalType":"uint48","name":"body","type":"uint48"},{"internalType":"uint48","name":"accessory","type":"uint48"},{"internalType":"uint48","name":"head","type":"uint48"},{"internalType":"uint48","name":"glasses","type":"uint48"}],"indexed":false,"internalType":"struct IGOOPsSeeder.Seed","name":"seed","type":"tuple"}],"name":"GOOPCreated","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":[],"name":"SeederLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IGOOPsSeeder","name":"seeder","type":"address"}],"name":"SeederUpdated","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":[{"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":"GOOPId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"customDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"contract IGOOPsDescriptor","name":"","type":"address"}],"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":[],"name":"isDescriptorLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSeederLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockSeeder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"max_tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num_tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistry","outputs":[{"internalType":"contract IProxyRegistry","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seeder","outputs":[{"internalType":"contract IGOOPsSeeder","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seeds","outputs":[{"internalType":"uint48","name":"background","type":"uint48"},{"internalType":"uint48","name":"body","type":"uint48"},{"internalType":"uint48","name":"accessory","type":"uint48"},{"internalType":"uint48","name":"head","type":"uint48"},{"internalType":"uint48","name":"glasses","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURIHash","type":"string"}],"name":"setContractURIHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_description","type":"string"}],"name":"setCustomDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IGOOPsDescriptor","name":"_descriptor","type":"address"}],"name":"setDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IGOOPsSeeder","name":"_seeder","type":"address"}],"name":"setSeeder","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"viewDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405266833e8da34ae000600b55612710600c556014600d556000601560146101000a81548160ff0219169083151502179055503480156200004257600080fd5b506040518060400160405280601d81526020017f476f6f6679204f76657273697a6564204f70746963732050656f706c650000008152506040518060400160405280600481526020017f474f4f5000000000000000000000000000000000000000000000000000000000815250620000cf620000c3620002d060201b60201c565b620002d860201b60201c565b8160019080519060200190620000e79291906200039c565b508060029080519060200190620001009291906200039c565b505050730cfdb3ba1694c2bb2cfacb0339ad7b1ae5932b63600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cc8a0fb5ab3c7132c1b2a0109142fb112c4ce515601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505060405180602001604052806000815250601390805190602001906200021f9291906200039c565b50735a1ed1beb3a8f5979c7f9920834ee5e54415ffa0601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b753f3dd55dac6ebcd5d204828642a1482d99b2c601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004b1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003aa906200044c565b90600052602060002090601f016020900481019282620003ce57600085556200041a565b82601f10620003e957805160ff19168380011785556200041a565b828001600101855582156200041a579182015b8281111562000419578251825591602001919060010190620003fc565b5b5090506200042991906200042d565b5090565b5b80821115620004485760008160009055506001016200042e565b5090565b600060028204905060018216806200046557607f821691505b602082108114156200047c576200047b62000482565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c6159d5620004d760003960008181611b330152611f6801526159d56000f3fe6080604052600436106102515760003560e01c80637d8966e411610139578063baedc1c4116100b6578063e0df72161161007a578063e0df72161461087f578063e8a3d485146108aa578063e985e9c5146108d5578063f0503e8014610912578063f2fde38b14610953578063ff9361641461097c57610251565b8063baedc1c41461079a578063c1b8e4e1146107c3578063c87b56dd146107ee578063c8fc0c231461082b578063d50b31eb1461085657610251565b8063a035b1fe116100fd578063a035b1fe146106d6578063a0712d6814610701578063a22cb4651461071d578063b50cbd9f14610746578063b88d4fde1461077157610251565b80637d8966e4146106155780638123d8cc1461062c578063853828b6146106695780638da5cb5b1461068057806395d89b41146106ab57610251565b8063303e74df116101d257806354572e091161019657806354572e09146105175780635f295a67146105425780636352211e14610559578063684931ed1461059657806370a08231146105c1578063715018a6146105fe57610251565b8063303e74df1461044657806341b5d0de1461047157806342842e0e1461048857806342966c68146104b15780634f6ccce7146104da57610251565b8063095ea7b311610219578063095ea7b314610361578063114e31011461038a57806318160ddd146103b557806323b872dd146103e05780632f745c591461040957610251565b806301b9a3971461025657806301ffc9a71461027f578063049ee68c146102bc57806306fdde03146102f9578063081812fc14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613d4a565b6109b9565b005b34801561028b57600080fd5b506102a660048036038101906102a19190613cf0565b610b00565b6040516102b391906146df565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190613e90565b610b7a565b6040516102f0919061474b565b60405180910390f35b34801561030557600080fd5b5061030e610c5a565b60405161031b919061474b565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613e63565b610cec565b6040516103589190614678565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190613cb0565b610d71565b005b34801561039657600080fd5b5061039f610e89565b6040516103ac9190614aed565b60405180910390f35b3480156103c157600080fd5b506103ca610e8f565b6040516103d79190614aed565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190613b9a565b610e9c565b005b34801561041557600080fd5b50610430600480360381019061042b9190613cb0565b610efc565b60405161043d9190614aed565b60405180910390f35b34801561045257600080fd5b5061045b610fa1565b60405161046891906146fa565b60405180910390f35b34801561047d57600080fd5b50610486610fc7565b005b34801561049457600080fd5b506104af60048036038101906104aa9190613b9a565b6110dc565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190613e63565b6110fc565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613e63565b6111b1565b60405161050e9190614aed565b60405180910390f35b34801561052357600080fd5b5061052c611222565b6040516105399190614aed565b60405180910390f35b34801561054e57600080fd5b50610557611228565b005b34801561056557600080fd5b50610580600480360381019061057b9190613e63565b61133d565b60405161058d9190614678565b60405180910390f35b3480156105a257600080fd5b506105ab6113ef565b6040516105b89190614715565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613b00565b611415565b6040516105f59190614aed565b60405180910390f35b34801561060a57600080fd5b506106136114cd565b005b34801561062157600080fd5b5061062a611555565b005b34801561063857600080fd5b50610653600480360381019061064e9190613e63565b6115fd565b604051610660919061474b565b60405180910390f35b34801561067557600080fd5b5061067e61169d565b005b34801561068c57600080fd5b50610695611771565b6040516106a29190614678565b60405180910390f35b3480156106b757600080fd5b506106c061179a565b6040516106cd919061474b565b60405180910390f35b3480156106e257600080fd5b506106eb61182c565b6040516106f89190614aed565b60405180910390f35b61071b60048036038101906107169190613e63565b611832565b005b34801561072957600080fd5b50610744600480360381019061073f9190613c70565b6119b0565b005b34801561075257600080fd5b5061075b611b31565b6040516107689190614730565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613bed565b611b55565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190613da4565b611bb7565b005b3480156107cf57600080fd5b506107d8611c4d565b6040516107e591906146df565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613e63565b611c60565b604051610822919061474b565b60405180910390f35b34801561083757600080fd5b50610840611db8565b60405161084d91906146df565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613d77565b611dcb565b005b34801561088b57600080fd5b50610894611f12565b6040516108a191906146df565b60405180910390f35b3480156108b657600080fd5b506108bf611f25565b6040516108cc919061474b565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613b5a565b611f4d565b60405161090991906146df565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190613e63565b612047565b60405161094a959493929190614b31565b60405180910390f35b34801561095f57600080fd5b5061097a60048036038101906109759190613b00565b6120d7565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613e63565b6121cf565b6040516109b0919061474b565b60405180910390f35b6109c1612285565b73ffffffffffffffffffffffffffffffffffffffff166109df611771565b73ffffffffffffffffffffffffffffffffffffffff1614610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c906149b2565b60405180910390fd5b601060149054906101000a900460ff1615610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c906147b2565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f6e66ab22238a5471005895947c8f57db923c2a9c9c73180eff80864c21295c1b81604051610af591906146fa565b60405180910390a150565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b735750610b728261228d565b5b9050919050565b6060610b858461133d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990614852565b60405180910390fd5b8282600e60008781526020019081526020016000209190610c149291906136e8565b506000610c208561236f565b90506000610c2d866121cf565b604051602001610c3d9190614656565b604051602081830303815290604052905080925050509392505050565b606060018054610c6990614ee2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9590614ee2565b8015610ce25780601f10610cb757610100808354040283529160200191610ce2565b820191906000526020600020905b815481529060010190602001808311610cc557829003601f168201915b5050505050905090565b6000610cf7826124d0565b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90614992565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d7c8261133d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490614a32565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0c612285565b73ffffffffffffffffffffffffffffffffffffffff161480610e3b5750610e3a81610e35612285565b611f4d565b5b610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906148f2565b60405180910390fd5b610e84838361253c565b505050565b600d5481565b6000600980549050905090565b610ead610ea7612285565b826125f5565b610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390614a52565b60405180910390fd5b610ef78383836126d3565b505050565b6000610f0783611415565b8210610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f906147d2565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fcf612285565b73ffffffffffffffffffffffffffffffffffffffff16610fed611771565b73ffffffffffffffffffffffffffffffffffffffff1614611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a906149b2565b60405180910390fd5b601060149054906101000a900460ff1615611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a906147b2565b60405180910390fd5b6001601060146101000a81548160ff0219169083151502179055507f593e31e306c198bef259d839f7c6dc4ff7fc10c07f76fab193a210b03704105f60405160405180910390a1565b6110f783838360405180602001604052806000815250611b55565b505050565b611104612285565b73ffffffffffffffffffffffffffffffffffffffff16611122611771565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f906149b2565b60405180910390fd5b6111818161292f565b807fe0cbe560704720f41e05abf388169198562806fa1774bdd1fa0b0c17bbd4b59a60405160405180910390a250565b60006111bb610e8f565b82106111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390614a92565b60405180910390fd5b600982815481106112105761120f6150fd565b5b90600052602060002001549050919050565b600c5481565b611230612285565b73ffffffffffffffffffffffffffffffffffffffff1661124e611771565b73ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b906149b2565b60405180910390fd5b601060159054906101000a900460ff16156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90614972565b60405180910390fd5b6001601060156101000a81548160ff0219169083151502179055507ff59561f22794afcfb1e6be5c4733f5449fd167252a96b74bb06d341fb0dac7ed60405160405180910390a1565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90614932565b60405180910390fd5b80915050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90614912565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114d5612285565b73ffffffffffffffffffffffffffffffffffffffff166114f3611771565b73ffffffffffffffffffffffffffffffffffffffff1614611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906149b2565b60405180910390fd5b6115536000612a40565b565b61155d612285565b73ffffffffffffffffffffffffffffffffffffffff1661157b611771565b73ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c8906149b2565b60405180910390fd5b601560149054906101000a900460ff1615601560146101000a81548160ff021916908315150217905550565b600e602052806000526040600020600091509050805461161c90614ee2565b80601f016020809104026020016040519081016040528092919081815260200182805461164890614ee2565b80156116955780601f1061166a57610100808354040283529160200191611695565b820191906000526020600020905b81548152906001019060200180831161167857829003601f168201915b505050505081565b60006002476116ac9190614cb9565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061170e57600080fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061176e57600080fd5b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117a990614ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546117d590614ee2565b80156118225780601f106117f757610100808354040283529160200191611822565b820191906000526020600020905b81548152906001019060200180831161180557829003601f168201915b5050505050905090565b600b5481565b601560149054906101000a900460ff16611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890614872565b60405180910390fd5b600d548111156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90614a72565b60405180910390fd5b600c546118d1610e8f565b826118dc9190614c63565b111561191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490614a12565b60405180910390fd5b600b548161192b9190614cea565b34101561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490614ab2565b60405180910390fd5b60005b818110156119ac57611998336012600081548092919061198f90614fc7565b91905055612b04565b5080806119a490614fc7565b915050611970565b5050565b6119b8612285565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906148b2565b60405180910390fd5b8060066000611a33612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ae0612285565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b2591906146df565b60405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611b66611b60612285565b836125f5565b611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c90614a52565b60405180910390fd5b611bb184848484612df7565b50505050565b611bbf612285565b73ffffffffffffffffffffffffffffffffffffffff16611bdd611771565b73ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a906149b2565b60405180910390fd5b8060139080519060200190611c4992919061376e565b5050565b601060149054906101000a900460ff1681565b6060611c6b826124d0565b611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca1906149f2565b60405180910390fd5b6000611cb58361236f565b9050600081604051602001611cca9190614612565b60405160208183030381529060405290506000611ce6856121cf565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166387db11bd8383601160008a81526020019081526020016000206040518463ffffffff1660e01b8152600401611d599392919061476d565b60006040518083038186803b158015611d7157600080fd5b505afa158015611d85573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611dae9190613ded565b9350505050919050565b601060159054906101000a900460ff1681565b611dd3612285565b73ffffffffffffffffffffffffffffffffffffffff16611df1611771565b73ffffffffffffffffffffffffffffffffffffffff1614611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e906149b2565b60405180910390fd5b601060159054906101000a900460ff1615611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90614972565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb3025222d01ce9a26c7f9d52bc3bfd0352366bd90a793c273fbfe1c81e0e288e81604051611f079190614715565b60405180910390a150565b601560149054906101000a900460ff1681565b60606013604051602001611f399190614634565b604051602081830303815290604052905090565b60008173ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b8152600401611fbf9190614678565b60206040518083038186803b158015611fd757600080fd5b505afa158015611feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200f9190613b2d565b73ffffffffffffffffffffffffffffffffffffffff1614156120345760019050612041565b61203e8383612e53565b90505b92915050565b60116020528060005260406000206000915090508060000160009054906101000a900465ffffffffffff16908060000160069054906101000a900465ffffffffffff169080600001600c9054906101000a900465ffffffffffff16908060000160129054906101000a900465ffffffffffff16908060000160189054906101000a900465ffffffffffff16905085565b6120df612285565b73ffffffffffffffffffffffffffffffffffffffff166120fd611771565b73ffffffffffffffffffffffffffffffffffffffff1614612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906149b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90614812565b60405180910390fd5b6121cc81612a40565b50565b6060600060405180602001604052806000815250905060006121f08461236f565b90506000600e6000868152602001908152602001600020805461221290614ee2565b905014612256578181600e600087815260200190815260200160002060405160200161224093929190614591565b604051602081830303815290604052915061227b565b81816040516020016122699291906145d8565b60405160208183030381529060405291505b8192505050919050565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061235857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612368575061236782612ee7565b5b9050919050565b606060008214156123b7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124cb565b600082905060005b600082146123e95780806123d290614fc7565b915050600a826123e29190614cb9565b91506123bf565b60008167ffffffffffffffff8111156124055761240461512c565b5b6040519080825280601f01601f1916602001820160405280156124375781602001600182028036833780820191505090505b5090505b600085146124c4576001826124509190614d44565b9150600a8561245f9190615010565b603061246b9190614c63565b60f81b818381518110612481576124806150fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124bd9190614cb9565b945061243b565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125af8361133d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612600826124d0565b61263f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612636906148d2565b60405180910390fd5b600061264a8361133d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126b957508373ffffffffffffffffffffffffffffffffffffffff166126a184610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b806126ca57506126c98185611f4d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126f38261133d565b73ffffffffffffffffffffffffffffffffffffffff1614612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906149d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090614892565b60405180910390fd5b6127c4838383612f51565b6127cf60008261253c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281f9190614d44565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128769190614c63565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061293a8261133d565b905061294881600084612f51565b61295360008361253c565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a39190614d44565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663422e2e9984600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401612b86929190614b08565b60a06040518083038186803b158015612b9e57600080fd5b505afa158015612bb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bd69190613e36565b6011600085815260200190815260200160002060008201518160000160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060208201518160000160066101000a81548165ffffffffffff021916908365ffffffffffff160217905550604082015181600001600c6101000a81548165ffffffffffff021916908365ffffffffffff16021790555060608201518160000160126101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160000160186101000a81548165ffffffffffff021916908365ffffffffffff16021790555090506040518060a00160405290816000820160009054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160069054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff16815260200160008201600c9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160129054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160189054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff16815250509050612db58484613065565b827f73df0e3d3be7a83432dc82a8ba80739ad042b442d074538c21c810e93f62f17682604051612de59190614ad2565b60405180910390a28291505092915050565b612e028484846126d3565b612e0e84848484613233565b612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e44906147f2565b60405180910390fd5b50505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f5c8383836133ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f9f57612f9a816133cf565b612fde565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fdd57612fdc8382613418565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130215761301c81613585565b613060565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461305f5761305e8282613656565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614952565b60405180910390fd5b6130de816124d0565b1561311e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311590614832565b60405180910390fd5b61312a60008383612f51565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461317a9190614c63565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006132548473ffffffffffffffffffffffffffffffffffffffff166136d5565b156133bd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261327d612285565b8786866040518563ffffffff1660e01b815260040161329f9493929190614693565b602060405180830381600087803b1580156132b957600080fd5b505af19250505080156132ea57506040513d601f19601f820116820180604052508101906132e79190613d1d565b60015b61336d573d806000811461331a576040519150601f19603f3d011682016040523d82523d6000602084013e61331f565b606091505b50600081511415613365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335c906147f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133c2565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161342584611415565b61342f9190614d44565b9050600060086000848152602001908152602001600020549050818114613514576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506135999190614d44565b90506000600a60008481526020019081526020016000205490506000600983815481106135c9576135c86150fd565b5b9060005260206000200154905080600983815481106135eb576135ea6150fd565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061363a576136396150ce565b5b6001900381819060005260206000200160009055905550505050565b600061366183611415565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546136f490614ee2565b90600052602060002090601f016020900481019282613716576000855561375d565b82601f1061372f57803560ff191683800117855561375d565b8280016001018555821561375d579182015b8281111561375c578235825591602001919060010190613741565b5b50905061376a91906137f4565b5090565b82805461377a90614ee2565b90600052602060002090601f01602090048101928261379c57600085556137e3565b82601f106137b557805160ff19168380011785556137e3565b828001600101855582156137e3579182015b828111156137e25782518255916020019190600101906137c7565b5b5090506137f091906137f4565b5090565b5b8082111561380d5760008160009055506001016137f5565b5090565b600061382461381f84614ba9565b614b84565b9050828152602081018484840111156138405761383f61516f565b5b61384b848285614ea0565b509392505050565b600061386661386184614bda565b614b84565b9050828152602081018484840111156138825761388161516f565b5b61388d848285614ea0565b509392505050565b60006138a86138a384614bda565b614b84565b9050828152602081018484840111156138c4576138c361516f565b5b6138cf848285614eaf565b509392505050565b6000813590506138e6816158fe565b92915050565b6000815190506138fb816158fe565b92915050565b60008135905061391081615915565b92915050565b6000813590506139258161592c565b92915050565b60008151905061393a8161592c565b92915050565b600082601f83011261395557613954615160565b5b8135613965848260208601613811565b91505092915050565b60008135905061397d81615943565b92915050565b6000813590506139928161595a565b92915050565b60008083601f8401126139ae576139ad615160565b5b8235905067ffffffffffffffff8111156139cb576139ca61515b565b5b6020830191508360018202830111156139e7576139e661516a565b5b9250929050565b600082601f830112613a0357613a02615160565b5b8135613a13848260208601613853565b91505092915050565b600082601f830112613a3157613a30615160565b5b8151613a41848260208601613895565b91505092915050565b600060a08284031215613a6057613a5f615165565b5b613a6a60a0614b84565b90506000613a7a84828501613aeb565b6000830152506020613a8e84828501613aeb565b6020830152506040613aa284828501613aeb565b6040830152506060613ab684828501613aeb565b6060830152506080613aca84828501613aeb565b60808301525092915050565b600081359050613ae581615971565b92915050565b600081519050613afa81615988565b92915050565b600060208284031215613b1657613b15615179565b5b6000613b24848285016138d7565b91505092915050565b600060208284031215613b4357613b42615179565b5b6000613b51848285016138ec565b91505092915050565b60008060408385031215613b7157613b70615179565b5b6000613b7f858286016138d7565b9250506020613b90858286016138d7565b9150509250929050565b600080600060608486031215613bb357613bb2615179565b5b6000613bc1868287016138d7565b9350506020613bd2868287016138d7565b9250506040613be386828701613ad6565b9150509250925092565b60008060008060808587031215613c0757613c06615179565b5b6000613c15878288016138d7565b9450506020613c26878288016138d7565b9350506040613c3787828801613ad6565b925050606085013567ffffffffffffffff811115613c5857613c57615174565b5b613c6487828801613940565b91505092959194509250565b60008060408385031215613c8757613c86615179565b5b6000613c95858286016138d7565b9250506020613ca685828601613901565b9150509250929050565b60008060408385031215613cc757613cc6615179565b5b6000613cd5858286016138d7565b9250506020613ce685828601613ad6565b9150509250929050565b600060208284031215613d0657613d05615179565b5b6000613d1484828501613916565b91505092915050565b600060208284031215613d3357613d32615179565b5b6000613d418482850161392b565b91505092915050565b600060208284031215613d6057613d5f615179565b5b6000613d6e8482850161396e565b91505092915050565b600060208284031215613d8d57613d8c615179565b5b6000613d9b84828501613983565b91505092915050565b600060208284031215613dba57613db9615179565b5b600082013567ffffffffffffffff811115613dd857613dd7615174565b5b613de4848285016139ee565b91505092915050565b600060208284031215613e0357613e02615179565b5b600082015167ffffffffffffffff811115613e2157613e20615174565b5b613e2d84828501613a1c565b91505092915050565b600060a08284031215613e4c57613e4b615179565b5b6000613e5a84828501613a4a565b91505092915050565b600060208284031215613e7957613e78615179565b5b6000613e8784828501613ad6565b91505092915050565b600080600060408486031215613ea957613ea8615179565b5b6000613eb786828701613ad6565b935050602084013567ffffffffffffffff811115613ed857613ed7615174565b5b613ee486828701613998565b92509250509250925092565b613ef981614d8a565b82525050565b613f0881614d9c565b82525050565b6000613f1982614c20565b613f238185614c36565b9350613f33818560208601614eaf565b613f3c8161517e565b840191505092915050565b613f5081614e34565b82525050565b613f5f81614e58565b82525050565b613f6e81614e7c565b82525050565b6000613f7f82614c2b565b613f898185614c47565b9350613f99818560208601614eaf565b613fa28161517e565b840191505092915050565b6000613fb882614c2b565b613fc28185614c58565b9350613fd2818560208601614eaf565b80840191505092915050565b60008154613feb81614ee2565b613ff58186614c58565b94506001821660008114614010576001811461402157614054565b60ff19831686528186019350614054565b61402a85614c0b565b60005b8381101561404c5781548189015260018201915060208101905061402d565b838801955050505b50505092915050565b600061406a601483614c47565b9150614075826151d0565b602082019050919050565b600061408d602b83614c47565b9150614098826151f9565b604082019050919050565b60006140b0603283614c47565b91506140bb82615248565b604082019050919050565b60006140d3602683614c47565b91506140de82615297565b604082019050919050565b60006140f6601c83614c47565b9150614101826152e6565b602082019050919050565b6000614119600d83614c47565b91506141248261530f565b602082019050919050565b600061413c600f83614c47565b915061414782615338565b602082019050919050565b600061415f602483614c47565b915061416a82615361565b604082019050919050565b6000614182601983614c47565b915061418d826153b0565b602082019050919050565b60006141a5600683614c58565b91506141b0826153d9565b600682019050919050565b60006141c8600583614c58565b91506141d382615402565b600582019050919050565b60006141eb602c83614c47565b91506141f68261542b565b604082019050919050565b600061420e600783614c58565b91506142198261547a565b600782019050919050565b6000614231603883614c47565b915061423c826154a3565b604082019050919050565b6000614254602a83614c47565b915061425f826154f2565b604082019050919050565b6000614277602983614c47565b915061428282615541565b604082019050919050565b600061429a602083614c47565b91506142a582615590565b602082019050919050565b60006142bd601083614c47565b91506142c8826155b9565b602082019050919050565b60006142e0602c83614c47565b91506142eb826155e2565b604082019050919050565b6000614303605483614c58565b915061430e82615631565b605482019050919050565b6000614326602083614c47565b9150614331826156a6565b602082019050919050565b6000614349602983614c47565b9150614354826156cf565b604082019050919050565b600061436c602b83614c47565b91506143778261571e565b604082019050919050565b600061438f601683614c47565b915061439a8261576d565b602082019050919050565b60006143b2602183614c47565b91506143bd82615796565b604082019050919050565b60006143d5603183614c47565b91506143e0826157e5565b604082019050919050565b60006143f8600f83614c47565b915061440382615834565b602082019050919050565b600061441b602c83614c47565b91506144268261585d565b604082019050919050565b600061443e601483614c58565b9150614449826158ac565b601482019050919050565b6000614461601683614c47565b915061446c826158d5565b602082019050919050565b60a08201600082015161448d6000850182614573565b5060208201516144a06020850182614573565b5060408201516144b36040850182614573565b5060608201516144c66060850182614573565b5060808201516144d96080850182614573565b50505050565b60a0820160008083015490506144f481614f14565b6145016000860182614573565b5061450b81614f7c565b6145186020860182614573565b5061452281614f2e565b61452f6040860182614573565b5061453981614f48565b6145466060860182614573565b5061455081614f62565b61455d6080860182614573565b5050505050565b61456d81614e18565b82525050565b61457c81614e22565b82525050565b61458b81614e22565b82525050565b600061459d8286613fad565b91506145a8826141bb565b91506145b48285613fad565b91506145bf82614198565b91506145cb8284613fde565b9150819050949350505050565b60006145e48285613fad565b91506145ef826141bb565b91506145fb8284613fad565b9150614606826142f6565b91508190509392505050565b600061461d826141bb565b91506146298284613fad565b915081905092915050565b600061463f82614201565b915061464b8284613fde565b915081905092915050565b600061466182614431565b915061466d8284613fad565b915081905092915050565b600060208201905061468d6000830184613ef0565b92915050565b60006080820190506146a86000830187613ef0565b6146b56020830186613ef0565b6146c26040830185614564565b81810360608301526146d48184613f0e565b905095945050505050565b60006020820190506146f46000830184613eff565b92915050565b600060208201905061470f6000830184613f47565b92915050565b600060208201905061472a6000830184613f56565b92915050565b60006020820190506147456000830184613f65565b92915050565b600060208201905081810360008301526147658184613f74565b905092915050565b600060e08201905081810360008301526147878186613f74565b9050818103602083015261479b8185613f74565b90506147aa60408301846144df565b949350505050565b600060208201905081810360008301526147cb8161405d565b9050919050565b600060208201905081810360008301526147eb81614080565b9050919050565b6000602082019050818103600083015261480b816140a3565b9050919050565b6000602082019050818103600083015261482b816140c6565b9050919050565b6000602082019050818103600083015261484b816140e9565b9050919050565b6000602082019050818103600083015261486b8161410c565b9050919050565b6000602082019050818103600083015261488b8161412f565b9050919050565b600060208201905081810360008301526148ab81614152565b9050919050565b600060208201905081810360008301526148cb81614175565b9050919050565b600060208201905081810360008301526148eb816141de565b9050919050565b6000602082019050818103600083015261490b81614224565b9050919050565b6000602082019050818103600083015261492b81614247565b9050919050565b6000602082019050818103600083015261494b8161426a565b9050919050565b6000602082019050818103600083015261496b8161428d565b9050919050565b6000602082019050818103600083015261498b816142b0565b9050919050565b600060208201905081810360008301526149ab816142d3565b9050919050565b600060208201905081810360008301526149cb81614319565b9050919050565b600060208201905081810360008301526149eb8161433c565b9050919050565b60006020820190508181036000830152614a0b8161435f565b9050919050565b60006020820190508181036000830152614a2b81614382565b9050919050565b60006020820190508181036000830152614a4b816143a5565b9050919050565b60006020820190508181036000830152614a6b816143c8565b9050919050565b60006020820190508181036000830152614a8b816143eb565b9050919050565b60006020820190508181036000830152614aab8161440e565b9050919050565b60006020820190508181036000830152614acb81614454565b9050919050565b600060a082019050614ae76000830184614477565b92915050565b6000602082019050614b026000830184614564565b92915050565b6000604082019050614b1d6000830185614564565b614b2a6020830184613f47565b9392505050565b600060a082019050614b466000830188614582565b614b536020830187614582565b614b606040830186614582565b614b6d6060830185614582565b614b7a6080830184614582565b9695505050505050565b6000614b8e614b9f565b9050614b9a8282614f96565b919050565b6000604051905090565b600067ffffffffffffffff821115614bc457614bc361512c565b5b614bcd8261517e565b9050602081019050919050565b600067ffffffffffffffff821115614bf557614bf461512c565b5b614bfe8261517e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c6e82614e18565b9150614c7983614e18565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cae57614cad615041565b5b828201905092915050565b6000614cc482614e18565b9150614ccf83614e18565b925082614cdf57614cde615070565b5b828204905092915050565b6000614cf582614e18565b9150614d0083614e18565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d3957614d38615041565b5b828202905092915050565b6000614d4f82614e18565b9150614d5a83614e18565b925082821015614d6d57614d6c615041565b5b828203905092915050565b600065ffffffffffff82169050919050565b6000614d9582614df8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614ddf82614d8a565b9050919050565b6000614df182614d8a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600065ffffffffffff82169050919050565b6000614e3f82614e46565b9050919050565b6000614e5182614df8565b9050919050565b6000614e6382614e6a565b9050919050565b6000614e7582614df8565b9050919050565b6000614e8782614e8e565b9050919050565b6000614e9982614df8565b9050919050565b82818337600083830152505050565b60005b83811015614ecd578082015181840152602081019050614eb2565b83811115614edc576000848401525b50505050565b60006002820490506001821680614efa57607f821691505b60208210811415614f0e57614f0d61509f565b5b50919050565b6000614f27614f228361518f565b614d78565b9050919050565b6000614f41614f3c836151c3565b614d78565b9050919050565b6000614f5b614f568361519c565b614d78565b9050919050565b6000614f75614f70836151a9565b614d78565b9050919050565b6000614f8f614f8a836151b6565b614d78565b9050919050565b614f9f8261517e565b810181811067ffffffffffffffff82111715614fbe57614fbd61512c565b5b80604052505050565b6000614fd282614e18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561500557615004615041565b5b600182019050919050565b600061501b82614e18565b915061502683614e18565b92508261503657615035615070565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160001c9050919050565b60008160901c9050919050565b60008160c01c9050919050565b60008160301c9050919050565b60008160601c9050919050565b7f44657363726970746f72206973206c6f636b6564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f7420796f757220474f4f5000000000000000000000000000000000000000600082015250565b7f73616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f2069732061200000000000000000000000000000000000000000000000000000600082015250565b7f474f4f5020000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f536565646572206973206c6f636b656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2069732061206d656d626572206f662074686520476f6f6679204f766572736960008201527f7a6564204f70746963732050656f706c652c206f7468657277697365206b6e6f60208201527f776e2061732074686520474f4f502054726f6f70000000000000000000000000604082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f474f4f5073546f6b656e3a2055524920717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b7f65786365656473206d6178696d756d20746f6b656e7300000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74656420746f6f206d616e790000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4465736372697074696f6e2073657420746f3a20000000000000000000000000600082015250565b7f6e6f7420656e6f756768206574686572732073656e7400000000000000000000600082015250565b61590781614d8a565b811461591257600080fd5b50565b61591e81614d9c565b811461592957600080fd5b50565b61593581614da8565b811461594057600080fd5b50565b61594c81614dd4565b811461595757600080fd5b50565b61596381614de6565b811461596e57600080fd5b50565b61597a81614e18565b811461598557600080fd5b50565b61599181614e22565b811461599c57600080fd5b5056fea2646970667358221220889f620d1105fb158eef6af859acbf17abb32665fb0e0b5e142c3ffde38d97a164736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637d8966e411610139578063baedc1c4116100b6578063e0df72161161007a578063e0df72161461087f578063e8a3d485146108aa578063e985e9c5146108d5578063f0503e8014610912578063f2fde38b14610953578063ff9361641461097c57610251565b8063baedc1c41461079a578063c1b8e4e1146107c3578063c87b56dd146107ee578063c8fc0c231461082b578063d50b31eb1461085657610251565b8063a035b1fe116100fd578063a035b1fe146106d6578063a0712d6814610701578063a22cb4651461071d578063b50cbd9f14610746578063b88d4fde1461077157610251565b80637d8966e4146106155780638123d8cc1461062c578063853828b6146106695780638da5cb5b1461068057806395d89b41146106ab57610251565b8063303e74df116101d257806354572e091161019657806354572e09146105175780635f295a67146105425780636352211e14610559578063684931ed1461059657806370a08231146105c1578063715018a6146105fe57610251565b8063303e74df1461044657806341b5d0de1461047157806342842e0e1461048857806342966c68146104b15780634f6ccce7146104da57610251565b8063095ea7b311610219578063095ea7b314610361578063114e31011461038a57806318160ddd146103b557806323b872dd146103e05780632f745c591461040957610251565b806301b9a3971461025657806301ffc9a71461027f578063049ee68c146102bc57806306fdde03146102f9578063081812fc14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613d4a565b6109b9565b005b34801561028b57600080fd5b506102a660048036038101906102a19190613cf0565b610b00565b6040516102b391906146df565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190613e90565b610b7a565b6040516102f0919061474b565b60405180910390f35b34801561030557600080fd5b5061030e610c5a565b60405161031b919061474b565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613e63565b610cec565b6040516103589190614678565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190613cb0565b610d71565b005b34801561039657600080fd5b5061039f610e89565b6040516103ac9190614aed565b60405180910390f35b3480156103c157600080fd5b506103ca610e8f565b6040516103d79190614aed565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190613b9a565b610e9c565b005b34801561041557600080fd5b50610430600480360381019061042b9190613cb0565b610efc565b60405161043d9190614aed565b60405180910390f35b34801561045257600080fd5b5061045b610fa1565b60405161046891906146fa565b60405180910390f35b34801561047d57600080fd5b50610486610fc7565b005b34801561049457600080fd5b506104af60048036038101906104aa9190613b9a565b6110dc565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190613e63565b6110fc565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613e63565b6111b1565b60405161050e9190614aed565b60405180910390f35b34801561052357600080fd5b5061052c611222565b6040516105399190614aed565b60405180910390f35b34801561054e57600080fd5b50610557611228565b005b34801561056557600080fd5b50610580600480360381019061057b9190613e63565b61133d565b60405161058d9190614678565b60405180910390f35b3480156105a257600080fd5b506105ab6113ef565b6040516105b89190614715565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613b00565b611415565b6040516105f59190614aed565b60405180910390f35b34801561060a57600080fd5b506106136114cd565b005b34801561062157600080fd5b5061062a611555565b005b34801561063857600080fd5b50610653600480360381019061064e9190613e63565b6115fd565b604051610660919061474b565b60405180910390f35b34801561067557600080fd5b5061067e61169d565b005b34801561068c57600080fd5b50610695611771565b6040516106a29190614678565b60405180910390f35b3480156106b757600080fd5b506106c061179a565b6040516106cd919061474b565b60405180910390f35b3480156106e257600080fd5b506106eb61182c565b6040516106f89190614aed565b60405180910390f35b61071b60048036038101906107169190613e63565b611832565b005b34801561072957600080fd5b50610744600480360381019061073f9190613c70565b6119b0565b005b34801561075257600080fd5b5061075b611b31565b6040516107689190614730565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613bed565b611b55565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190613da4565b611bb7565b005b3480156107cf57600080fd5b506107d8611c4d565b6040516107e591906146df565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613e63565b611c60565b604051610822919061474b565b60405180910390f35b34801561083757600080fd5b50610840611db8565b60405161084d91906146df565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613d77565b611dcb565b005b34801561088b57600080fd5b50610894611f12565b6040516108a191906146df565b60405180910390f35b3480156108b657600080fd5b506108bf611f25565b6040516108cc919061474b565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613b5a565b611f4d565b60405161090991906146df565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190613e63565b612047565b60405161094a959493929190614b31565b60405180910390f35b34801561095f57600080fd5b5061097a60048036038101906109759190613b00565b6120d7565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613e63565b6121cf565b6040516109b0919061474b565b60405180910390f35b6109c1612285565b73ffffffffffffffffffffffffffffffffffffffff166109df611771565b73ffffffffffffffffffffffffffffffffffffffff1614610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c906149b2565b60405180910390fd5b601060149054906101000a900460ff1615610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c906147b2565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f6e66ab22238a5471005895947c8f57db923c2a9c9c73180eff80864c21295c1b81604051610af591906146fa565b60405180910390a150565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b735750610b728261228d565b5b9050919050565b6060610b858461133d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990614852565b60405180910390fd5b8282600e60008781526020019081526020016000209190610c149291906136e8565b506000610c208561236f565b90506000610c2d866121cf565b604051602001610c3d9190614656565b604051602081830303815290604052905080925050509392505050565b606060018054610c6990614ee2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9590614ee2565b8015610ce25780601f10610cb757610100808354040283529160200191610ce2565b820191906000526020600020905b815481529060010190602001808311610cc557829003601f168201915b5050505050905090565b6000610cf7826124d0565b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90614992565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d7c8261133d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490614a32565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0c612285565b73ffffffffffffffffffffffffffffffffffffffff161480610e3b5750610e3a81610e35612285565b611f4d565b5b610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906148f2565b60405180910390fd5b610e84838361253c565b505050565b600d5481565b6000600980549050905090565b610ead610ea7612285565b826125f5565b610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390614a52565b60405180910390fd5b610ef78383836126d3565b505050565b6000610f0783611415565b8210610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f906147d2565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fcf612285565b73ffffffffffffffffffffffffffffffffffffffff16610fed611771565b73ffffffffffffffffffffffffffffffffffffffff1614611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a906149b2565b60405180910390fd5b601060149054906101000a900460ff1615611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a906147b2565b60405180910390fd5b6001601060146101000a81548160ff0219169083151502179055507f593e31e306c198bef259d839f7c6dc4ff7fc10c07f76fab193a210b03704105f60405160405180910390a1565b6110f783838360405180602001604052806000815250611b55565b505050565b611104612285565b73ffffffffffffffffffffffffffffffffffffffff16611122611771565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f906149b2565b60405180910390fd5b6111818161292f565b807fe0cbe560704720f41e05abf388169198562806fa1774bdd1fa0b0c17bbd4b59a60405160405180910390a250565b60006111bb610e8f565b82106111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390614a92565b60405180910390fd5b600982815481106112105761120f6150fd565b5b90600052602060002001549050919050565b600c5481565b611230612285565b73ffffffffffffffffffffffffffffffffffffffff1661124e611771565b73ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b906149b2565b60405180910390fd5b601060159054906101000a900460ff16156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90614972565b60405180910390fd5b6001601060156101000a81548160ff0219169083151502179055507ff59561f22794afcfb1e6be5c4733f5449fd167252a96b74bb06d341fb0dac7ed60405160405180910390a1565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90614932565b60405180910390fd5b80915050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90614912565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114d5612285565b73ffffffffffffffffffffffffffffffffffffffff166114f3611771565b73ffffffffffffffffffffffffffffffffffffffff1614611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906149b2565b60405180910390fd5b6115536000612a40565b565b61155d612285565b73ffffffffffffffffffffffffffffffffffffffff1661157b611771565b73ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c8906149b2565b60405180910390fd5b601560149054906101000a900460ff1615601560146101000a81548160ff021916908315150217905550565b600e602052806000526040600020600091509050805461161c90614ee2565b80601f016020809104026020016040519081016040528092919081815260200182805461164890614ee2565b80156116955780601f1061166a57610100808354040283529160200191611695565b820191906000526020600020905b81548152906001019060200180831161167857829003601f168201915b505050505081565b60006002476116ac9190614cb9565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061170e57600080fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061176e57600080fd5b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117a990614ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546117d590614ee2565b80156118225780601f106117f757610100808354040283529160200191611822565b820191906000526020600020905b81548152906001019060200180831161180557829003601f168201915b5050505050905090565b600b5481565b601560149054906101000a900460ff16611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890614872565b60405180910390fd5b600d548111156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90614a72565b60405180910390fd5b600c546118d1610e8f565b826118dc9190614c63565b111561191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490614a12565b60405180910390fd5b600b548161192b9190614cea565b34101561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490614ab2565b60405180910390fd5b60005b818110156119ac57611998336012600081548092919061198f90614fc7565b91905055612b04565b5080806119a490614fc7565b915050611970565b5050565b6119b8612285565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906148b2565b60405180910390fd5b8060066000611a33612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ae0612285565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b2591906146df565b60405180910390a35050565b7f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c181565b611b66611b60612285565b836125f5565b611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c90614a52565b60405180910390fd5b611bb184848484612df7565b50505050565b611bbf612285565b73ffffffffffffffffffffffffffffffffffffffff16611bdd611771565b73ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a906149b2565b60405180910390fd5b8060139080519060200190611c4992919061376e565b5050565b601060149054906101000a900460ff1681565b6060611c6b826124d0565b611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca1906149f2565b60405180910390fd5b6000611cb58361236f565b9050600081604051602001611cca9190614612565b60405160208183030381529060405290506000611ce6856121cf565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166387db11bd8383601160008a81526020019081526020016000206040518463ffffffff1660e01b8152600401611d599392919061476d565b60006040518083038186803b158015611d7157600080fd5b505afa158015611d85573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611dae9190613ded565b9350505050919050565b601060159054906101000a900460ff1681565b611dd3612285565b73ffffffffffffffffffffffffffffffffffffffff16611df1611771565b73ffffffffffffffffffffffffffffffffffffffff1614611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e906149b2565b60405180910390fd5b601060159054906101000a900460ff1615611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90614972565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb3025222d01ce9a26c7f9d52bc3bfd0352366bd90a793c273fbfe1c81e0e288e81604051611f079190614715565b60405180910390a150565b601560149054906101000a900460ff1681565b60606013604051602001611f399190614634565b604051602081830303815290604052905090565b60008173ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b8152600401611fbf9190614678565b60206040518083038186803b158015611fd757600080fd5b505afa158015611feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200f9190613b2d565b73ffffffffffffffffffffffffffffffffffffffff1614156120345760019050612041565b61203e8383612e53565b90505b92915050565b60116020528060005260406000206000915090508060000160009054906101000a900465ffffffffffff16908060000160069054906101000a900465ffffffffffff169080600001600c9054906101000a900465ffffffffffff16908060000160129054906101000a900465ffffffffffff16908060000160189054906101000a900465ffffffffffff16905085565b6120df612285565b73ffffffffffffffffffffffffffffffffffffffff166120fd611771565b73ffffffffffffffffffffffffffffffffffffffff1614612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906149b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90614812565b60405180910390fd5b6121cc81612a40565b50565b6060600060405180602001604052806000815250905060006121f08461236f565b90506000600e6000868152602001908152602001600020805461221290614ee2565b905014612256578181600e600087815260200190815260200160002060405160200161224093929190614591565b604051602081830303815290604052915061227b565b81816040516020016122699291906145d8565b60405160208183030381529060405291505b8192505050919050565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061235857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612368575061236782612ee7565b5b9050919050565b606060008214156123b7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124cb565b600082905060005b600082146123e95780806123d290614fc7565b915050600a826123e29190614cb9565b91506123bf565b60008167ffffffffffffffff8111156124055761240461512c565b5b6040519080825280601f01601f1916602001820160405280156124375781602001600182028036833780820191505090505b5090505b600085146124c4576001826124509190614d44565b9150600a8561245f9190615010565b603061246b9190614c63565b60f81b818381518110612481576124806150fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124bd9190614cb9565b945061243b565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125af8361133d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612600826124d0565b61263f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612636906148d2565b60405180910390fd5b600061264a8361133d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126b957508373ffffffffffffffffffffffffffffffffffffffff166126a184610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b806126ca57506126c98185611f4d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126f38261133d565b73ffffffffffffffffffffffffffffffffffffffff1614612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906149d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090614892565b60405180910390fd5b6127c4838383612f51565b6127cf60008261253c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281f9190614d44565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128769190614c63565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061293a8261133d565b905061294881600084612f51565b61295360008361253c565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129a39190614d44565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663422e2e9984600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401612b86929190614b08565b60a06040518083038186803b158015612b9e57600080fd5b505afa158015612bb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bd69190613e36565b6011600085815260200190815260200160002060008201518160000160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060208201518160000160066101000a81548165ffffffffffff021916908365ffffffffffff160217905550604082015181600001600c6101000a81548165ffffffffffff021916908365ffffffffffff16021790555060608201518160000160126101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160000160186101000a81548165ffffffffffff021916908365ffffffffffff16021790555090506040518060a00160405290816000820160009054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160069054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff16815260200160008201600c9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160129054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020016000820160189054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff16815250509050612db58484613065565b827f73df0e3d3be7a83432dc82a8ba80739ad042b442d074538c21c810e93f62f17682604051612de59190614ad2565b60405180910390a28291505092915050565b612e028484846126d3565b612e0e84848484613233565b612e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e44906147f2565b60405180910390fd5b50505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f5c8383836133ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f9f57612f9a816133cf565b612fde565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fdd57612fdc8382613418565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130215761301c81613585565b613060565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461305f5761305e8282613656565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614952565b60405180910390fd5b6130de816124d0565b1561311e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311590614832565b60405180910390fd5b61312a60008383612f51565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461317a9190614c63565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006132548473ffffffffffffffffffffffffffffffffffffffff166136d5565b156133bd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261327d612285565b8786866040518563ffffffff1660e01b815260040161329f9493929190614693565b602060405180830381600087803b1580156132b957600080fd5b505af19250505080156132ea57506040513d601f19601f820116820180604052508101906132e79190613d1d565b60015b61336d573d806000811461331a576040519150601f19603f3d011682016040523d82523d6000602084013e61331f565b606091505b50600081511415613365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335c906147f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133c2565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161342584611415565b61342f9190614d44565b9050600060086000848152602001908152602001600020549050818114613514576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506135999190614d44565b90506000600a60008481526020019081526020016000205490506000600983815481106135c9576135c86150fd565b5b9060005260206000200154905080600983815481106135eb576135ea6150fd565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061363a576136396150ce565b5b6001900381819060005260206000200160009055905550505050565b600061366183611415565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546136f490614ee2565b90600052602060002090601f016020900481019282613716576000855561375d565b82601f1061372f57803560ff191683800117855561375d565b8280016001018555821561375d579182015b8281111561375c578235825591602001919060010190613741565b5b50905061376a91906137f4565b5090565b82805461377a90614ee2565b90600052602060002090601f01602090048101928261379c57600085556137e3565b82601f106137b557805160ff19168380011785556137e3565b828001600101855582156137e3579182015b828111156137e25782518255916020019190600101906137c7565b5b5090506137f091906137f4565b5090565b5b8082111561380d5760008160009055506001016137f5565b5090565b600061382461381f84614ba9565b614b84565b9050828152602081018484840111156138405761383f61516f565b5b61384b848285614ea0565b509392505050565b600061386661386184614bda565b614b84565b9050828152602081018484840111156138825761388161516f565b5b61388d848285614ea0565b509392505050565b60006138a86138a384614bda565b614b84565b9050828152602081018484840111156138c4576138c361516f565b5b6138cf848285614eaf565b509392505050565b6000813590506138e6816158fe565b92915050565b6000815190506138fb816158fe565b92915050565b60008135905061391081615915565b92915050565b6000813590506139258161592c565b92915050565b60008151905061393a8161592c565b92915050565b600082601f83011261395557613954615160565b5b8135613965848260208601613811565b91505092915050565b60008135905061397d81615943565b92915050565b6000813590506139928161595a565b92915050565b60008083601f8401126139ae576139ad615160565b5b8235905067ffffffffffffffff8111156139cb576139ca61515b565b5b6020830191508360018202830111156139e7576139e661516a565b5b9250929050565b600082601f830112613a0357613a02615160565b5b8135613a13848260208601613853565b91505092915050565b600082601f830112613a3157613a30615160565b5b8151613a41848260208601613895565b91505092915050565b600060a08284031215613a6057613a5f615165565b5b613a6a60a0614b84565b90506000613a7a84828501613aeb565b6000830152506020613a8e84828501613aeb565b6020830152506040613aa284828501613aeb565b6040830152506060613ab684828501613aeb565b6060830152506080613aca84828501613aeb565b60808301525092915050565b600081359050613ae581615971565b92915050565b600081519050613afa81615988565b92915050565b600060208284031215613b1657613b15615179565b5b6000613b24848285016138d7565b91505092915050565b600060208284031215613b4357613b42615179565b5b6000613b51848285016138ec565b91505092915050565b60008060408385031215613b7157613b70615179565b5b6000613b7f858286016138d7565b9250506020613b90858286016138d7565b9150509250929050565b600080600060608486031215613bb357613bb2615179565b5b6000613bc1868287016138d7565b9350506020613bd2868287016138d7565b9250506040613be386828701613ad6565b9150509250925092565b60008060008060808587031215613c0757613c06615179565b5b6000613c15878288016138d7565b9450506020613c26878288016138d7565b9350506040613c3787828801613ad6565b925050606085013567ffffffffffffffff811115613c5857613c57615174565b5b613c6487828801613940565b91505092959194509250565b60008060408385031215613c8757613c86615179565b5b6000613c95858286016138d7565b9250506020613ca685828601613901565b9150509250929050565b60008060408385031215613cc757613cc6615179565b5b6000613cd5858286016138d7565b9250506020613ce685828601613ad6565b9150509250929050565b600060208284031215613d0657613d05615179565b5b6000613d1484828501613916565b91505092915050565b600060208284031215613d3357613d32615179565b5b6000613d418482850161392b565b91505092915050565b600060208284031215613d6057613d5f615179565b5b6000613d6e8482850161396e565b91505092915050565b600060208284031215613d8d57613d8c615179565b5b6000613d9b84828501613983565b91505092915050565b600060208284031215613dba57613db9615179565b5b600082013567ffffffffffffffff811115613dd857613dd7615174565b5b613de4848285016139ee565b91505092915050565b600060208284031215613e0357613e02615179565b5b600082015167ffffffffffffffff811115613e2157613e20615174565b5b613e2d84828501613a1c565b91505092915050565b600060a08284031215613e4c57613e4b615179565b5b6000613e5a84828501613a4a565b91505092915050565b600060208284031215613e7957613e78615179565b5b6000613e8784828501613ad6565b91505092915050565b600080600060408486031215613ea957613ea8615179565b5b6000613eb786828701613ad6565b935050602084013567ffffffffffffffff811115613ed857613ed7615174565b5b613ee486828701613998565b92509250509250925092565b613ef981614d8a565b82525050565b613f0881614d9c565b82525050565b6000613f1982614c20565b613f238185614c36565b9350613f33818560208601614eaf565b613f3c8161517e565b840191505092915050565b613f5081614e34565b82525050565b613f5f81614e58565b82525050565b613f6e81614e7c565b82525050565b6000613f7f82614c2b565b613f898185614c47565b9350613f99818560208601614eaf565b613fa28161517e565b840191505092915050565b6000613fb882614c2b565b613fc28185614c58565b9350613fd2818560208601614eaf565b80840191505092915050565b60008154613feb81614ee2565b613ff58186614c58565b94506001821660008114614010576001811461402157614054565b60ff19831686528186019350614054565b61402a85614c0b565b60005b8381101561404c5781548189015260018201915060208101905061402d565b838801955050505b50505092915050565b600061406a601483614c47565b9150614075826151d0565b602082019050919050565b600061408d602b83614c47565b9150614098826151f9565b604082019050919050565b60006140b0603283614c47565b91506140bb82615248565b604082019050919050565b60006140d3602683614c47565b91506140de82615297565b604082019050919050565b60006140f6601c83614c47565b9150614101826152e6565b602082019050919050565b6000614119600d83614c47565b91506141248261530f565b602082019050919050565b600061413c600f83614c47565b915061414782615338565b602082019050919050565b600061415f602483614c47565b915061416a82615361565b604082019050919050565b6000614182601983614c47565b915061418d826153b0565b602082019050919050565b60006141a5600683614c58565b91506141b0826153d9565b600682019050919050565b60006141c8600583614c58565b91506141d382615402565b600582019050919050565b60006141eb602c83614c47565b91506141f68261542b565b604082019050919050565b600061420e600783614c58565b91506142198261547a565b600782019050919050565b6000614231603883614c47565b915061423c826154a3565b604082019050919050565b6000614254602a83614c47565b915061425f826154f2565b604082019050919050565b6000614277602983614c47565b915061428282615541565b604082019050919050565b600061429a602083614c47565b91506142a582615590565b602082019050919050565b60006142bd601083614c47565b91506142c8826155b9565b602082019050919050565b60006142e0602c83614c47565b91506142eb826155e2565b604082019050919050565b6000614303605483614c58565b915061430e82615631565b605482019050919050565b6000614326602083614c47565b9150614331826156a6565b602082019050919050565b6000614349602983614c47565b9150614354826156cf565b604082019050919050565b600061436c602b83614c47565b91506143778261571e565b604082019050919050565b600061438f601683614c47565b915061439a8261576d565b602082019050919050565b60006143b2602183614c47565b91506143bd82615796565b604082019050919050565b60006143d5603183614c47565b91506143e0826157e5565b604082019050919050565b60006143f8600f83614c47565b915061440382615834565b602082019050919050565b600061441b602c83614c47565b91506144268261585d565b604082019050919050565b600061443e601483614c58565b9150614449826158ac565b601482019050919050565b6000614461601683614c47565b915061446c826158d5565b602082019050919050565b60a08201600082015161448d6000850182614573565b5060208201516144a06020850182614573565b5060408201516144b36040850182614573565b5060608201516144c66060850182614573565b5060808201516144d96080850182614573565b50505050565b60a0820160008083015490506144f481614f14565b6145016000860182614573565b5061450b81614f7c565b6145186020860182614573565b5061452281614f2e565b61452f6040860182614573565b5061453981614f48565b6145466060860182614573565b5061455081614f62565b61455d6080860182614573565b5050505050565b61456d81614e18565b82525050565b61457c81614e22565b82525050565b61458b81614e22565b82525050565b600061459d8286613fad565b91506145a8826141bb565b91506145b48285613fad565b91506145bf82614198565b91506145cb8284613fde565b9150819050949350505050565b60006145e48285613fad565b91506145ef826141bb565b91506145fb8284613fad565b9150614606826142f6565b91508190509392505050565b600061461d826141bb565b91506146298284613fad565b915081905092915050565b600061463f82614201565b915061464b8284613fde565b915081905092915050565b600061466182614431565b915061466d8284613fad565b915081905092915050565b600060208201905061468d6000830184613ef0565b92915050565b60006080820190506146a86000830187613ef0565b6146b56020830186613ef0565b6146c26040830185614564565b81810360608301526146d48184613f0e565b905095945050505050565b60006020820190506146f46000830184613eff565b92915050565b600060208201905061470f6000830184613f47565b92915050565b600060208201905061472a6000830184613f56565b92915050565b60006020820190506147456000830184613f65565b92915050565b600060208201905081810360008301526147658184613f74565b905092915050565b600060e08201905081810360008301526147878186613f74565b9050818103602083015261479b8185613f74565b90506147aa60408301846144df565b949350505050565b600060208201905081810360008301526147cb8161405d565b9050919050565b600060208201905081810360008301526147eb81614080565b9050919050565b6000602082019050818103600083015261480b816140a3565b9050919050565b6000602082019050818103600083015261482b816140c6565b9050919050565b6000602082019050818103600083015261484b816140e9565b9050919050565b6000602082019050818103600083015261486b8161410c565b9050919050565b6000602082019050818103600083015261488b8161412f565b9050919050565b600060208201905081810360008301526148ab81614152565b9050919050565b600060208201905081810360008301526148cb81614175565b9050919050565b600060208201905081810360008301526148eb816141de565b9050919050565b6000602082019050818103600083015261490b81614224565b9050919050565b6000602082019050818103600083015261492b81614247565b9050919050565b6000602082019050818103600083015261494b8161426a565b9050919050565b6000602082019050818103600083015261496b8161428d565b9050919050565b6000602082019050818103600083015261498b816142b0565b9050919050565b600060208201905081810360008301526149ab816142d3565b9050919050565b600060208201905081810360008301526149cb81614319565b9050919050565b600060208201905081810360008301526149eb8161433c565b9050919050565b60006020820190508181036000830152614a0b8161435f565b9050919050565b60006020820190508181036000830152614a2b81614382565b9050919050565b60006020820190508181036000830152614a4b816143a5565b9050919050565b60006020820190508181036000830152614a6b816143c8565b9050919050565b60006020820190508181036000830152614a8b816143eb565b9050919050565b60006020820190508181036000830152614aab8161440e565b9050919050565b60006020820190508181036000830152614acb81614454565b9050919050565b600060a082019050614ae76000830184614477565b92915050565b6000602082019050614b026000830184614564565b92915050565b6000604082019050614b1d6000830185614564565b614b2a6020830184613f47565b9392505050565b600060a082019050614b466000830188614582565b614b536020830187614582565b614b606040830186614582565b614b6d6060830185614582565b614b7a6080830184614582565b9695505050505050565b6000614b8e614b9f565b9050614b9a8282614f96565b919050565b6000604051905090565b600067ffffffffffffffff821115614bc457614bc361512c565b5b614bcd8261517e565b9050602081019050919050565b600067ffffffffffffffff821115614bf557614bf461512c565b5b614bfe8261517e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c6e82614e18565b9150614c7983614e18565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cae57614cad615041565b5b828201905092915050565b6000614cc482614e18565b9150614ccf83614e18565b925082614cdf57614cde615070565b5b828204905092915050565b6000614cf582614e18565b9150614d0083614e18565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d3957614d38615041565b5b828202905092915050565b6000614d4f82614e18565b9150614d5a83614e18565b925082821015614d6d57614d6c615041565b5b828203905092915050565b600065ffffffffffff82169050919050565b6000614d9582614df8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614ddf82614d8a565b9050919050565b6000614df182614d8a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600065ffffffffffff82169050919050565b6000614e3f82614e46565b9050919050565b6000614e5182614df8565b9050919050565b6000614e6382614e6a565b9050919050565b6000614e7582614df8565b9050919050565b6000614e8782614e8e565b9050919050565b6000614e9982614df8565b9050919050565b82818337600083830152505050565b60005b83811015614ecd578082015181840152602081019050614eb2565b83811115614edc576000848401525b50505050565b60006002820490506001821680614efa57607f821691505b60208210811415614f0e57614f0d61509f565b5b50919050565b6000614f27614f228361518f565b614d78565b9050919050565b6000614f41614f3c836151c3565b614d78565b9050919050565b6000614f5b614f568361519c565b614d78565b9050919050565b6000614f75614f70836151a9565b614d78565b9050919050565b6000614f8f614f8a836151b6565b614d78565b9050919050565b614f9f8261517e565b810181811067ffffffffffffffff82111715614fbe57614fbd61512c565b5b80604052505050565b6000614fd282614e18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561500557615004615041565b5b600182019050919050565b600061501b82614e18565b915061502683614e18565b92508261503657615035615070565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160001c9050919050565b60008160901c9050919050565b60008160c01c9050919050565b60008160301c9050919050565b60008160601c9050919050565b7f44657363726970746f72206973206c6f636b6564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f7420796f757220474f4f5000000000000000000000000000000000000000600082015250565b7f73616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f2069732061200000000000000000000000000000000000000000000000000000600082015250565b7f474f4f5020000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f536565646572206973206c6f636b656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2069732061206d656d626572206f662074686520476f6f6679204f766572736960008201527f7a6564204f70746963732050656f706c652c206f7468657277697365206b6e6f60208201527f776e2061732074686520474f4f502054726f6f70000000000000000000000000604082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f474f4f5073546f6b656e3a2055524920717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b7f65786365656473206d6178696d756d20746f6b656e7300000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74656420746f6f206d616e790000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4465736372697074696f6e2073657420746f3a20000000000000000000000000600082015250565b7f6e6f7420656e6f756768206574686572732073656e7400000000000000000000600082015250565b61590781614d8a565b811461591257600080fd5b50565b61591e81614d9c565b811461592957600080fd5b50565b61593581614da8565b811461594057600080fd5b50565b61594c81614dd4565b811461595757600080fd5b50565b61596381614de6565b811461596e57600080fd5b50565b61597a81614e18565b811461598557600080fd5b50565b61599181614e22565b811461599c57600080fd5b5056fea2646970667358221220889f620d1105fb158eef6af859acbf17abb32665fb0e0b5e142c3ffde38d97a164736f6c63430008060033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.