ETH Price: $3,352.66 (+2.04%)

Token

JKOLioneersNFTv1 (JKLNFTv1)
 

Overview

Max Total Supply

1,150 JKLNFTv1

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
daaab.eth
0x12a0e25e62c1dbd32e505446062b26aecb65f028
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JKOLioneersNFTv1

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-24
*/

pragma solidity ^0.5.17;

/*
 * @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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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.
 *
 * 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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles#add: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles#remove: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles#has: account is the zero address");
        return role.bearer[account];
    }
}

contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @title WhitelistAdminRole
 * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts.
 */
contract WhitelistAdminRole is Context {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

    constructor () internal {
        _addWhitelistAdmin(_msgSender());
    }

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    function addWhitelistAdmin(address account) public onlyWhitelistAdmin {
        _addWhitelistAdmin(account);
    }

    function renounceWhitelistAdmin() public {
        _removeWhitelistAdmin(_msgSender());
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}

/**
 * @title ERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface IERC165 {

    /**
     * @notice Query if a contract implements an interface
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas
     * @param _interfaceId The interface identifier, as specified in ERC-165
     */
    function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool);
}

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {

  /**
   * @dev Multiplies two unsigned integers, reverts on overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath#mul: OVERFLOW");

    return c;
  }

  /**
   * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath#div: DIVISION_BY_ZERO");
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a, "SafeMath#sub: UNDERFLOW");
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Adds two unsigned integers, reverts on overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath#add: OVERFLOW");

    return c;
  }

  /**
   * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
   * reverts when dividing by zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0, "SafeMath#mod: DIVISION_BY_ZERO");
    return a % b;
  }

}

/**
 * @dev ERC-1155 interface for accepting safe transfers.
 */
interface IERC1155TokenReceiver {

  /**
   * @notice Handle the receipt of a single ERC1155 token type
   * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated
   * This function MAY throw to revert and reject the transfer
   * Return of other amount than the magic value MUST result in the transaction being reverted
   * Note: The token contract address is always the message sender
   * @param _operator  The address which called the `safeTransferFrom` function
   * @param _from      The address which previously owned the token
   * @param _id        The id of the token being transferred
   * @param _amount    The amount of tokens being transferred
   * @param _data      Additional data with no specified format
   * @return           `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
   */
  function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4);

  /**
   * @notice Handle the receipt of multiple ERC1155 token types
   * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated
   * This function MAY throw to revert and reject the transfer
   * Return of other amount than the magic value WILL result in the transaction being reverted
   * Note: The token contract address is always the message sender
   * @param _operator  The address which called the `safeBatchTransferFrom` function
   * @param _from      The address which previously owned the token
   * @param _ids       An array containing ids of each token being transferred
   * @param _amounts   An array containing amounts of each token being transferred
   * @param _data      Additional data with no specified format
   * @return           `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
   */
  function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4);

  /**
   * @notice Indicates whether a contract implements the `ERC1155TokenReceiver` functions and so can accept ERC1155 token types.
   * @param  interfaceID The ERC-165 interface ID that is queried for support.s
   * @dev This function MUST return true if it implements the ERC1155TokenReceiver interface and ERC-165 interface.
   *      This function MUST NOT consume more than 5,000 gas.
   * @return Wheter ERC-165 or ERC1155TokenReceiver interfaces are supported.
   */
  function supportsInterface(bytes4 interfaceID) external view returns (bool);

}

interface IERC1155 {
  // Events

  /**
   * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
   *   Operator MUST be msg.sender
   *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
   *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
   *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
   *   To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
   */
  event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);

  /**
   * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
   *   Operator MUST be msg.sender
   *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
   *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
   *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
   *   To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
   */
  event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);

  /**
   * @dev MUST emit when an approval is updated
   */
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

  /**
   * @dev MUST emit when the URI is updated for a token ID
   *   URIs are defined in RFC 3986
   *   The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata JSON Schema"
   */
  event URI(string _amount, uint256 indexed _id);

  /**
   * @notice Transfers amount of an _id from the _from address to the _to address specified
   * @dev MUST emit TransferSingle event on success
   * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
   * MUST throw if `_to` is the zero address
   * MUST throw if balance of sender for token `_id` is lower than the `_amount` sent
   * MUST throw on any other error
   * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   * @param _data    Additional data with no specified format, sent in call to `_to`
   */
  function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external;

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @dev MUST emit TransferBatch event on success
   * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
   * MUST throw if `_to` is the zero address
   * MUST throw if length of `_ids` is not the same as length of `_amounts`
   * MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent
   * MUST throw on any other error
   * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
   * Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   * @param _data     Additional data with no specified format, sent in call to `_to`
  */
  function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external;
  
  /**
   * @notice Get the balance of an account's Tokens
   * @param _owner  The address of the token holder
   * @param _id     ID of the Token
   * @return        The _owner's balance of the Token type requested
   */
  function balanceOf(address _owner, uint256 _id) external view returns (uint256);

  /**
   * @notice Get the balance of multiple account/token pairs
   * @param _owners The addresses of the token holders
   * @param _ids    ID of the Tokens
   * @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
   */
  function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory);

  /**
   * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
   * @dev MUST emit the ApprovalForAll event on success
   * @param _operator  Address to add to the set of authorized operators
   * @param _approved  True if the operator is approved, false to revoke approval
   */
  function setApprovalForAll(address _operator, bool _approved) external;

  /**
   * @notice Queries the approval status of an operator for a given owner
   * @param _owner     The owner of the Tokens
   * @param _operator  Address of authorized operator
   * @return           True if the operator is approved, false if not
   */
  function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator);

}

/**
 * Copyright 2018 ZeroEx Intl.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *   http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Utility library of inline functions on addresses
 */
library Address {

  /**
   * Returns whether the target address is a contract
   * @dev This function will return false if invoked during the constructor of a contract,
   * as the code is not actually created until after the constructor finishes.
   * @param account address of the account to check
   * @return whether the target address is a contract
   */
  function isContract(address account) internal view returns (bool) {
    bytes32 codehash;
    bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;

    // XXX Currently there is no better way to check if there is a contract in an address
    // than to check the size of the code at that address.
    // See https://ethereum.stackexchange.com/a/14016/36603
    // for more details about how this works.
    // TODO Check this again before the Serenity release, because all addresses will be
    // contracts then.
    assembly { codehash := extcodehash(account) }
    return (codehash != 0x0 && codehash != accountHash);
  }

}

/**
 * @dev Implementation of Multi-Token Standard contract
 */
contract ERC1155 is IERC165 {
  using SafeMath for uint256;
  using Address for address;


  /***********************************|
  |        Variables and Events       |
  |__________________________________*/

  // onReceive function signatures
  bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61;
  bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81;

  // Objects balances
  mapping (address => mapping(uint256 => uint256)) internal balances;

  // Operator Functions
  mapping (address => mapping(address => bool)) internal operators;

  // Events
  event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);
  event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
  event URI(string _uri, uint256 indexed _id);


  /***********************************|
  |     Public Transfer Functions     |
  |__________________________________*/

  /**
   * @notice Transfers amount amount of an _id from the _from address to the _to address specified
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   * @param _data    Additional data with no specified format, sent in call to `_to`
   */
  function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    public
  {
    require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR");
    require(_to != address(0), "ERC1155#safeTransferFrom: INVALID_RECIPIENT");

    _safeTransferFrom(_from, _to, _id, _amount);
    _callonERC1155Received(_from, _to, _id, _amount, _data);
  }

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   * @param _data     Additional data with no specified format, sent in call to `_to`
   */
  function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    public
  {
    // Requirements
    require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR");
    require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT");

    _safeBatchTransferFrom(_from, _to, _ids, _amounts);
    _callonERC1155BatchReceived(_from, _to, _ids, _amounts, _data);
  }


  /***********************************|
  |    Internal Transfer Functions    |
  |__________________________________*/

  /**
   * @notice Transfers amount amount of an _id from the _from address to the _to address specified
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   */
  function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount)
    internal
  {
    // Update balances
    balances[_from][_id] = balances[_from][_id].sub(_amount); // Subtract amount
    balances[_to][_id] = balances[_to][_id].add(_amount);     // Add amount

    // Emit event
    emit TransferSingle(msg.sender, _from, _to, _id, _amount);
  }

  /**
   * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...)
   */
  function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
  {
    // Check if recipient is contract
    if (_to.isContract()) {
      bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received(msg.sender, _from, _id, _amount, _data);
      require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE");
    }
  }

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   */
  function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH");

    // Number of transfer to execute
    uint256 nTransfer = _ids.length;

    // Executing all transfers
    for (uint256 i = 0; i < nTransfer; i++) {
      // Update storage balance of previous bin
      balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
      balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
    }

    // Emit event
    emit TransferBatch(msg.sender, _from, _to, _ids, _amounts);
  }

  /**
   * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...)
   */
  function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
  {
    // Pass data if recipient is contract
    if (_to.isContract()) {
      bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived(msg.sender, _from, _ids, _amounts, _data);
      require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE");
    }
  }


  /***********************************|
  |         Operator Functions        |
  |__________________________________*/

  /**
   * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
   * @param _operator  Address to add to the set of authorized operators
   * @param _approved  True if the operator is approved, false to revoke approval
   */
  function setApprovalForAll(address _operator, bool _approved)
    external
  {
    // Update operator status
    operators[msg.sender][_operator] = _approved;
    emit ApprovalForAll(msg.sender, _operator, _approved);
  }

  /**
   * @notice Queries the approval status of an operator for a given owner
   * @param _owner     The owner of the Tokens
   * @param _operator  Address of authorized operator
   * @return True if the operator is approved, false if not
   */
  function isApprovedForAll(address _owner, address _operator)
    public view returns (bool isOperator)
  {
    return operators[_owner][_operator];
  }


  /***********************************|
  |         Balance Functions         |
  |__________________________________*/

  /**
   * @notice Get the balance of an account's Tokens
   * @param _owner  The address of the token holder
   * @param _id     ID of the Token
   * @return The _owner's balance of the Token type requested
   */
  function balanceOf(address _owner, uint256 _id)
    public view returns (uint256)
  {
    return balances[_owner][_id];
  }

  /**
   * @notice Get the balance of multiple account/token pairs
   * @param _owners The addresses of the token holders
   * @param _ids    ID of the Tokens
   * @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
   */
  function balanceOfBatch(address[] memory _owners, uint256[] memory _ids)
    public view returns (uint256[] memory)
  {
    require(_owners.length == _ids.length, "ERC1155#balanceOfBatch: INVALID_ARRAY_LENGTH");

    // Variables
    uint256[] memory batchBalances = new uint256[](_owners.length);

    // Iterate over each owner and token ID
    for (uint256 i = 0; i < _owners.length; i++) {
      batchBalances[i] = balances[_owners[i]][_ids[i]];
    }

    return batchBalances;
  }


  /***********************************|
  |          ERC165 Functions         |
  |__________________________________*/

  /**
   * INTERFACE_SIGNATURE_ERC165 = bytes4(keccak256("supportsInterface(bytes4)"));
   */
  bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;

  /**
   * INTERFACE_SIGNATURE_ERC1155 =
   * bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
   * bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
   * bytes4(keccak256("balanceOf(address,uint256)")) ^
   * bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
   * bytes4(keccak256("setApprovalForAll(address,bool)")) ^
   * bytes4(keccak256("isApprovedForAll(address,address)"));
   */
  bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;

  /**
   * @notice Query if a contract implements an interface
   * @param _interfaceID  The interface identifier, as specified in ERC-165
   * @return `true` if the contract implements `_interfaceID` and
   */
  function supportsInterface(bytes4 _interfaceID) external view returns (bool) {
    if (_interfaceID == INTERFACE_SIGNATURE_ERC165 ||
        _interfaceID == INTERFACE_SIGNATURE_ERC1155) {
      return true;
    }
    return false;
  }

}

/**
 * @notice Contract that handles metadata related methods.
 * @dev Methods assume a deterministic generation of URI based on token IDs.
 *      Methods also assume that URI uses hex representation of token IDs.
 */
contract ERC1155Metadata {

  // URI's default URI prefix
  string internal baseMetadataURI;
  event URI(string _uri, uint256 indexed _id);


  /***********************************|
  |     Metadata Public Function s    |
  |__________________________________*/

  /**
   * @notice A distinct Uniform Resource Identifier (URI) for a given token.
   * @dev URIs are defined in RFC 3986.
   *      URIs are assumed to be deterministically generated based on token ID
   *      Token IDs are assumed to be represented in their hex format in URIs
   * @return URI string
   */
  function uri(uint256 _id) public view returns (string memory) {
    return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json"));
  }


  /***********************************|
  |    Metadata Internal Functions    |
  |__________________________________*/

  /**
   * @notice Will emit default URI log event for corresponding token _id
   * @param _tokenID ID of token to log default URI
   */
  function _logURI(uint256 _tokenID) internal {
    emit URI(uri(_tokenID), _tokenID);
  }

  /**
   * @notice Will emit default URI log event for corresponding token _id
   * @param _maxTokenID max ID of tokens to log default URI
   */
  function _logURIs(uint256 _maxTokenID) internal {
    for (uint256 i = 1; i <= _maxTokenID; i++) {
      _logURI(i);
    }
  }

  /**
   * @notice Will emit default URI log event for corresponding token _id
   * @param _tokenIDs Array of IDs of tokens to log default URI
   */
  function _logURIs(uint256[] memory _tokenIDs) internal {
    for (uint256 i = 0; i < _tokenIDs.length; i++) {
      _logURI(_tokenIDs[i]);
    }
  }

  /**
   * @notice Will emit a specific URI log event for corresponding token
   * @param _tokenIDs IDs of the token corresponding to the _uris logged
   * @param _URIs    The URIs of the specified _tokenIDs
   */
  function _logURIs(uint256[] memory _tokenIDs, string[] memory _URIs) internal {
    require(_tokenIDs.length == _URIs.length, "ERC1155Metadata#_logURIs: INVALID_ARRAYS_LENGTH");
    for (uint256 i = 0; i < _tokenIDs.length; i++) {
      emit URI(_URIs[i], _tokenIDs[i]);
    }
  }

  /**
   * @notice Will update the base URL of token's URI
   * @param _newBaseMetadataURI New base URL of token's URI
   */
  function _setBaseMetadataURI(string memory _newBaseMetadataURI) internal {
    baseMetadataURI = _newBaseMetadataURI;
  }


  /***********************************|
  |    Utility Internal Functions     |
  |__________________________________*/

  /**
   * @notice Convert uint256 to string
   * @param _i Unsigned integer to convert to string
   */
  function _uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
    if (_i == 0) {
      return "0";
    }

    uint256 j = _i;
    uint256 ii = _i;
    uint256 len;

    // Get number of bytes
    while (j != 0) {
      len++;
      j /= 10;
    }

    bytes memory bstr = new bytes(len);
    uint256 k = len - 1;

    // Get each individual ASCII
    while (ii != 0) {
      bstr[k--] = byte(uint8(48 + ii % 10));
      ii /= 10;
    }

    // Convert to string
    return string(bstr);
  }

}

/**
 * @dev Multi-Fungible Tokens with minting and burning methods. These methods assume
 *      a parent contract to be executed as they are `internal` functions
 */
contract ERC1155MintBurn is ERC1155 {


  /****************************************|
  |            Minting Functions           |
  |_______________________________________*/

  /**
   * @notice Mint _amount of tokens of a given id
   * @param _to      The address to mint tokens to
   * @param _id      Token id to mint
   * @param _amount  The amount to be minted
   * @param _data    Data to pass if receiver is contract
   */
  function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
  {
    // Add _amount
    balances[_to][_id] = balances[_to][_id].add(_amount);

    // Emit event
    emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount);

    // Calling onReceive method if recipient is contract
    _callonERC1155Received(address(0x0), _to, _id, _amount, _data);
  }

  /**
   * @notice Mint tokens for each ids in _ids
   * @param _to       The address to mint tokens to
   * @param _ids      Array of ids to mint
   * @param _amounts  Array of amount of tokens to mint per id
   * @param _data    Data to pass if receiver is contract
   */
  function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH");

    // Number of mints to execute
    uint256 nMint = _ids.length;

     // Executing all minting
    for (uint256 i = 0; i < nMint; i++) {
      // Update storage balance
      balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
    }

    // Emit batch mint event
    emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts);

    // Calling onReceive method if recipient is contract
    _callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, _data);
  }


  /****************************************|
  |            Burning Functions           |
  |_______________________________________*/

  /**
   * @notice Burn _amount of tokens of a given token id
   * @param _from    The address to burn tokens from
   * @param _id      Token id to burn
   * @param _amount  The amount to be burned
   */
  function _burn(address _from, uint256 _id, uint256 _amount)
    internal
  {
    //Substract _amount
    balances[_from][_id] = balances[_from][_id].sub(_amount);

    // Emit event
    emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount);
  }

  /**
   * @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair
   * @param _from     The address to burn tokens from
   * @param _ids      Array of token ids to burn
   * @param _amounts  Array of the amount to be burned
   */
  function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH");

    // Number of mints to execute
    uint256 nBurn = _ids.length;

     // Executing all minting
    for (uint256 i = 0; i < nBurn; i++) {
      // Update storage balance
      balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
    }

    // Emit batch mint event
    emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts);
  }

}

/**
 * @title ERC1155Tradable
 * ERC1155Tradable - ERC1155 contract that whitelists an operator address, 
 * has create and mint functionality, and supports useful standards from OpenZeppelin,
  like _exists(), name(), symbol(), and totalSupply()
 */
contract ERC1155Tradable is ERC1155, ERC1155MintBurn, ERC1155Metadata, Ownable, MinterRole, WhitelistAdminRole {

	uint256 internal _currentTokenID = 0;
	mapping(uint256 => address) public creators;
	mapping(uint256 => uint256) public tokenSupply;
	mapping(uint256 => uint256) public tokenMaxSupply;
	// Contract name
	string public name;
	// Contract symbol
	string public symbol;

	constructor(
		string memory _name,
		string memory _symbol
	) public {
		name = _name;
		symbol = _symbol;
	}

  function addWhitelistAdmin(address account) public onlyOwner {
    _addWhitelistAdmin(account);
  }

	function removeWhitelistAdmin(address account) public onlyOwner {
		_removeWhitelistAdmin(account);
	}

	function addMinter(address account) public onlyOwner {
		_addMinter(account);
	}

	function removeMinter(address account) public onlyOwner {
		_removeMinter(account);
	}

	function uri(uint256 _id) public view returns (string memory) {
		require(_exists(_id), "ERC1155Tradable#uri: NONEXISTENT_TOKEN");
    return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json"));
	}

	/**
	 * @dev Returns the total quantity for a token ID
	 * @param _id uint256 ID of the token to query
	 * @return amount of token in existence
	 */
	function totalSupply(uint256 _id) public view returns (uint256) {
		return tokenSupply[_id];
	}

	/**
	 * @dev Returns the max quantity for a token ID
	 * @param _id uint256 ID of the token to query
	 * @return amount of token in existence
	 */
	function maxSupply(uint256 _id) public view returns (uint256) {
		return tokenMaxSupply[_id];
	}

	/**
	 * @dev Will update the base URL of token's URI
	 * @param _newBaseMetadataURI New base URL of token's URI
	 */
	function setBaseMetadataURI(string memory _newBaseMetadataURI) public onlyWhitelistAdmin {
		_setBaseMetadataURI(_newBaseMetadataURI);
    if (_currentTokenID > 0) {
      _logURIs(_currentTokenID);
    }
	}

	/**
	 * @dev Creates a new token type and assigns _initialSupply to an address
	 * @param _maxSupply max supply allowed
	 * @param _initialSupply Optional amount to supply the first owner
	 * @param _data Optional data to pass if receiver is contract
	 * @return The newly created token ID
	 */
	function create(
		uint256 _maxSupply,
		uint256 _initialSupply,
		bytes calldata _data
	) external onlyWhitelistAdmin returns (uint256 tokenId) {
		require(_initialSupply <= _maxSupply, "ERC1155Tradable#create: Initial supply cannot be more than max supply");
		uint256 _id = _getNextTokenID();
		_incrementTokenTypeId();
		creators[_id] = msg.sender;

    if (bytes(baseMetadataURI).length > 0) {
      _logURI(_id);
    }

		if (_initialSupply != 0) _mint(msg.sender, _id, _initialSupply, _data);
		tokenSupply[_id] = _initialSupply;
		tokenMaxSupply[_id] = _maxSupply;
		return _id;
	}

	/**
	 * @dev Mints some amount of tokens to an address
	 * @param _to          Address of the future owner of the token
	 * @param _id          Token ID to mint
	 * @param _quantity    Amount of tokens to mint
	 * @param _data        Data to pass if receiver is contract
	 */
	function mint(
		address _to,
		uint256 _id,
		uint256 _quantity,
		bytes memory _data
	) public onlyMinter {
    require(_exists(_id), "ERC1155Tradable#mint: NONEXISTENT_TOKEN");
    require(_to != address(0), "ERC1155Tradable#mint: INVALID_RECIPIENT");
		require(tokenSupply[_id].add(_quantity) <= tokenMaxSupply[_id], "ERC1155Tradable#mint: mint supply cannot be more than max supply");

		_mint(_to, _id, _quantity, _data);
		tokenSupply[_id] = tokenSupply[_id].add(_quantity);
	}

  /**
	 * @dev Burns some amount of tokens from an address
	 * @param _from        Address of the owner of the token
	 * @param _id          Token ID to burn
	 * @param _quantity    Amount of tokens to burn
	 */
  function burn(address _from, uint256 _id, uint256 _quantity) public {
    require(_exists(_id), "ERC1155Tradable#burn: NONEXISTENT_TOKEN");
    require(_from == _msgSender() || isApprovedForAll(_from, _msgSender()), "ERC1155Tradable#burn: caller is not owner nor approved");

    _burn(_from, _id, _quantity);
    tokenSupply[_id] = tokenSupply[_id].sub(_quantity);
  }

	/**
	 * @dev Returns whether the specified token exists by checking to see if it has a creator
	 * @param _id uint256 ID of the token to query the existence of
	 * @return bool whether the token exists
	 */
	function _exists(uint256 _id) internal view returns (bool) {
		return creators[_id] != address(0);
	}

	/**
	 * @dev calculates the next token ID based on value of _currentTokenID
	 * @return uint256 for the next token ID
	 */
	function _getNextTokenID() private view returns (uint256) {
		return _currentTokenID.add(1);
	}

	/**
	 * @dev increments the value of _currentTokenID
	 */
	function _incrementTokenTypeId() private {
		_currentTokenID++;
	}
}

contract JKOLioneersNFTv1 is ERC1155Tradable {
	constructor() public ERC1155Tradable("JKOLioneersNFTv1", "JKLNFTv1") {
		_setBaseMetadataURI("https://raw.githubusercontent.com/projectnft2021/jklnftv1_metadata/main/");
	}

  function baseURI() public view returns (string memory) {
    return baseMetadataURI;
  }

  function setMaxSupply(uint256 _id, uint256 _newMaxSupply) public onlyWhitelistAdmin {
    require(_exists(_id), "JKOLioneersNFTv1#setMaxSupply: NONEXISTENT_TOKEN");
    require(_newMaxSupply >= tokenSupply[_id], "JKOLioneersNFTv1#setMaxSupply: Max supply cannot be less than token supply");
    tokenMaxSupply[_id] = _newMaxSupply;
  }

  function currentTokenID() public view returns (uint256) {
    return _currentTokenID;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]

608060405260006006553480156200001657600080fd5b506040518060400160405280601081526020016f4a4b4f4c696f6e656572734e4654763160801b815250604051806040016040528060088152602001674a4b4c4e4654763160c01b8152506000620000736200016e60201b60201c565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000e7620000d86001600160e01b036200016e16565b6001600160e01b036200017316565b6200010d620000fe6001600160e01b036200016e16565b6001600160e01b03620001c516565b81516200012290600a90602085019062000311565b5080516200013890600b90602084019062000311565b5050506200016860405180608001604052806048815260200162003136604891396001600160e01b036200021716565b620003b3565b335b90565b6200018e8160046200023060201b620027931790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001e08160056200023060201b620027931790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b80516200022c90600290602084019062000311565b5050565b6200024582826001600160e01b03620002a816565b15620002835760405162461bcd60e51b8152600401808060200182810382526023815260200180620031136023913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002f15760405162461bcd60e51b81526004018080602001828103825260268152602001806200317e6026913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035457805160ff191683800117855562000384565b8280016001018555821562000384579182015b828111156200038457825182559160200191906001019062000367565b506200039292915062000396565b5090565b6200017091905b808211156200039257600081556001016200039d565b612d5080620003c36000396000f3fe608060405234801561001057600080fd5b50600436106102045760003560e01c80637e518ec81161011a578063aa271e1a116100ad578063cd53d08e1161007c578063cd53d08e14610a35578063e985e9c514610a52578063f242432a14610a80578063f2fde38b14610b49578063f5298aca14610b6f57610204565b8063aa271e1a146109c4578063bb5f747b146109ea578063bb62115e14610a10578063bd85b03914610a1857610204565b806395d89b41116100e957806395d89b4114610960578063983b2d5614610968578063986502751461098e578063a22cb4651461099657610204565b80637e518ec814610873578063869f7594146109175780638da5cb5b146109345780638f32d59b1461095857610204565b80633092afd51161019d5780636897e9741161016c5780636897e974146107575780636c0360eb1461077d578063715018a614610785578063731133e91461078d5780637362d9c81461084d57610204565b80633092afd51461059357806337da577c146105b95780634c5a628c146105dc5780634e1273f4146105e457610204565b806306fdde03116101d957806306fdde03146103195780630e89341c146103965780632693ebf2146103b35780632eb2c2d6146103d057610204565b80624221f014610209578062fdd58e1461023857806301ffc9a71461026457806306f9363c1461029f575b600080fd5b6102266004803603602081101561021f57600080fd5b5035610ba1565b60408051918252519081900360200190f35b6102266004803603604081101561024e57600080fd5b506001600160a01b038135169060200135610bb3565b61028b6004803603602081101561027a57600080fd5b50356001600160e01b031916610bd9565b604080519115158252519081900360200190f35b610226600480360360608110156102b557600080fd5b813591602081013591810190606081016040820135600160201b8111156102db57600080fd5b8201836020820111156102ed57600080fd5b803590602001918460018302840111600160201b8311171561030e57600080fd5b509092509050610c20565b610321610d6f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035b578181015183820152602001610343565b50505050905090810190601f1680156103885780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610321600480360360208110156103ac57600080fd5b5035610dfd565b610226600480360360208110156103c957600080fd5b5035610f22565b610591600480360360a08110156103e657600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561041957600080fd5b82018360208201111561042b57600080fd5b803590602001918460208302840111600160201b8311171561044c57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561049b57600080fd5b8201836020820111156104ad57600080fd5b803590602001918460208302840111600160201b831117156104ce57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561051d57600080fd5b82018360208201111561052f57600080fd5b803590602001918460018302840111600160201b8311171561055057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f34945050505050565b005b610591600480360360208110156105a957600080fd5b50356001600160a01b0316610ff0565b610591600480360360408110156105cf57600080fd5b5080359060200135611043565b61059161112c565b610707600480360360408110156105fa57600080fd5b810190602081018135600160201b81111561061457600080fd5b82018360208201111561062657600080fd5b803590602001918460208302840111600160201b8311171561064757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561069657600080fd5b8201836020820111156106a857600080fd5b803590602001918460208302840111600160201b831117156106c957600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061113e945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561074357818101518382015260200161072b565b505050509050019250505060405180910390f35b6105916004803603602081101561076d57600080fd5b50356001600160a01b031661123f565b61032161128f565b610591611323565b610591600480360360808110156107a357600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b8111156107d957600080fd5b8201836020820111156107eb57600080fd5b803590602001918460018302840111600160201b8311171561080c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113b4945050505050565b6105916004803603602081101561086357600080fd5b50356001600160a01b0316611533565b6105916004803603602081101561088957600080fd5b810190602081018135600160201b8111156108a357600080fd5b8201836020820111156108b557600080fd5b803590602001918460018302840111600160201b831117156108d657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611583945050505050565b6102266004803603602081101561092d57600080fd5b50356115e5565b61093c6115f7565b604080516001600160a01b039092168252519081900360200190f35b61028b611606565b61032161162c565b6105916004803603602081101561097e57600080fd5b50356001600160a01b0316611687565b6105916116d7565b610591600480360360408110156109ac57600080fd5b506001600160a01b03813516906020013515156116e7565b61028b600480360360208110156109da57600080fd5b50356001600160a01b0316611755565b61028b60048036036020811015610a0057600080fd5b50356001600160a01b031661176e565b610226611781565b61022660048036036020811015610a2e57600080fd5b5035611787565b61093c60048036036020811015610a4b57600080fd5b5035611799565b61028b60048036036040811015610a6857600080fd5b506001600160a01b03813581169160200135166117b4565b610591600480360360a0811015610a9657600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610ad557600080fd5b820183602082011115610ae757600080fd5b803590602001918460018302840111600160201b83111715610b0857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117e2945050505050565b61059160048036036020811015610b5f57600080fd5b50356001600160a01b0316611897565b61059160048036036060811015610b8557600080fd5b506001600160a01b0381351690602081013590604001356118e7565b60096020526000908152604090205481565b6001600160a01b0391909116600090815260208181526040808320938352929052205490565b60006001600160e01b031982166301ffc9a760e01b1480610c0a57506001600160e01b03198216636cdb3d1360e11b145b15610c1757506001610c1b565b5060005b919050565b6000610c32610c2d6119da565b61176e565b610c6d5760405162461bcd60e51b8152600401808060200182810382526040815260200180612af46040913960400191505060405180910390fd5b84841115610cac5760405162461bcd60e51b8152600401808060200182810382526045815260200180612caf6045913960600191505060405180910390fd5b6000610cb66119de565b9050610cc06119fa565b600081815260076020526040902080546001600160a01b031916331790556002805460001960018216156101000201160415610cff57610cff81611a05565b8415610d4757610d4733828787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611aa792505050565b6000818152600860209081526040808320889055600990915290208690559050949350505050565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610df55780601f10610dca57610100808354040283529160200191610df5565b820191906000526020600020905b815481529060010190602001808311610dd857829003601f168201915b505050505081565b6060610e0882611b4d565b610e435760405162461bcd60e51b8152600401808060200182810382526026815260200180612a586026913960400191505060405180910390fd5b6002610e4e83611b6a565b6040516020018083805460018160011615610100020316600290048015610eac5780601f10610e8a576101008083540402835291820191610eac565b820191906000526020600020905b815481529060010190602001808311610e98575b5050825160208401908083835b60208310610ed85780518252601f199092019160209182019101610eb9565b5181516020939093036101000a600019018019909116921691909117905264173539b7b760d91b92019182525060408051808303601a190181526005909201905295945050505050565b60086020526000908152604090205481565b336001600160a01b0386161480610f505750610f5085336117b4565b610f8b5760405162461bcd60e51b815260040180806020018281038252602f815260200180612b87602f913960400191505060405180910390fd5b6001600160a01b038416610fd05760405162461bcd60e51b8152600401808060200182810382526030815260200180612a7e6030913960400191505060405180910390fd5b610fdc85858585611c2d565b610fe98585858585611ed8565b5050505050565b610ff8611606565b611037576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b611040816120de565b50565b61104e610c2d6119da565b6110895760405162461bcd60e51b8152600401808060200182810382526040815260200180612af46040913960400191505060405180910390fd5b61109282611b4d565b6110cd5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a286030913960400191505060405180910390fd5b60008281526008602052604090205481101561111a5760405162461bcd60e51b815260040180806020018281038252604a815260200180612bb6604a913960600191505060405180910390fd5b60009182526009602052604090912055565b61113c6111376119da565b612126565b565b606081518351146111805760405162461bcd60e51b815260040180806020018281038252602c815260200180612b5b602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156111ad578160200160208202803883390190505b50905060005b8451811015611237576000808683815181106111cb57fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600085838151811061120157fe5b602002602001015181526020019081526020016000205482828151811061122457fe5b60209081029190910101526001016111b3565b509392505050565b611247611606565b611286576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b61104081612126565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156113185780601f106112ed57610100808354040283529160200191611318565b820191906000526020600020905b8154815290600101906020018083116112fb57829003601f168201915b505050505090505b90565b61132b611606565b61136a576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6113c46113bf6119da565b611755565b6113ff5760405162461bcd60e51b81526004018080602001828103825260308152602001806129f86030913960400191505060405180910390fd5b61140883611b4d565b6114435760405162461bcd60e51b81526004018080602001828103825260278152602001806128e56027913960400191505060405180910390fd5b6001600160a01b0384166114885760405162461bcd60e51b81526004018080602001828103825260278152602001806129d16027913960400191505060405180910390fd5b6000838152600960209081526040808320546008909252909120546114b3908463ffffffff61216e16565b11156114f05760405162461bcd60e51b81526004018080602001828103825260408152602001806129326040913960400191505060405180910390fd5b6114fc84848484611aa7565b60008381526008602052604090205461151b908363ffffffff61216e16565b60009384526008602052604090932092909255505050565b61153b611606565b61157a576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b611040816121c8565b61158e610c2d6119da565b6115c95760405162461bcd60e51b8152600401808060200182810382526040815260200180612af46040913960400191505060405180910390fd5b6115d281612210565b6006541561104057611040600654612227565b60009081526009602052604090205490565b6003546001600160a01b031690565b6003546000906001600160a01b031661161d6119da565b6001600160a01b031614905090565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610df55780601f10610dca57610100808354040283529160200191610df5565b61168f611606565b6116ce576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b61104081612242565b61113c6116e26119da565b6120de565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b600061176860048363ffffffff61228a16565b92915050565b600061176860058363ffffffff61228a16565b60065490565b60009081526008602052604090205490565b6007602052600090815260409020546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b336001600160a01b03861614806117fe57506117fe85336117b4565b6118395760405162461bcd60e51b815260040180806020018281038252602a815260200180612972602a913960400191505060405180910390fd5b6001600160a01b03841661187e5760405162461bcd60e51b815260040180806020018281038252602b815260200180612897602b913960400191505060405180910390fd5b61188a858585856122f1565b610fe985858585856123d9565b61189f611606565b6118de576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b6110408161255b565b6118f082611b4d565b61192b5760405162461bcd60e51b8152600401808060200182810382526027815260200180612b346027913960400191505060405180910390fd5b6119336119da565b6001600160a01b0316836001600160a01b0316148061195e575061195e836119596119da565b6117b4565b6119995760405162461bcd60e51b8152600401808060200182810382526036815260200180612c006036913960400191505060405180910390fd5b6119a48383836125fc565b6000828152600860205260409020546119c3908263ffffffff61269316565b600092835260086020526040909220919091555050565b3390565b6006546000906119f590600163ffffffff61216e16565b905090565b600680546001019055565b807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b611a3083610dfd565b6040805160208082528351818301528351919283929083019185019080838360005b83811015611a6a578181015183820152602001611a52565b50505050905090810190601f168015611a975780820380516001836020036101000a031916815260200191505b509250505060405180910390a250565b6001600160a01b038416600090815260208181526040808320868452909152902054611ad9908363ffffffff61216e16565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a4611b476000858585856123d9565b50505050565b6000908152600760205260409020546001600160a01b0316151590565b606081611b8f57506040805180820190915260018152600360fc1b6020820152610c1b565b818060005b8215611ba857600101600a83049250611b94565b6060816040519080825280601f01601f191660200182016040528015611bd5576020820181803883390190505b50905060001982015b8315611c2357600a840660300160f81b82828060019003935081518110611c0157fe5b60200101906001600160f81b031916908160001a905350600a84049350611bde565b5095945050505050565b8051825114611c6d5760405162461bcd60e51b815260040180806020018281038252603581526020018061299c6035913960400191505060405180910390fd5b815160005b81811015611df757611ce8838281518110611c8957fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611cc357fe5b602002602001015181526020019081526020016000205461269390919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611d1a57fe5b6020026020010151815260200190815260200160002081905550611da2838281518110611d4357fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611d7d57fe5b602002602001015181526020019081526020016000205461216e90919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611dd457fe5b602090810291909101810151825281019190915260400160002055600101611c72565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015611e7d578181015183820152602001611e65565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611ebc578181015183820152602001611ea4565b5050505090500194505050505060405180910390a45050505050565b611eea846001600160a01b03166126f0565b15610fe9576000846001600160a01b031663bc197c8133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015611f8c578181015183820152602001611f74565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015611fcb578181015183820152602001611fb3565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612007578181015183820152602001611fef565b50505050905090810190601f1680156120345780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561205957600080fd5b505af115801561206d573d6000803e3d6000fd5b505050506040513d602081101561208357600080fd5b505190506001600160e01b0319811663bc197c8160e01b146120d65760405162461bcd60e51b815260040180806020018281038252603f815260200180612c36603f913960400191505060405180910390fd5b505050505050565b6120ef60048263ffffffff61272c16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b61213760058263ffffffff61272c16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b6000828201838110156121c1576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b9392505050565b6121d960058263ffffffff61279316565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b80516122239060029060208401906127fe565b5050565b60015b8181116122235761223a81611a05565b60010161222a565b61225360048263ffffffff61279316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b0382166122d15760405162461bcd60e51b8152600401808060200182810382526026815260200180612aae6026913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038416600090815260208181526040808320858452909152902054612323908263ffffffff61269316565b6001600160a01b038086166000908152602081815260408083208784528252808320949094559186168152808252828120858252909152205461236c908263ffffffff61216e16565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b6123eb846001600160a01b03166126f0565b15610fe9576000846001600160a01b031663f23a6e6133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561248e578181015183820152602001612476565b50505050905090810190601f1680156124bb5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156124de57600080fd5b505af11580156124f2573d6000803e3d6000fd5b505050506040513d602081101561250857600080fd5b505190506001600160e01b0319811663f23a6e6160e01b146120d65760405162461bcd60e51b815260040180806020018281038252603a815260200180612c75603a913960400191505060405180910390fd5b6001600160a01b0381166125a05760405162461bcd60e51b815260040180806020018281038252602681526020018061290c6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831660009081526020818152604080832085845290915290205461262e908263ffffffff61269316565b6001600160a01b03841660008181526020818152604080832087845282528083209490945583518681529081018590528351919333927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f629281900390910190a4505050565b6000828211156126ea576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906127245750808214155b949350505050565b612736828261228a565b6127715760405162461bcd60e51b8152600401808060200182810382526028815260200180612cf46028913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61279d828261228a565b156127d95760405162461bcd60e51b81526004018080602001828103825260238152602001806128c26023913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061283f57805160ff191683800117855561286c565b8280016001018555821561286c579182015b8281111561286c578251825591602001919060010190612851565b5061287892915061287c565b5090565b61132091905b80821115612878576000815560010161288256fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e54526f6c6573236164643a206163636f756e7420616c72656164792068617320726f6c65455243313135355472616461626c65236d696e743a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135355472616461626c65236d696e743a206d696e7420737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c794552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e475448455243313135355472616461626c65236d696e743a20494e56414c49445f524543495049454e544d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c654a4b4f4c696f6e656572734e46547631237365744d6178537570706c793a204e4f4e4558495354454e545f544f4b454e455243313135355472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e45524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e54526f6c6573236861733a206163636f756e7420697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657257686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135355472616461626c65236275726e3a204e4f4e4558495354454e545f544f4b454e455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f524a4b4f4c696f6e656572734e46547631237365744d6178537570706c793a204d617820737570706c792063616e6e6f74206265206c657373207468616e20746f6b656e20737570706c79455243313135355472616461626c65236275726e3a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656445524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243313135355472616461626c65236372656174653a20496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79526f6c65732372656d6f76653a206163636f756e7420646f6573206e6f74206861766520726f6c65a265627a7a723158201e0acc35255262acc164869c0595764969422ab6250c2260e869a2ec3cf9e02b64736f6c63430005110032526f6c6573236164643a206163636f756e7420616c72656164792068617320726f6c6568747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f70726f6a6563746e6674323032312f6a6b6c6e667476315f6d657461646174612f6d61696e2f526f6c6573236861733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102045760003560e01c80637e518ec81161011a578063aa271e1a116100ad578063cd53d08e1161007c578063cd53d08e14610a35578063e985e9c514610a52578063f242432a14610a80578063f2fde38b14610b49578063f5298aca14610b6f57610204565b8063aa271e1a146109c4578063bb5f747b146109ea578063bb62115e14610a10578063bd85b03914610a1857610204565b806395d89b41116100e957806395d89b4114610960578063983b2d5614610968578063986502751461098e578063a22cb4651461099657610204565b80637e518ec814610873578063869f7594146109175780638da5cb5b146109345780638f32d59b1461095857610204565b80633092afd51161019d5780636897e9741161016c5780636897e974146107575780636c0360eb1461077d578063715018a614610785578063731133e91461078d5780637362d9c81461084d57610204565b80633092afd51461059357806337da577c146105b95780634c5a628c146105dc5780634e1273f4146105e457610204565b806306fdde03116101d957806306fdde03146103195780630e89341c146103965780632693ebf2146103b35780632eb2c2d6146103d057610204565b80624221f014610209578062fdd58e1461023857806301ffc9a71461026457806306f9363c1461029f575b600080fd5b6102266004803603602081101561021f57600080fd5b5035610ba1565b60408051918252519081900360200190f35b6102266004803603604081101561024e57600080fd5b506001600160a01b038135169060200135610bb3565b61028b6004803603602081101561027a57600080fd5b50356001600160e01b031916610bd9565b604080519115158252519081900360200190f35b610226600480360360608110156102b557600080fd5b813591602081013591810190606081016040820135600160201b8111156102db57600080fd5b8201836020820111156102ed57600080fd5b803590602001918460018302840111600160201b8311171561030e57600080fd5b509092509050610c20565b610321610d6f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035b578181015183820152602001610343565b50505050905090810190601f1680156103885780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610321600480360360208110156103ac57600080fd5b5035610dfd565b610226600480360360208110156103c957600080fd5b5035610f22565b610591600480360360a08110156103e657600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561041957600080fd5b82018360208201111561042b57600080fd5b803590602001918460208302840111600160201b8311171561044c57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561049b57600080fd5b8201836020820111156104ad57600080fd5b803590602001918460208302840111600160201b831117156104ce57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561051d57600080fd5b82018360208201111561052f57600080fd5b803590602001918460018302840111600160201b8311171561055057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f34945050505050565b005b610591600480360360208110156105a957600080fd5b50356001600160a01b0316610ff0565b610591600480360360408110156105cf57600080fd5b5080359060200135611043565b61059161112c565b610707600480360360408110156105fa57600080fd5b810190602081018135600160201b81111561061457600080fd5b82018360208201111561062657600080fd5b803590602001918460208302840111600160201b8311171561064757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561069657600080fd5b8201836020820111156106a857600080fd5b803590602001918460208302840111600160201b831117156106c957600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061113e945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561074357818101518382015260200161072b565b505050509050019250505060405180910390f35b6105916004803603602081101561076d57600080fd5b50356001600160a01b031661123f565b61032161128f565b610591611323565b610591600480360360808110156107a357600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b8111156107d957600080fd5b8201836020820111156107eb57600080fd5b803590602001918460018302840111600160201b8311171561080c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113b4945050505050565b6105916004803603602081101561086357600080fd5b50356001600160a01b0316611533565b6105916004803603602081101561088957600080fd5b810190602081018135600160201b8111156108a357600080fd5b8201836020820111156108b557600080fd5b803590602001918460018302840111600160201b831117156108d657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611583945050505050565b6102266004803603602081101561092d57600080fd5b50356115e5565b61093c6115f7565b604080516001600160a01b039092168252519081900360200190f35b61028b611606565b61032161162c565b6105916004803603602081101561097e57600080fd5b50356001600160a01b0316611687565b6105916116d7565b610591600480360360408110156109ac57600080fd5b506001600160a01b03813516906020013515156116e7565b61028b600480360360208110156109da57600080fd5b50356001600160a01b0316611755565b61028b60048036036020811015610a0057600080fd5b50356001600160a01b031661176e565b610226611781565b61022660048036036020811015610a2e57600080fd5b5035611787565b61093c60048036036020811015610a4b57600080fd5b5035611799565b61028b60048036036040811015610a6857600080fd5b506001600160a01b03813581169160200135166117b4565b610591600480360360a0811015610a9657600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610ad557600080fd5b820183602082011115610ae757600080fd5b803590602001918460018302840111600160201b83111715610b0857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117e2945050505050565b61059160048036036020811015610b5f57600080fd5b50356001600160a01b0316611897565b61059160048036036060811015610b8557600080fd5b506001600160a01b0381351690602081013590604001356118e7565b60096020526000908152604090205481565b6001600160a01b0391909116600090815260208181526040808320938352929052205490565b60006001600160e01b031982166301ffc9a760e01b1480610c0a57506001600160e01b03198216636cdb3d1360e11b145b15610c1757506001610c1b565b5060005b919050565b6000610c32610c2d6119da565b61176e565b610c6d5760405162461bcd60e51b8152600401808060200182810382526040815260200180612af46040913960400191505060405180910390fd5b84841115610cac5760405162461bcd60e51b8152600401808060200182810382526045815260200180612caf6045913960600191505060405180910390fd5b6000610cb66119de565b9050610cc06119fa565b600081815260076020526040902080546001600160a01b031916331790556002805460001960018216156101000201160415610cff57610cff81611a05565b8415610d4757610d4733828787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611aa792505050565b6000818152600860209081526040808320889055600990915290208690559050949350505050565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610df55780601f10610dca57610100808354040283529160200191610df5565b820191906000526020600020905b815481529060010190602001808311610dd857829003601f168201915b505050505081565b6060610e0882611b4d565b610e435760405162461bcd60e51b8152600401808060200182810382526026815260200180612a586026913960400191505060405180910390fd5b6002610e4e83611b6a565b6040516020018083805460018160011615610100020316600290048015610eac5780601f10610e8a576101008083540402835291820191610eac565b820191906000526020600020905b815481529060010190602001808311610e98575b5050825160208401908083835b60208310610ed85780518252601f199092019160209182019101610eb9565b5181516020939093036101000a600019018019909116921691909117905264173539b7b760d91b92019182525060408051808303601a190181526005909201905295945050505050565b60086020526000908152604090205481565b336001600160a01b0386161480610f505750610f5085336117b4565b610f8b5760405162461bcd60e51b815260040180806020018281038252602f815260200180612b87602f913960400191505060405180910390fd5b6001600160a01b038416610fd05760405162461bcd60e51b8152600401808060200182810382526030815260200180612a7e6030913960400191505060405180910390fd5b610fdc85858585611c2d565b610fe98585858585611ed8565b5050505050565b610ff8611606565b611037576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b611040816120de565b50565b61104e610c2d6119da565b6110895760405162461bcd60e51b8152600401808060200182810382526040815260200180612af46040913960400191505060405180910390fd5b61109282611b4d565b6110cd5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a286030913960400191505060405180910390fd5b60008281526008602052604090205481101561111a5760405162461bcd60e51b815260040180806020018281038252604a815260200180612bb6604a913960600191505060405180910390fd5b60009182526009602052604090912055565b61113c6111376119da565b612126565b565b606081518351146111805760405162461bcd60e51b815260040180806020018281038252602c815260200180612b5b602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156111ad578160200160208202803883390190505b50905060005b8451811015611237576000808683815181106111cb57fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600085838151811061120157fe5b602002602001015181526020019081526020016000205482828151811061122457fe5b60209081029190910101526001016111b3565b509392505050565b611247611606565b611286576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b61104081612126565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156113185780601f106112ed57610100808354040283529160200191611318565b820191906000526020600020905b8154815290600101906020018083116112fb57829003601f168201915b505050505090505b90565b61132b611606565b61136a576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6113c46113bf6119da565b611755565b6113ff5760405162461bcd60e51b81526004018080602001828103825260308152602001806129f86030913960400191505060405180910390fd5b61140883611b4d565b6114435760405162461bcd60e51b81526004018080602001828103825260278152602001806128e56027913960400191505060405180910390fd5b6001600160a01b0384166114885760405162461bcd60e51b81526004018080602001828103825260278152602001806129d16027913960400191505060405180910390fd5b6000838152600960209081526040808320546008909252909120546114b3908463ffffffff61216e16565b11156114f05760405162461bcd60e51b81526004018080602001828103825260408152602001806129326040913960400191505060405180910390fd5b6114fc84848484611aa7565b60008381526008602052604090205461151b908363ffffffff61216e16565b60009384526008602052604090932092909255505050565b61153b611606565b61157a576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b611040816121c8565b61158e610c2d6119da565b6115c95760405162461bcd60e51b8152600401808060200182810382526040815260200180612af46040913960400191505060405180910390fd5b6115d281612210565b6006541561104057611040600654612227565b60009081526009602052604090205490565b6003546001600160a01b031690565b6003546000906001600160a01b031661161d6119da565b6001600160a01b031614905090565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610df55780601f10610dca57610100808354040283529160200191610df5565b61168f611606565b6116ce576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b61104081612242565b61113c6116e26119da565b6120de565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b600061176860048363ffffffff61228a16565b92915050565b600061176860058363ffffffff61228a16565b60065490565b60009081526008602052604090205490565b6007602052600090815260409020546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b336001600160a01b03861614806117fe57506117fe85336117b4565b6118395760405162461bcd60e51b815260040180806020018281038252602a815260200180612972602a913960400191505060405180910390fd5b6001600160a01b03841661187e5760405162461bcd60e51b815260040180806020018281038252602b815260200180612897602b913960400191505060405180910390fd5b61188a858585856122f1565b610fe985858585856123d9565b61189f611606565b6118de576040805162461bcd60e51b81526020600482018190526024820152600080516020612ad4833981519152604482015290519081900360640190fd5b6110408161255b565b6118f082611b4d565b61192b5760405162461bcd60e51b8152600401808060200182810382526027815260200180612b346027913960400191505060405180910390fd5b6119336119da565b6001600160a01b0316836001600160a01b0316148061195e575061195e836119596119da565b6117b4565b6119995760405162461bcd60e51b8152600401808060200182810382526036815260200180612c006036913960400191505060405180910390fd5b6119a48383836125fc565b6000828152600860205260409020546119c3908263ffffffff61269316565b600092835260086020526040909220919091555050565b3390565b6006546000906119f590600163ffffffff61216e16565b905090565b600680546001019055565b807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b611a3083610dfd565b6040805160208082528351818301528351919283929083019185019080838360005b83811015611a6a578181015183820152602001611a52565b50505050905090810190601f168015611a975780820380516001836020036101000a031916815260200191505b509250505060405180910390a250565b6001600160a01b038416600090815260208181526040808320868452909152902054611ad9908363ffffffff61216e16565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a4611b476000858585856123d9565b50505050565b6000908152600760205260409020546001600160a01b0316151590565b606081611b8f57506040805180820190915260018152600360fc1b6020820152610c1b565b818060005b8215611ba857600101600a83049250611b94565b6060816040519080825280601f01601f191660200182016040528015611bd5576020820181803883390190505b50905060001982015b8315611c2357600a840660300160f81b82828060019003935081518110611c0157fe5b60200101906001600160f81b031916908160001a905350600a84049350611bde565b5095945050505050565b8051825114611c6d5760405162461bcd60e51b815260040180806020018281038252603581526020018061299c6035913960400191505060405180910390fd5b815160005b81811015611df757611ce8838281518110611c8957fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611cc357fe5b602002602001015181526020019081526020016000205461269390919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611d1a57fe5b6020026020010151815260200190815260200160002081905550611da2838281518110611d4357fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611d7d57fe5b602002602001015181526020019081526020016000205461216e90919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611dd457fe5b602090810291909101810151825281019190915260400160002055600101611c72565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015611e7d578181015183820152602001611e65565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611ebc578181015183820152602001611ea4565b5050505090500194505050505060405180910390a45050505050565b611eea846001600160a01b03166126f0565b15610fe9576000846001600160a01b031663bc197c8133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015611f8c578181015183820152602001611f74565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015611fcb578181015183820152602001611fb3565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612007578181015183820152602001611fef565b50505050905090810190601f1680156120345780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561205957600080fd5b505af115801561206d573d6000803e3d6000fd5b505050506040513d602081101561208357600080fd5b505190506001600160e01b0319811663bc197c8160e01b146120d65760405162461bcd60e51b815260040180806020018281038252603f815260200180612c36603f913960400191505060405180910390fd5b505050505050565b6120ef60048263ffffffff61272c16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b61213760058263ffffffff61272c16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b6000828201838110156121c1576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b9392505050565b6121d960058263ffffffff61279316565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b80516122239060029060208401906127fe565b5050565b60015b8181116122235761223a81611a05565b60010161222a565b61225360048263ffffffff61279316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b0382166122d15760405162461bcd60e51b8152600401808060200182810382526026815260200180612aae6026913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038416600090815260208181526040808320858452909152902054612323908263ffffffff61269316565b6001600160a01b038086166000908152602081815260408083208784528252808320949094559186168152808252828120858252909152205461236c908263ffffffff61216e16565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b6123eb846001600160a01b03166126f0565b15610fe9576000846001600160a01b031663f23a6e6133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561248e578181015183820152602001612476565b50505050905090810190601f1680156124bb5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156124de57600080fd5b505af11580156124f2573d6000803e3d6000fd5b505050506040513d602081101561250857600080fd5b505190506001600160e01b0319811663f23a6e6160e01b146120d65760405162461bcd60e51b815260040180806020018281038252603a815260200180612c75603a913960400191505060405180910390fd5b6001600160a01b0381166125a05760405162461bcd60e51b815260040180806020018281038252602681526020018061290c6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831660009081526020818152604080832085845290915290205461262e908263ffffffff61269316565b6001600160a01b03841660008181526020818152604080832087845282528083209490945583518681529081018590528351919333927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f629281900390910190a4505050565b6000828211156126ea576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906127245750808214155b949350505050565b612736828261228a565b6127715760405162461bcd60e51b8152600401808060200182810382526028815260200180612cf46028913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61279d828261228a565b156127d95760405162461bcd60e51b81526004018080602001828103825260238152602001806128c26023913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061283f57805160ff191683800117855561286c565b8280016001018555821561286c579182015b8281111561286c578251825591602001919060010190612851565b5061287892915061287c565b5090565b61132091905b80821115612878576000815560010161288256fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e54526f6c6573236164643a206163636f756e7420616c72656164792068617320726f6c65455243313135355472616461626c65236d696e743a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135355472616461626c65236d696e743a206d696e7420737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c794552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e475448455243313135355472616461626c65236d696e743a20494e56414c49445f524543495049454e544d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c654a4b4f4c696f6e656572734e46547631237365744d6178537570706c793a204e4f4e4558495354454e545f544f4b454e455243313135355472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e45524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e54526f6c6573236861733a206163636f756e7420697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657257686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135355472616461626c65236275726e3a204e4f4e4558495354454e545f544f4b454e455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f524a4b4f4c696f6e656572734e46547631237365744d6178537570706c793a204d617820737570706c792063616e6e6f74206265206c657373207468616e20746f6b656e20737570706c79455243313135355472616461626c65236275726e3a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656445524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243313135355472616461626c65236372656174653a20496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79526f6c65732372656d6f76653a206163636f756e7420646f6573206e6f74206861766520726f6c65a265627a7a723158201e0acc35255262acc164869c0595764969422ab6250c2260e869a2ec3cf9e02b64736f6c63430005110032

Deployed Bytecode Sourcemap

41671:764:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41671:764:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36954:49;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36954:49:0;;:::i;:::-;;;;;;;;;;;;;;;;27238:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27238:127:0;;;;;;;;:::i;29213:240::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29213:240:0;-1:-1:-1;;;;;;29213:240:0;;:::i;:::-;;;;;;;;;;;;;;;;;;38987:607;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38987:607:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;38987:607:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38987:607:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;38987:607:0;;-1:-1:-1;38987:607:0;-1:-1:-1;38987:607:0;:::i;37026:18::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37026:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37612:215;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37612:215:0;;:::i;36904:46::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36904:46:0;;:::i;22415:511::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;22415:511:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;22415:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22415:511:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;22415:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;22415:511:0;;;;;;;;-1:-1:-1;22415:511:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;22415:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22415:511:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;22415:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;22415:511:0;;;;;;;;-1:-1:-1;22415:511:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;22415:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22415:511:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;22415:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;22415:511:0;;-1:-1:-1;22415:511:0;;-1:-1:-1;;;;;22415:511:0:i;:::-;;37519:88;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37519:88:0;-1:-1:-1;;;;;37519:88:0;;:::i;41996:339::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41996:339:0;;;;;;;:::i;6471:95::-;;;:::i;27653:500::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27653:500:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;27653:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27653:500:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;27653:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27653:500:0;;;;;;;;-1:-1:-1;27653:500:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;27653:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27653:500:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;27653:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27653:500:0;;-1:-1:-1;27653:500:0;;-1:-1:-1;;;;;27653:500:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27653:500:0;;;;;;;;;;;;;;;;;37323:104;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37323:104:0;-1:-1:-1;;;;;37323:104:0;;:::i;41900:90::-;;;:::i;2827:140::-;;;:::i;39883:496::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;39883:496:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;39883:496:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39883:496:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39883:496:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;39883:496:0;;-1:-1:-1;39883:496:0;;-1:-1:-1;;;;;39883:496:0:i;37217:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37217:101:0;-1:-1:-1;;;;;37217:101:0;;:::i;38467:212::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38467:212:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;38467:212:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38467:212:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;38467:212:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;38467:212:0;;-1:-1:-1;38467:212:0;;-1:-1:-1;;;;;38467:212:0:i;38242:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38242:98:0;;:::i;2016:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2016:79:0;;;;;;;;;;;;;;2382:94;;;:::i;37069:20::-;;;:::i;37432:82::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37432:82:0;-1:-1:-1;;;;;37432:82:0;;:::i;5228:79::-;;;:::i;26244:227::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26244:227:0;;;;;;;;;;:::i;5011:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5011:109:0;-1:-1:-1;;;;;5011:109:0;;:::i;6214:125::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6214:125:0;-1:-1:-1;;;;;6214:125:0;;:::i;42341:91::-;;;:::i;37987:97::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37987:97:0;;:::i;36857:43::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36857:43:0;;:::i;26730:155::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26730:155:0;;;;;;;;;;:::i;21581:441::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;21581:441:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;21581:441:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21581:441:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;21581:441:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21581:441:0;;-1:-1:-1;21581:441:0;;-1:-1:-1;;;;;21581:441:0:i;3122:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3122:109:0;-1:-1:-1;;;;;3122:109:0;;:::i;40603:375::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;40603:375:0;;;;;;;;;;;;;:::i;36954:49::-;;;;;;;;;;;;;:::o;27238:127::-;-1:-1:-1;;;;;27338:16:0;;;;27312:7;27338:16;;;;;;;;;;;:21;;;;;;;;;27238:127::o;29213:240::-;29284:4;-1:-1:-1;;;;;;29301:42:0;;-1:-1:-1;;;29301:42:0;;:98;;-1:-1:-1;;;;;;;29356:43:0;;-1:-1:-1;;;29356:43:0;29301:98;29297:132;;;-1:-1:-1;29417:4:0;29410:11;;29297:132;-1:-1:-1;29442:5:0;29213:240;;;;:::o;38987:607::-;39119:15;6087:30;6104:12;:10;:12::i;:::-;6087:16;:30::i;:::-;6079:107;;;;-1:-1:-1;;;6079:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39167:10;39149:14;:28;;39141:110;;;;-1:-1:-1;;;39141:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:11;39270:17;:15;:17::i;:::-;39256:31;;39292:23;:21;:23::i;:::-;39320:13;;;;:8;:13;;;;;:26;;-1:-1:-1;;;;;;39320:26:0;39336:10;39320:26;;;39365:15;39359:29;;-1:-1:-1;;39320:26:0;39359:29;;;39320:26;39359:29;;;;:33;39355:68;;39403:12;39411:3;39403:7;:12::i;:::-;39433:19;;39429:70;;39454:45;39460:10;39472:3;39477:14;39493:5;;39454:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;39454:5:0;;-1:-1:-1;;;39454:45:0:i;:::-;39504:16;;;;:11;:16;;;;;;;;:33;;;39542:14;:19;;;;;:32;;;39516:3;-1:-1:-1;38987:607:0;;;;;;:::o;37026:18::-;;;;;;;;;;;;;;;-1:-1:-1;;37026:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37612:215::-;37659:13;37687:12;37695:3;37687:7;:12::i;:::-;37679:63;;;;-1:-1:-1;;;37679:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37780:15;37797:14;37807:3;37797:9;:14::i;:::-;37763:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37763:58:0;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;;;;365:33;;-1:-1;;;37763:58:0;;;;;-1:-1:-1;37763:58:0;;;26:21:-1;;;-1:-1;;22:32;6:49;;37763:58:0;;;;;;;;-1:-1:-1;;;;;37612:215:0:o;36904:46::-;;;;;;;;;;;;;:::o;22415:511::-;22596:10;-1:-1:-1;;;;;22596:19:0;;;;22595:60;;;22620:35;22637:5;22644:10;22620:16;:35::i;:::-;22587:120;;;;-1:-1:-1;;;22587:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22722:17:0;;22714:78;;;;-1:-1:-1;;;22714:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22801:50;22824:5;22831:3;22836:4;22842:8;22801:22;:50::i;:::-;22858:62;22886:5;22893:3;22898:4;22904:8;22914:5;22858:27;:62::i;:::-;22415:511;;;;;:::o;37519:88::-;2228:9;:7;:9::i;:::-;2220:54;;;;;-1:-1:-1;;;2220:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2220:54:0;;;;;;;;;;;;;;;37580:22;37594:7;37580:13;:22::i;:::-;37519:88;:::o;41996:339::-;6087:30;6104:12;:10;:12::i;6087:30::-;6079:107;;;;-1:-1:-1;;;6079:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42095:12;42103:3;42095:7;:12::i;:::-;42087:73;;;;-1:-1:-1;;;42087:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42192:16;;;;:11;:16;;;;;;42175:33;;;42167:120;;;;-1:-1:-1;;;42167:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42294:19;;;;:14;:19;;;;;;:35;41996:339::o;6471:95::-;6523:35;6545:12;:10;:12::i;:::-;6523:21;:35::i;:::-;6471:95::o;27653:500::-;27752:16;27806:4;:11;27788:7;:14;:29;27780:86;;;;-1:-1:-1;;;27780:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27893:30;27940:7;:14;27926:29;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;27926:29:0;-1:-1:-1;27893:62:0;-1:-1:-1;28014:9:0;28009:110;28033:7;:14;28029:1;:18;28009:110;;;28082:8;:20;28091:7;28099:1;28091:10;;;;;;;;;;;;;;-1:-1:-1;;;;;28082:20:0;-1:-1:-1;;;;;28082:20:0;;;;;;;;;;;;:29;28103:4;28108:1;28103:7;;;;;;;;;;;;;;28082:29;;;;;;;;;;;;28063:13;28077:1;28063:16;;;;;;;;;;;;;;;;;:48;28049:3;;28009:110;;;-1:-1:-1;28134:13:0;27653:500;-1:-1:-1;;;27653:500:0:o;37323:104::-;2228:9;:7;:9::i;:::-;2220:54;;;;;-1:-1:-1;;;2220:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2220:54:0;;;;;;;;;;;;;;;37392:30;37414:7;37392:21;:30::i;41900:90::-;41969:15;41962:22;;;;;;;-1:-1:-1;;41962:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41940:13;;41962:22;;41969:15;;41962:22;;41969:15;41962:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41900:90;;:::o;2827:140::-;2228:9;:7;:9::i;:::-;2220:54;;;;;-1:-1:-1;;;2220:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2220:54:0;;;;;;;;;;;;;;;2910:6;;2889:40;;2926:1;;-1:-1:-1;;;;;2910:6:0;;2889:40;;2926:1;;2889:40;2940:6;:19;;-1:-1:-1;;;;;;2940:19:0;;;2827:140::o;39883:496::-;4908:22;4917:12;:10;:12::i;:::-;4908:8;:22::i;:::-;4900:83;;;;-1:-1:-1;;;4900:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40011:12;40019:3;40011:7;:12::i;:::-;40003:64;;;;-1:-1:-1;;;40003:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40082:17:0;;40074:69;;;;-1:-1:-1;;;40074:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40191:19;;;;:14;:19;;;;;;;;;40156:11;:16;;;;;;;:31;;40177:9;40156:31;:20;:31;:::i;:::-;:54;;40148:131;;;;-1:-1:-1;;;40148:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40286:33;40292:3;40297;40302:9;40313:5;40286;:33::i;:::-;40343:16;;;;:11;:16;;;;;;:31;;40364:9;40343:31;:20;:31;:::i;:::-;40324:16;;;;:11;:16;;;;;;:50;;;;-1:-1:-1;;;39883:496:0:o;37217:101::-;2228:9;:7;:9::i;:::-;2220:54;;;;;-1:-1:-1;;;2220:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2220:54:0;;;;;;;;;;;;;;;37285:27;37304:7;37285:18;:27::i;38467:212::-;6087:30;6104:12;:10;:12::i;6087:30::-;6079:107;;;;-1:-1:-1;;;6079:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38561:40;38581:19;38561;:40::i;:::-;38612:15;;:19;38608:67;;38642:25;38651:15;;38642:8;:25::i;38242:98::-;38295:7;38316:19;;;:14;:19;;;;;;;38242:98::o;2016:79::-;2081:6;;-1:-1:-1;;;;;2081:6:0;2016:79;:::o;2382:94::-;2462:6;;2422:4;;-1:-1:-1;;;;;2462:6:0;2446:12;:10;:12::i;:::-;-1:-1:-1;;;;;2446:22:0;;2439:29;;2382:94;:::o;37069:20::-;;;;;;;;;;;;;;;-1:-1:-1;;37069:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37432:82;2228:9;:7;:9::i;:::-;2220:54;;;;;-1:-1:-1;;;2220:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2220:54:0;;;;;;;;;;;;;;;37490:19;37501:7;37490:10;:19::i;5228:79::-;5272:27;5286:12;:10;:12::i;:::-;5272:13;:27::i;26244:227::-;26371:10;26361:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;26361:32:0;;;;;;;;;;;;:44;;-1:-1:-1;;26361:44:0;;;;;;;;;;26417:48;;;;;;;26361:32;;26371:10;26417:48;;;;;;;;;;;26244:227;;:::o;5011:109::-;5067:4;5091:21;:8;5104:7;5091:21;:12;:21;:::i;:::-;5084:28;5011:109;-1:-1:-1;;5011:109:0:o;6214:125::-;6278:4;6302:29;:16;6323:7;6302:29;:20;:29;:::i;42341:91::-;42411:15;;42341:91;:::o;37987:97::-;38042:7;38063:16;;;:11;:16;;;;;;;37987:97::o;36857:43::-;;;;;;;;;;;;-1:-1:-1;;;;;36857:43:0;;:::o;26730:155::-;-1:-1:-1;;;;;26851:17:0;;;26817:15;26851:17;;;:9;:17;;;;;;;;:28;;;;;;;;;;;;;;;26730:155::o;21581:441::-;21716:10;-1:-1:-1;;;;;21716:19:0;;;;21715:60;;;21740:35;21757:5;21764:10;21740:16;:35::i;:::-;21707:115;;;;-1:-1:-1;;;21707:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21837:17:0;;21829:73;;;;-1:-1:-1;;;21829:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21911:43;21929:5;21936:3;21941;21946:7;21911:17;:43::i;:::-;21961:55;21984:5;21991:3;21996;22001:7;22010:5;21961:22;:55::i;3122:109::-;2228:9;:7;:9::i;:::-;2220:54;;;;;-1:-1:-1;;;2220:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2220:54:0;;;;;;;;;;;;;;;3195:28;3214:8;3195:18;:28::i;40603:375::-;40686:12;40694:3;40686:7;:12::i;:::-;40678:64;;;;-1:-1:-1;;;40678:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40766:12;:10;:12::i;:::-;-1:-1:-1;;;;;40757:21:0;:5;-1:-1:-1;;;;;40757:21:0;;:62;;;;40782:37;40799:5;40806:12;:10;:12::i;:::-;40782:16;:37::i;:::-;40749:129;;;;-1:-1:-1;;;40749:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40887:28;40893:5;40900:3;40905:9;40887:5;:28::i;:::-;40941:16;;;;:11;:16;;;;;;:31;;40962:9;40941:31;:20;:31;:::i;:::-;40922:16;;;;:11;:16;;;;;;:50;;;;-1:-1:-1;;40603:375:0:o;807:98::-;887:10;807:98;:::o;41432:97::-;41502:15;;41481:7;;41502:22;;41522:1;41502:22;:19;:22;:::i;:::-;41495:29;;41432:97;:::o;41596:68::-;41642:15;:17;;;;;;41596:68::o;30701:90::-;30776:8;30757:28;30761:13;30765:8;30761:3;:13::i;:::-;30757:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;30757:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30701:90;:::o;33561:401::-;-1:-1:-1;;;;;33704:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:31;;33727:7;33704:31;:22;:31;:::i;:::-;-1:-1:-1;;;;;33683:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;:52;;;;33768:59;;;;;;;;;;;;;33683:13;;:8;;33783:10;;33768:59;;;;;;;;33894:62;33925:3;33931;33936;33941:7;33950:5;33894:22;:62::i;:::-;33561:401;;;;:::o;41196:103::-;41249:4;41267:13;;;:8;:13;;;;;;-1:-1:-1;;;;;41267:13:0;:27;;;41196:103::o;32396:539::-;32450:27;32490:7;32486:40;;-1:-1:-1;32508:10:0;;;;;;;;;;;;-1:-1:-1;;;32508:10:0;;;;;;32486:40;32546:2;;32534:9;32625:53;32632:6;;32625:53;;32649:5;;32668:2;32663:7;;;;32625:53;;;32686:17;32716:3;32706:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;32706:14:0;87:34:-1;135:17;;-1:-1;32706:14:0;-1:-1:-1;32686:34:0;-1:-1:-1;;;32739:7:0;;32789:87;32796:7;;32789:87;;32847:2;32842;:7;32837:2;:12;32826:25;;32814:4;32819:3;;;;;;;32814:9;;;;;;;;;;;:37;-1:-1:-1;;;;;32814:37:0;;;;;;;;-1:-1:-1;32866:2:0;32860:8;;;;32789:87;;;-1:-1:-1;32924:4:0;32396:539;-1:-1:-1;;;;;32396:539:0:o;24554:687::-;24711:8;:15;24696:4;:11;:30;24688:96;;;;-1:-1:-1;;;24688:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24851:11;;24831:17;24903:247;24927:9;24923:1;:13;24903:247;;;25028:41;25057:8;25066:1;25057:11;;;;;;;;;;;;;;25028:8;:15;25037:5;-1:-1:-1;;;;;25028:15:0;-1:-1:-1;;;;;25028:15:0;;;;;;;;;;;;:24;25044:4;25049:1;25044:7;;;;;;;;;;;;;;25028:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;25001:8;:15;25010:5;-1:-1:-1;;;;;25001:15:0;-1:-1:-1;;;;;25001:15:0;;;;;;;;;;;;:24;25017:4;25022:1;25017:7;;;;;;;;;;;;;;25001:24;;;;;;;;;;;:68;;;;25103:39;25130:8;25139:1;25130:11;;;;;;;;;;;;;;25103:8;:13;25112:3;-1:-1:-1;;;;;25103:13:0;-1:-1:-1;;;;;25103:13:0;;;;;;;;;;;;:22;25117:4;25122:1;25117:7;;;;;;;;;;;;;;25103:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;25078:8;:13;25087:3;-1:-1:-1;;;;;25078:13:0;-1:-1:-1;;;;;25078:13:0;;;;;;;;;;;;:22;25092:4;25097:1;25092:7;;;;;;;;;;;;;;;;;;;25078:22;;;;;;;;;;-1:-1:-1;25078:22:0;:64;24938:3;;24903:247;;;;25215:3;-1:-1:-1;;;;;25182:53:0;25208:5;-1:-1:-1;;;;;25182:53:0;25196:10;-1:-1:-1;;;;;25182:53:0;;25220:4;25226:8;25182:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25182:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25182:53:0;;;;;;;;;;;;;;;;;;;24554:687;;;;;:::o;25359:476::-;25565:16;:3;-1:-1:-1;;;;;25565:14:0;;:16::i;:::-;25561:269;;;25592:13;25630:3;-1:-1:-1;;;;;25608:49:0;;25658:10;25670:5;25677:4;25683:8;25693:5;25608:91;;;;;;;;;;;;;-1:-1:-1;;;;;25608:91:0;-1:-1:-1;;;;;25608:91:0;;;;;;-1:-1:-1;;;;;25608:91:0;-1:-1:-1;;;;;25608:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25608:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25608:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25608:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25608:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25608:91:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25608:91:0;;-1:-1:-1;;;;;;;25716:38:0;;-1:-1:-1;;;25716:38:0;25708:114;;;;-1:-1:-1;;;25708:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25561:269;25359:476;;;;;:::o;5445:130::-;5505:24;:8;5521:7;5505:24;:15;:24;:::i;:::-;5545:22;;-1:-1:-1;;;;;5545:22:0;;;;;;;;5445:130;:::o;6728:154::-;6796:32;:16;6820:7;6796:32;:23;:32;:::i;:::-;6844:30;;-1:-1:-1;;;;;6844:30:0;;;;;;;;6728:154;:::o;8822:162::-;8880:7;8908:5;;;8928:6;;;;8920:41;;;;;-1:-1:-1;;;8920:41:0;;;;;;;;;;;;-1:-1:-1;;;8920:41:0;;;;;;;;;;;;;;;8977:1;8822:162;-1:-1:-1;;;8822:162:0:o;6574:146::-;6639:29;:16;6660:7;6639:29;:20;:29;:::i;:::-;6684:28;;-1:-1:-1;;;;;6684:28:0;;;;;;;;6574:146;:::o;32032:123::-;32112:37;;;;:15;;:37;;;;;:::i;:::-;;32032:123;:::o;30946:130::-;31018:1;31001:70;31026:11;31021:1;:16;31001:70;;31053:10;31061:1;31053:7;:10::i;:::-;31039:3;;31001:70;;5315:122;5372:21;:8;5385:7;5372:21;:12;:21;:::i;:::-;5409:20;;-1:-1:-1;;;;;5409:20:0;;;;;;;;5315:122;:::o;4367:207::-;4439:4;-1:-1:-1;;;;;4464:21:0;;4456:72;;;;-1:-1:-1;;;4456:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4546:20:0;:11;:20;;;;;;;;;;;;;;;4367:207::o;23330:376::-;-1:-1:-1;;;;;23486:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;;:33;;23511:7;23486:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;23463:15:0;;;:8;:15;;;;;;;;;;;:20;;;;;;;;:56;;;;23566:13;;;;;;;;;;;:18;;;;;;;;:31;;23589:7;23566:31;:22;:31;:::i;:::-;-1:-1:-1;;;;;23545:13:0;;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:52;;;;23648;;;;;;;;;;;;;23545:13;;23648:52;;;;23663:10;;23648:52;;;;;;;;;;;23330:376;;;;:::o;23819:429::-;23996:16;:3;-1:-1:-1;;;;;23996:14:0;;:16::i;:::-;23992:251;;;24023:13;24061:3;-1:-1:-1;;;;;24039:44:0;;24084:10;24096:5;24103:3;24108:7;24117:5;24039:84;;;;;;;;;;;;;-1:-1:-1;;;;;24039:84:0;-1:-1:-1;;;;;24039:84:0;;;;;;-1:-1:-1;;;;;24039:84:0;-1:-1:-1;;;;;24039:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;24039:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24039:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24039:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24039:84:0;;-1:-1:-1;;;;;;;24140:32:0;;-1:-1:-1;;;24140:32:0;24132:103;;;;-1:-1:-1;;;24132:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3337:229;-1:-1:-1;;;;;3411:22:0;;3403:73;;;;-1:-1:-1;;;3403:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3513:6;;3492:38;;-1:-1:-1;;;;;3492:38:0;;;;3513:6;;3492:38;;3513:6;;3492:38;3541:6;:17;;-1:-1:-1;;;;;;3541:17:0;-1:-1:-1;;;;;3541:17:0;;;;;;;;;;3337:229::o;35331:265::-;-1:-1:-1;;;;;35463:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;;:33;;35488:7;35463:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;35440:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;:56;;;;35529:61;;;;;;;;;;;;;35440:8;;35544:10;;35529:61;;;;;;;;;;35331:265;;;:::o;8579:163::-;8637:7;8666:1;8661;:6;;8653:42;;;;;-1:-1:-1;;;8653:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8714:5:0;;;8579:163::o;19347:673::-;19407:4;19935:20;;19465:66;19971:15;;;;;:42;;;20002:11;19990:8;:23;;19971:42;19963:51;19347:673;-1:-1:-1;;;;19347:673:0:o;4082:190::-;4162:18;4166:4;4172:7;4162:3;:18::i;:::-;4154:71;;;;-1:-1:-1;;;4154:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4236:20:0;4259:5;4236:20;;;;;;;;;;;:28;;-1:-1:-1;;4236:28:0;;;4082:190::o;3820:182::-;3898:18;3902:4;3908:7;3898:3;:18::i;:::-;3897:19;3889:67;;;;-1:-1:-1;;;3889:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3967:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;3967:27:0;3990:4;3967:27;;;3820:182::o;41671:764::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41671:764:0;;;-1:-1:-1;41671:764:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://1e0acc35255262acc164869c0595764969422ab6250c2260e869a2ec3cf9e02b
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.